You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

mongodb-util

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongodb-util

This module provides an easy mechanism to connect to MongoDb along with various monitoring options that help debug issues at database level

1.3
pipPyPI
Maintainers
2

README

This module provides an easy mechanism to connect to MongoDb.

Currently implemented features -

  • Provide MongoClient handle
  • Monitor the MongoClient instance
  • Log the interactions with Mongodb server
  • Methods to retrieve details such as username, password, database name, port number and host name for scripts that access database without a database handle.

How to get a mongodb connection?

  • Import the module into the script
  • Create an object of the Database class - This will return a class object.

Database Class -

Parameters -

  • uri = Mongodb URI
mongodb://username:password@host_name:port_number/database_name
  • logger = Pass a logger handle

  • log =

     |Option                 |Value                        |
     |-----------------------|-----------------------------|
     |commandlogger          |True | False (Default: True) |
     |serverlogger           |True | False (Default: False)|
     |heartbeatlogger        |True | False (Default: False)|
     |topologylogger         |True | False (Default: False)|
     |connectionpoollogger   |True | False (Default: False)|
    

Get the client handle by calling connect() of the Database class.

Example code -

import mongodb_util

obj = mongodb_util.Database("test_URI")
database_client = obj.connect()
database = database_client.<database name>

Read from a collection

database.<collection_name>.find()

Write into a collection

database.<collection_name>.insert({‘a’:1})

Developing mongodb_util -

To install mongodb_util, along with the tools you need to develop and run tests, run the following in your virtualenv:

$ pip install -e .[dev]

Changelog

  • Version 1.0 -
  • Provide a mechanism to obtain a mongodb handle
  • Monitoring various transactions with the database
  • Supports custom configuration file.
  • Version 1.1 -
  • Support for passing logger handle
  • Version 1.2 -
  • Remove config support
  • Modify the way database credentials are picked, user input expected.
  • Version 1.3 -
  • Fix Pylint (Pylint version - 1.9.2)

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts