No project description provided
Project description
SOL Python ORM Library
Installation
pip install sol-orm-lib
Example usage
from sol_orm_lib.models import *
from sol_orm_lib.sol_orm import SolORM
# Instantiate SolORM object
db = SolORM("https://db-api.sol.idener.es")
# Create an object
mw = MeasuredWeather(
rad_ar=27.2,
temp_ar=39,
wind_ar=12,
timestamp=current_milli_time(),
)
# Add it to the DB
response = db.add_entity(mw)
print(response)
Local ORM
from sol_orm_lib.models import *
from sol_orm_lib.sol_local_orm import SolLocalORM
db = SolLocalORM(host="100.91.35.146", port=3306, db="bcm", user="bcm", password="bcm", debug=True)
ent = StorageStatusTAC(
k=1,
n=2,
storageActual=3,
storageActualKwh=4,
storageInverterRealised=5,
storageMax=6
)
db.add_entity(ent)
result = db.get_last_entity(StorageStatusTAC)
print(result)
Release process
To release a new version of the package, update the version number in the pyproject.toml
file and publish a release with the same tag. The CI will build and publish the package to PyPI.
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
sol_orm_lib-0.4.4.tar.gz
(9.1 kB
view details)
Built Distribution
File details
Details for the file sol_orm_lib-0.4.4.tar.gz
.
File metadata
- Download URL: sol_orm_lib-0.4.4.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.8.18 Linux/5.15.0-89-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b40b0af3e18cbe483e767e56d4a5244ca8ea16ceee0fd3063e55e5163f0032dd |
|
MD5 | f3f88f9e10b21e14fb53804429dd34e5 |
|
BLAKE2b-256 | 11a9766ffbef36d3c9d08be09c92618ab8fb890f58efc7b9e7fbf9b268bb13fc |
File details
Details for the file sol_orm_lib-0.4.4-py3-none-any.whl
.
File metadata
- Download URL: sol_orm_lib-0.4.4-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.8.18 Linux/5.15.0-89-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d525bea097ab6ba9c436cd9c5f2100000c3856447c3facdb93e17d9078fe3209 |
|
MD5 | d2410f79f79af31a037f98a7ce5cf238 |
|
BLAKE2b-256 | d936a15856ea254e7e60a3331003ffa45205bfa7a776c10f32deaf0c1af194b1 |