MeanPug / django-gsheets

Django app for keeping models and google sheets synced
https://www.meanpug.com/sync-data-to-and-from-google-sheets-with-django-gsheets/
MIT License
60 stars 25 forks source link

Optimize writeout of GUID on pull #3

Closed steinbachr closed 4 years ago

steinbachr commented 4 years ago

Currently, upon creation of a new model instance during a sheet pull session we write out a single individual cell containing that model's GUID.

Desired: Cache a list of instances that have been created and their GUID's (along with associated rows) and write out this list in batch(es).