Skip to main content

Mango: simple MongoDb wrapper

Project description

A Simple wrapper module for Mongo sit on top of PyMongo.

Installation

To install mango lib: pip install python-mango.

Usage

To import module: import mango.

Sample:

import mango

uri = "mongodb://user:pwd@localhost:port/database"
mango.init_db(uri)

# To get database object
db = mango.mgdb

# To get table object
mytable = mango.get_table('mytable')

# Select rows
rows = mango.select('mytable')
rows = mango.select('mytable', { "qty": { "$gt": 4 } })

# Insert
mango.insert('mytable', dict(name='Aung Aung'))

# Update
_filter = dict(id=1234)
_value = dict(mark=80)
mango.update('mytable', _filter, _value)

_value = {
    "$set": {
        "name": "Tun Aung"
    },
    "$push": {
        "marks": {
            "english": 60
        }
    }
}
mango.update('mytable', _filter, _value)

# Delete
_filter = dict(id=456)
mango.delete('mytable', _filter)

Availabe functions

init_db

To initialize MongoDb Connection.

Parameter:

uri: MongoDb URI

get_table

Get the MongoDb Table object.

Parameter:

  • table_name: Table name

select

Query record(s) from table.

Parameters:

  • table_name: Table name

  • _filter: MongoDb filter object

  • is_many: Use find or find_one. Default is False which means find_one will be used.

  • **kwargs: KwArgs which will be pass to pymongo function

insert

Insert record(s) to table.

Parameters:

  • table_name: Table name

  • _value: Value that will be inserted

  • is_many: insert_one or insert_many. Default is False (means insert_one).

  • **kwargs: KwArgs will be pass to pymongo function

update

Update record(s) to table.

Parameters:

  • table_name: Table name

  • _filter: MongoDb filter object

  • _value: Value that will be updated

  • is_many: update_one or update_many. Default is False (means update_one).

  • _operation: MongoDb update operation. Default is $set.

  • **kwargs: KwArgs will be pass to pymongo function.

delete

Delete record(s) to table.

Parameters:

  • table_name: Table name

  • _filter: MongoDb filter object

  • is_many: delete_one or delete_many. Default is False (means delete_one).

  • **kwargs: KwArgs will be pass to pymongo function.

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

python-mango-0.1.7.tar.gz (3.6 kB view details)

Uploaded Source

Built Distribution

python_mango-0.1.7-py2.py3-none-any.whl (5.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file python-mango-0.1.7.tar.gz.

File metadata

File hashes

Hashes for python-mango-0.1.7.tar.gz
Algorithm Hash digest
SHA256 c3c1f80232c2c89c13727a6f9f589f024d006c50498df92edf0659685605d94e
MD5 ec3fe23ca911f1798a9840cc61501f43
BLAKE2b-256 8c6f9451dd287af1cd6cc623d965e1471f713a17d64119340fa775326b9e33b9

See more details on using hashes here.

File details

Details for the file python_mango-0.1.7-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for python_mango-0.1.7-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 839ef2a65405130d866c627927c4279386ca37d7c1ec091448e26ce8ab53de24
MD5 b635bc690d823e91691bbd58c1ba4dc9
BLAKE2b-256 dfdc395ce460bbd6790eee662cc5090586f2c080b1cfbbd6ee4c74c5088acbd3

See more details on using hashes here.

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