A Django App to use a simple load curve store
Project description
HoLcStore is a Django app for creating a simple TimeSeries store in your database.
Quick start
Add “holcstore” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ..., "holcstore", ]
Run python manage.py migrate to create the models.
Start using the abstract model Store by importing it
from holcstore.store.models import Store class YourStore(Store): # add new fields class Meta(Store.Meta): abstract = False # add your meta
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
holcstore-0.1.tar.gz
(7.6 kB
view hashes)
Built Distribution
holcstore-0.1-py3-none-any.whl
(10.2 kB
view hashes)