iCodeLikeImDrunk
iCodeLikeImDrunk

Reputation: 17806

how do i insert large amounts of data to google datastore?

Should I write a script to "put" all of those data in? But wouldn't that be silly, since I would have to reinsert the data every time the app starts?

Someone suggest something called fixtures? How do I use that exactly?

The data I would insert:

id: int,
name: varchar,
addr: varchar,
email: varchar,
phone: varchar,
ssn: varchar,

Upvotes: 0

Views: 176

Answers (1)

Shay Erlichmen
Shay Erlichmen

Reputation: 31928

Using Bulkloader you can upload data in CSV format.

Upvotes: 2

Related Questions