Coder Social home page Coder Social logo

csvimport's Introduction

CSV File to Database Data Import using Django Models and Custom Commands

Comma separated value is a standard format for importing and exporting data from spreadsheets to databases.

This project demonstrates how to import users data from a csv file into a db using Django. The first row in the csv file is the headings row for the column names in a spreadsheet. The other rows in the csv represent each row on the spreadsheet with each of the column entries separated by a comma.

The database field names are defined in the models.py Django app file. This represents each column from the csv file as well. The commented commands are run to create and store the models table in the db and create a superuser on Django admin.

A view for the models on the Django admin site is defined on the admin.py file.

Create a Django custom command for importing the data from the csv file. Instructions for the structuring the command files can be found here https://docs.djangoproject.com/en/4.0/howto/custom-management-commands/ . The csv file is imported on line 8 of csv_import.py . DictReader allows the information on each row to be mapped to a header name as a key.

When the custom django command is run, the data from the csv file is imported into the Django database. This can be seen on the Django admin site

csvimport's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.