Tastypie MongoDB Resource
Project Description
MongoDB Resource for Tastypie
Allows you to create delicious APIs for MongoDB.
Settings
MONGODB_HOST = None MONGODB_PORT = None MONGODB_DATABASE = "database_name" # optional: MONGODB_USERNAME = None MONGODB_PASSWORD = None
Example of Usage
from tastypie import fields from tastypie.authorization import Authorization from tastypie_mongodb.resources import MongoDBResource, Document class DocumentResource(MongoDBResource): id = fields.CharField(attribute="_id") title = fields.CharField(attribute="title", null=True) entities = fields.ListField(attribute="entities", null=True) class Meta: resource_name = "documents" list_allowed_methods = ["delete", "get", "post"] authorization = Authorization() object_class = Document collection = "documents" # collection name
Contributors
- Ferrix Hovi (<https://github.com/ferrix>)
- Alper Kanat (<https://github.com/tunix>)
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size & hash SHA256 hash help | File type | Python version | Upload date |
---|---|---|---|
tastypie-mongodb-resource-0.0.8.tar.gz (3.1 kB) Copy SHA256 hash SHA256 | Source | None | Dec 26, 2013 |