├── Pipfile ├── Pipfile.lock └── the_weather ├── db.sqlite3 ├── manage.py ├── the_weather ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── settings.cpython-35.pyc │ ├── urls.cpython-35.pyc │ └── wsgi.cpython-35.pyc ├── settings.py ├── urls.py └── wsgi.py └── weather ├── __init__.py ├── __pycache__ ├── __init__.cpython-35.pyc ├── admin.cpython-35.pyc ├── forms.cpython-35.pyc ├── models.cpython-35.pyc ├── urls.cpython-35.pyc └── views.cpython-35.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py ├── __init__.py └── __pycache__ │ ├── 0001_initial.cpython-35.pyc │ └── __init__.cpython-35.pyc ├── models.py ├── templates └── weather │ └── index.html ├── tests.py ├── urls.py └── views.py /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /the_weather/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/db.sqlite3 -------------------------------------------------------------------------------- /the_weather/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/manage.py -------------------------------------------------------------------------------- /the_weather/the_weather/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /the_weather/the_weather/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/the_weather/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /the_weather/the_weather/__pycache__/settings.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/the_weather/__pycache__/settings.cpython-35.pyc -------------------------------------------------------------------------------- /the_weather/the_weather/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/the_weather/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /the_weather/the_weather/__pycache__/wsgi.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/the_weather/__pycache__/wsgi.cpython-35.pyc -------------------------------------------------------------------------------- /the_weather/the_weather/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/the_weather/settings.py -------------------------------------------------------------------------------- /the_weather/the_weather/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/the_weather/urls.py -------------------------------------------------------------------------------- /the_weather/the_weather/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/the_weather/wsgi.py -------------------------------------------------------------------------------- /the_weather/weather/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /the_weather/weather/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /the_weather/weather/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /the_weather/weather/__pycache__/forms.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/__pycache__/forms.cpython-35.pyc -------------------------------------------------------------------------------- /the_weather/weather/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /the_weather/weather/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /the_weather/weather/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /the_weather/weather/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/admin.py -------------------------------------------------------------------------------- /the_weather/weather/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/apps.py -------------------------------------------------------------------------------- /the_weather/weather/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/forms.py -------------------------------------------------------------------------------- /the_weather/weather/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/migrations/0001_initial.py -------------------------------------------------------------------------------- /the_weather/weather/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /the_weather/weather/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/migrations/__pycache__/0001_initial.cpython-35.pyc -------------------------------------------------------------------------------- /the_weather/weather/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /the_weather/weather/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/models.py -------------------------------------------------------------------------------- /the_weather/weather/templates/weather/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/templates/weather/index.html -------------------------------------------------------------------------------- /the_weather/weather/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/tests.py -------------------------------------------------------------------------------- /the_weather/weather/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/urls.py -------------------------------------------------------------------------------- /the_weather/weather/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrettyPrinted/weather_app_django_scotch/HEAD/the_weather/weather/views.py --------------------------------------------------------------------------------