Bulk upload data when using app-engine-patch
I’ve been interested in learning more about both Django and Google’s App Engine, so I’ve been playing with app-engine-patch, a project that simplifies using Django on App Engine. I like it so far; it seems pretty simply, and it’s really easy to just extract the sample project and start modifying it.
Many of the personal projects I’ve been working on have needed some kind of ‘preset’ data. E.g. makes of cars, categories of food, etc. Data that won’t change frequently, but should most likely live in a database. It probably *could* just permantly live in a database, but since I’d rather not do that since I haven’t yet committed to a schema (or really even framework!). I’d prefer to keep the data in a simple external file like a spreadsheet if possible.
Continue reading ‘Bulk upload data when using app-engine-patch’