Skip to main content

Mongo ORM

Project description

https://badge.fury.io/py/snakelet.svg

Snakelet is a Schema-less ORM-like system built in pure Python to reduce redundancy with Mongo Native Drivers and Object Management. This package contains a very simple implementation and will need to be expanded upon largely to remain relevant.

documents

Registration only requires exposing the object to the Manager.

from snakelet.storage import Document, Manager

class Cat(Document):
    pass

manager = Manager(database='felines')
manager.register(Cat)

managers

Connecting to a database is fairly straightforward.

from snakelet.storage import Manager

manager = Manager(
    database='felines',
    host='localhost',
    port=27017,
    username='admin',
    password='pass'
)

By default, Managers build and fetch collections in snake case, but this can be switched to camel case during instantiation.

from snakelet.storage import Manager

manager = Manager(
    case='camel'
)

Finding, Saving, and Removal are also pretty straightforward.

pye = manager.Cat.find_one({'name': 'pyewacket'})
shoshana = Cat()
shoshana['name'] = 'shoshana'
shoshana['owner'] = 'schrodinger'
manager.save(shoshana)
schrodinger = manager.Cat.find({'owner': 'schrodinger'})
manager.remove(pye)

pagination

This feature set is fairly simple and has normal iterable bindings to ensure simple operation.

for page in manager.Cat.paginate(find={'name': 1}):
    for cat in page:
        print(cat['name'])

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

snakelet-0.5.0.tar.gz (7.9 kB view details)

Uploaded Source

File details

Details for the file snakelet-0.5.0.tar.gz.

File metadata

  • Download URL: snakelet-0.5.0.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for snakelet-0.5.0.tar.gz
Algorithm Hash digest
SHA256 415ce989546278e225deb02f4fcf0e31886131dd61f3d47e387cc7ef3c9194d0
MD5 3d3d76c85e90a721f1165a59645aae18
BLAKE2b-256 ef98dfc30b0163c13eecabf0e73410a9ed46234479fad892ae70cb19ba1891e4

See more details on using hashes here.

Supported by

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