A simple MongoDB module with less configuration
Project description
Simple Mongo (A Simple Mongodb Library)
Getting Started:
- To run and test the library, it should required to provide an environment variables by creating an .env file:
MONGODB_URL="mongodb://your-url-here"
MONGODB_NAME="your-database-name-here"
Running a simple query:
- Get All documents within a collection:
# supposed that we have a 'users' collection
from simple_mongo.database import MongoDB
MongoDB.all('users')
- Get a specific document:
MongoDB.find_one({
'name' : 'Taylor Swift'
})
- Create a simple data to a collection:
MongoDB.create('users',
{
'name': 'John Doe',
'email': 'johndoe@gmail.com'
}
)
- Update a document from a collection:
MongoDB.update('users', {
'name' : 'John Doe'
}, {
'name' : 'John Sins'
})
- Delete a document from a collection:
MongoDB.delete('users', {
'name' : 'John Sins'
})
Repository Link: https://github.com/nojram00/simple-mongo
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
simple_mongo-0.0.7.tar.gz
(2.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file simple_mongo-0.0.7.tar.gz.
File metadata
- Download URL: simple_mongo-0.0.7.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20c089ce693f9e6f23a991dd76789886d87510c6e430a43cb74145e802d80796
|
|
| MD5 |
1b12551b713b78d9fdae08f12a5480ee
|
|
| BLAKE2b-256 |
5de2f9e854df9e2c134f88be65ab72f4355dedd094e043f0fde5c59266d3c29a
|
File details
Details for the file simple_mongo-0.0.7-py3-none-any.whl.
File metadata
- Download URL: simple_mongo-0.0.7-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c731bb129a45a21c4b2b9085a86bd598d4114389954f3c162753ab6d11203457
|
|
| MD5 |
ba71ab37a8b79aa87de7eca6c097a3d9
|
|
| BLAKE2b-256 |
37502e9d7c2a3e2212feb0227153e5cda3ddb4dd0e47e98b4e18acb8e0d0c5e8
|