Re: Django's best way to upload data into a postgresql database

2019-03-17 Thread Ryan Nowakowski
Send like a pretty standard optimization scenario. I'd recommend: 1. Find the bottleneck. Here if your suspect it's pandas dataframe vs lists, run a timing analysis using each. 2. Remove the bottleneck On March 17, 2019 6:52:23 PM CDT, "Guillermo Yáñez Feliú" wrote: > > >Hello, > > >I’m worki

Django's best way to upload data into a postgresql database

2019-03-17 Thread Guillermo Yáñez Feliú
Hello, I’m working in a project that consists in converting a local postgresql database (that uses sqlalchemy as the ORM) into a web application, in which I upload excel sheets, read them, do some small cleaning and then upload selected data into a postgresql database using Django’s ORM. Th