Refering to the example in the link: https://developers.google.com/appengine/docs/python/blobstore/overview
In the example above, a Model
named _BlobInfo_
is created to store the blob.
Is there a way to store and retrieve blobs using user defined models: eg:
class DummyText(db.Model):
ptxt = db.BlobProperty()
Note: I need to handle ".txt" file in the above model. Is there a way to do that?