How to access low level API for data storage in Google App Engine for python

What is the alternative for Entity.java in python version? I do not need a data model. I want my objects without a predefined structure. I just want them to be key and significant pairs, as mentioned above in Entity.java.

Can I do this in a Python version?

+3
source share
2 answers

The low-level API is located at google.appengine.api.datastore. There is no public documentation, but the module itself has fairly full docstrings.

+6
source

Try the Expando class.

class MyModel(db.Expando)
   pass

, . .

. , .

+1

Source: https://habr.com/ru/post/1767903/


All Articles