Skip to main content

Vanilla wrapper around pymongo

Project description

Motivation

This lib is intended to be some surrogate of SqlAlchemy for no-sql database, particularly for mongo.

I checked up MongoAlchemy (seems to be dead), MongoEngine and some smaller libs but seems no one of them fits.

Basically I need builders for query filters and aggregation pipelines. However schema is not needed, so any table can have any fields and any operation can be applied to any field.

For example, instead of

cursor = db.my_table.aggregate([{
    '$match': {
        '$expr': {
            '$and': [{
                '$eq': ['$col', 'col value']
            }, {
                '$in': [
                    '$details.key',
                    ['key 1', 'key 2', 'key 3']
                ]
            }]
        }
    },
}, ...])

I wish to write

p = aggregate(my_table)
    .match(my_table.col == 'col value' and \
        my_table.details.key in ['key 1', 'key 2', 'key 3'])
    ....
cursor = conn.execute(p)

Advantages:

  • more clear and readable code;
  • can use IDE's autocomplete;
  • ability to implement shortcuts for commonly used operations.

Naming

Because names MongoAlchemy and NoSqlAlchemy were not vacant, I chose mongomoron because it was first what came to mind, and because of that lib is for morons like me for whom dealing with mongo's json is too difficult.

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

mongomoron-0.2.tar.gz (11.0 kB view hashes)

Uploaded Source

Built Distribution

mongomoron-0.2-py3-none-any.whl (10.5 kB view hashes)

Uploaded Python 3

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