Skip to main content

Traducteur is a simple database manager using pydantic models. Currently only supports mongodb.

Project description

Traducteur

Traducteur is a pydantic model based database manager. It currently only supports mongodb.

Requirements

  • python >= 3.8 with:
    • pymongo >= 4.0.1
    • pydantic >= 1.9.0

Example usage

'''
    Set a connection string and database name in the environment.
    Preferably using a .env file.
'''
import os

CON_STR = 'mongodb://root:example@localhost:27017/'
DB_NAME = 'traducteur'

os.environ['TRADUCTEUR_CONNECTION_STR'] = CON_STR
os.environ['TRADUCTEUR_DB_NAME'] = DB_NAME


'''
    Import the base model for the database you are using.
'''

from traducteur import BaseMongoModel

'''
    Make a model using the base model.
'''

class User(BaseMongoModel):
    username: str
    fname: str
    lname: str
    email: str

'''
    Easily create, save, update and delete the model
'''
user = User(
    username='johndoe',
    fname='John',
    lname='Doe',
    email='john.doe@mail.com'
)

# saving the model
user = user.save()

# saving also updates the model
user.lname = 'Doe updated'
user = user.save()

# save the user id and set user to None for the GET example
user_id = user.id
user = None

# getting a model by its ID from the database
user = User.get(user_id)
print(user.dict())

# deleting a model from the database
deleted_user = user.delete()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

traducteur-0.1.3-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file traducteur-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: traducteur-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 7.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.12

File hashes

Hashes for traducteur-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 85c9183f85b509bc3486ee47a416dbbec39650b08a48ee9ff416414dc5db3aea
MD5 89065d909456b54eb0ae8e597a94f647
BLAKE2b-256 03e2ff5d88913a29bef3623f7dd2701791c83106932ee6fdef2503e58a77ae8b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page