I would like to have a GAE-Python Datastore Kind for something similar to a Blog and I would like to have a field for Categories or Tags where there can be multiple Tags for a given Blog instance. I am a GAE/Python newbie and am trying to find a way to be able to assign multiple categories for a single instance.
e.g.
class MyModel(db.Model):
category = db.CategoryProperty()
How would I modify this to enable multiple categories for a MyModel instance?
If this is possible, what would a query to retrieve the instances for a single category value look like?
What would a “put” with multiple values for this field look like?
Thanks in advance for any suggestions or links to where I can find applicable documentation..
If you are starting now with this project consider NDB and repeated property