├── .gitignore ├── core ├── __init__.py ├── admin.py ├── apps.py ├── management │ └── commands │ │ ├── __init__.py │ │ └── load_co2.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── core │ │ └── base.html ├── tests.py ├── urls.py └── views.py ├── data └── co2_mm_mlo.csv ├── django_plotly ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc 3 | db.sqlite3 4 | notes*.txt -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-plotly-integration/HEAD/core/admin.py -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-plotly-integration/HEAD/core/apps.py -------------------------------------------------------------------------------- /core/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/management/commands/load_co2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-plotly-integration/HEAD/core/management/commands/load_co2.py -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-plotly-integration/HEAD/core/models.py -------------------------------------------------------------------------------- /core/templates/core/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-plotly-integration/HEAD/core/templates/core/base.html -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-plotly-integration/HEAD/core/tests.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-plotly-integration/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /data/co2_mm_mlo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-plotly-integration/HEAD/data/co2_mm_mlo.csv -------------------------------------------------------------------------------- /django_plotly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_plotly/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-plotly-integration/HEAD/django_plotly/asgi.py -------------------------------------------------------------------------------- /django_plotly/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-plotly-integration/HEAD/django_plotly/settings.py -------------------------------------------------------------------------------- /django_plotly/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-plotly-integration/HEAD/django_plotly/urls.py -------------------------------------------------------------------------------- /django_plotly/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-plotly-integration/HEAD/django_plotly/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-plotly-integration/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-plotly-integration/HEAD/requirements.txt --------------------------------------------------------------------------------