A simple MongoDB module with less configuration
Project description
Simple Mongo (A Simple Mongodb Library)
Pypi link: https://pypi.org/project/simple-mongo/
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.1.0.tar.gz
(3.7 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.1.0.tar.gz.
File metadata
- Download URL: simple_mongo-0.1.0.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9a2113f6773f9d7ebe8de58bb8ecb335398af5400e917255ebd4ac6e68586da
|
|
| MD5 |
83bc3b8e42c80a80db678e0689edd917
|
|
| BLAKE2b-256 |
9bce44bfc63eb8ef940bd88db8bcc6c122cf2b8a1880429f163f906330f57b9b
|
File details
Details for the file simple_mongo-0.1.0-py3-none-any.whl.
File metadata
- Download URL: simple_mongo-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.8 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 |
143190e184ccd2e7fce3ad65b4b09c106f7110ddca51507f0b283d2e5d69c085
|
|
| MD5 |
2221732e67f3c377b4c6b542a4d59211
|
|
| BLAKE2b-256 |
701265fffe1e872a5b4c429f6c68f84e0ed58da3bc73f230e5f941a858e05729
|