├── .gitignore ├── LICENSE ├── README.md ├── covidstats └── views.py ├── django_project ├── settings.py ├── urls.py ├── view.py └── wsgi.py ├── docs ├── database.md └── filestructure.md ├── forecasts ├── README.md ├── template.html └── views.py ├── manage.py ├── myutils ├── base_template.html ├── smutils.py └── utils.py ├── scripts ├── postgrestest.py ├── pricefit.py ├── priceforecast.py ├── smdelete.py ├── smloads.py ├── tests.py └── tracker.py └── sm ├── smcharts.py ├── smprod.py ├── smtest.py ├── smviews.py └── templates ├── analysis_template.html ├── chart_emis.html ├── chart_emis2.html ├── chart_template.html ├── chart_template2.html └── chart_template3.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/README.md -------------------------------------------------------------------------------- /covidstats/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/covidstats/views.py -------------------------------------------------------------------------------- /django_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/django_project/settings.py -------------------------------------------------------------------------------- /django_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/django_project/urls.py -------------------------------------------------------------------------------- /django_project/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/django_project/view.py -------------------------------------------------------------------------------- /django_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/django_project/wsgi.py -------------------------------------------------------------------------------- /docs/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/docs/database.md -------------------------------------------------------------------------------- /docs/filestructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/docs/filestructure.md -------------------------------------------------------------------------------- /forecasts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/forecasts/README.md -------------------------------------------------------------------------------- /forecasts/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/forecasts/template.html -------------------------------------------------------------------------------- /forecasts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/forecasts/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/manage.py -------------------------------------------------------------------------------- /myutils/base_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/myutils/base_template.html -------------------------------------------------------------------------------- /myutils/smutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/myutils/smutils.py -------------------------------------------------------------------------------- /myutils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/myutils/utils.py -------------------------------------------------------------------------------- /scripts/postgrestest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/scripts/postgrestest.py -------------------------------------------------------------------------------- /scripts/pricefit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/scripts/pricefit.py -------------------------------------------------------------------------------- /scripts/priceforecast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/scripts/priceforecast.py -------------------------------------------------------------------------------- /scripts/smdelete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/scripts/smdelete.py -------------------------------------------------------------------------------- /scripts/smloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/scripts/smloads.py -------------------------------------------------------------------------------- /scripts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/scripts/tests.py -------------------------------------------------------------------------------- /scripts/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/scripts/tracker.py -------------------------------------------------------------------------------- /sm/smcharts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/sm/smcharts.py -------------------------------------------------------------------------------- /sm/smprod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/sm/smprod.py -------------------------------------------------------------------------------- /sm/smtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/sm/smtest.py -------------------------------------------------------------------------------- /sm/smviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/sm/smviews.py -------------------------------------------------------------------------------- /sm/templates/analysis_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/sm/templates/analysis_template.html -------------------------------------------------------------------------------- /sm/templates/chart_emis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/sm/templates/chart_emis.html -------------------------------------------------------------------------------- /sm/templates/chart_emis2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/sm/templates/chart_emis2.html -------------------------------------------------------------------------------- /sm/templates/chart_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/sm/templates/chart_template.html -------------------------------------------------------------------------------- /sm/templates/chart_template2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/sm/templates/chart_template2.html -------------------------------------------------------------------------------- /sm/templates/chart_template3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjlipman/smartmeter/HEAD/sm/templates/chart_template3.html --------------------------------------------------------------------------------