Skip to main content

Mongodb model helpers

Project description

A convenient superclass and some helpers for stuff you want to keep in mongodb.

Notes

  • Collection-level operations are accessible though the .collection, eg. MyModel.collection.find_one(). It’s verbose, but explicit is better than implicit.

  • Document-level operations are ported down directly to the model, eg. m = MyModel(); m.save().

  • You can’t access top-level document keys though dot notation on the models after they’ve been retrieved from the database. urmurmurm.

  • There is no model-level update, since it clashes with dict’s update. Use save, or Model.collection.update(instance, …).

  • The model-level remove is restricted to only remove the model’s document.

  • No special ref support… yet.

  • Tests are desperately lacking. Help!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kale-0.1rc1.tar.gz (3.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page