mongodb datastore implementation
Project description
# datastore-mongo
## datastore implementation for mongodb
See [datastore](https://github.com/datastore/datastore).
### Install
From pypi (using pip):
sudo pip install datastore.mongo
From pypi (using setuptools):
sudo easy_install datastore.mongo
From source:
git clone https://github.com/datastore/datastore.mongo/ cd datastore.mongo sudo python setup.py install
### License
datastore.mongo is under the MIT License.
### Contact
datastore.mongo is written by [Juan Batiz-Benet](https://github.com/jbenet). It was extracted from [datastore](https://github.com/datastore/datastore) in Feb 2013.
Project Homepage: [https://github.com/datastore/datastore.mongo](https://github.com/datastore/datastore.mongo)
Feel free to contact me. But please file issues in github first. Cheers!
### Hello World
>>> import pymongo
>>> import datastore.mongo
>>>
>>> conn = pymongo.Connection()
>>> ds = datastore.mongo.MongoDatastore(conn.test_db)
>>>
>>> hello = datastore.Key('hello')
>>> ds.put(hello, 'world')
>>> ds.contains(hello)
True
>>> ds.get(hello)
'world'
>>> ds.delete(hello)
>>> ds.get(hello)
None
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file datastore.mongo-0.1.1.tar.gz.
File metadata
- Download URL: datastore.mongo-0.1.1.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23da86baca9b5ee6432e1f07e160ebbf0c608f5e8d35db09a8df02239e3daee7
|
|
| MD5 |
4fa11ae2d0a8f4f39af5705ed11330a6
|
|
| BLAKE2b-256 |
f5db099037841c320349ba9b0d2f1005b26af2f420d7457f1133e2efc953dd27
|