0

I have data on google sheets and I want to dump data into the Postgres database using python and Django. Note that each row in a google sheet contains information for different tables like it could be a foreign key etc. Am looking for any tutorial/blog to serve this purpose.

The knight
  • 87
  • 1
  • 10

1 Answers1

0

Try any of the resources below

  1. https://xlsxwriter.readthedocs.io/
  2. django-import-export: A widget that allows you to import excel files from admin section. It's very easy to install, here you find the installation tutorial, and here an example. https://django-import-export.readthedocs.io/en/latest/
  3. You can also try this showing you how to import data into django
  4. This also works.

Is this what you are looking for?

Yusuf Ganiyu
  • 842
  • 9
  • 8