Omair Shamshir
Omair Shamshir

Reputation: 2136

Google App Engine storing large strings in datastore in python

I have some pdf files stored in the blobstore , i want to convert them to text and store them in datastore . The problem is the pdf files are very large , so there corresponding text may exceed the 1 MB limit of the datastore Text property. So can someone tell how to save these large text strings to datastore.

Upvotes: 0

Views: 629

Answers (1)

Tim Hoffman
Tim Hoffman

Reputation: 12986

In the past you would have used the blobstore but that has been deprecated and now you should use google cloud storage. It has has a similiar api

https://developers.google.com/appengine/docs/python/googlecloudstorageclient/

Upvotes: 2

Related Questions