TableMongo. A MongoDB ORM based on Google's BigTable Syntax
Project description
# TableMongo. A MongoDB ORM
Contributers · [Hunter Larco](http://hunterlarco.com)
> TableMongo syntax emulates Google's Python BigTable ORM, making it easier to transition from Google Cloud Platform to a MongoDB based systems.
## Example
```python
import TableMongo as db
class User(db.Model):
email = db.StringProperty()
password = db.StringProperty()
favourite_things = db.StringProperty(multiple=True)
User(
email='john@doe.com',
password='p@ssword',
favourite_things=['apples', 'pie']
).save()
users = User.query(User.email == 'john@doe.com')
```
## Installation
Installation is super friendly using `pip`
```
$ pip install TableMongo
```
## Documentation
* [Quickstart](./Documentation/quickstart.md)
Contributers · [Hunter Larco](http://hunterlarco.com)
> TableMongo syntax emulates Google's Python BigTable ORM, making it easier to transition from Google Cloud Platform to a MongoDB based systems.
## Example
```python
import TableMongo as db
class User(db.Model):
email = db.StringProperty()
password = db.StringProperty()
favourite_things = db.StringProperty(multiple=True)
User(
email='john@doe.com',
password='p@ssword',
favourite_things=['apples', 'pie']
).save()
users = User.query(User.email == 'john@doe.com')
```
## Installation
Installation is super friendly using `pip`
```
$ pip install TableMongo
```
## Documentation
* [Quickstart](./Documentation/quickstart.md)
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
TableMongo-1.0.3.tar.gz
(11.9 kB
view details)
File details
Details for the file TableMongo-1.0.3.tar.gz
.
File metadata
- Download URL: TableMongo-1.0.3.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f55ba9a289cfa9d987327162e33c5114bd9c2cfd5b13392c12ff04bea3ceba71
|
|
MD5 |
8f6e2172d5e4aa4d0aeb8fbf6b2c3bbc
|
|
BLAKE2b-256 |
d0202624b4b0f7b752d4983816383c17b1944f12ab5234a62f641c205313ce6b
|