Simple lightweight Django-like ORM for SQLite
Project description
CS475 Project: Object Relational Mapper (ORM)
This project is a simple, stand-alone and lightweight implementation of an Object Relational Mapper (ORM) for Python. The ORM is a library that allows developers to interact with a relational database using Python objects. The ORM will handle the mapping of Python objects to database tables and vice versa.
Installation
You can install the ORM by running the following command:
pip install borm
How to use
The first step to is to design your models (tables). For each model you can inherit from models.Model and define its
fields as class attributes of available fields from the fields module.
from borm import Model
from borm.fields import UUIDField, StringField, IntegerField
class MyModel(Model):
id = UUIDField(primary_key=True)
name = StringField()
rating = IntegerField()
As appears in the example above, you can define the primary key by setting the primary_key attribute to True in
only one field. Then you can start data manipulation by creating instances of your models, etc.
from uuid import uuid4
id_1 = uuid4()
my_model = MyModel.objects.create(id=id_1, name='My Model', rating=5)
print(my_model.id)
print(my_model.name)
print(my_model.rating)
id_2 = uuid4()
my_model_2 = MyModel.objects.create(id=id_2, name='My Model 2', rating=4)
print(my_model_2.id)
print(my_model_2.name)
print(my_model_2.rating)
models = MyModel.objects.all()
for model in models:
print(model.id)
print(model.name)
print(model.rating)
specific_model = MyModel.objects.get(id=id_1)
print(specific_model.id)
models_with_rating_4 = MyModel.objects.filter(rating=4)
for model in models_with_rating_4:
print(model.id)
print(model.name)
print(model.rating)
Furthermore, you may manipulate and update the data in the database by updating the fields of the model instances and
calling the save method to apply the changes to the database.
my_model.rating = 3
my_model.save()
Finally, you can delete a model instance by calling the delete method.
my_model._delete()
Unit Testing
TODO
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
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 borm-0.0.1.tar.gz.
File metadata
- Download URL: borm-0.0.1.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34b06246861caa63a7e33446c5052262d374c839668c4fdc3dce01f7636afcb8
|
|
| MD5 |
8bc5a66170c8cd2eed419875b8734daf
|
|
| BLAKE2b-256 |
34f7dfb67604e800c7cddc51c1519eb448e21d4ec51053d804074ef66b01045c
|
File details
Details for the file borm-0.0.1-py3-none-any.whl.
File metadata
- Download URL: borm-0.0.1-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61053943a09281a86d38670c9aa6ed98e72f67eff97eb1801e5e3af9e0b014df
|
|
| MD5 |
6e786bd730ad2229c7d57e1e96f502dc
|
|
| BLAKE2b-256 |
cac338c60f9275e6c6dcd15ec7de2a707470c558709c63f03e1cd97a0dd75f59
|