Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/livingbio/weather-parser
Parser for weather open data
https://github.com/livingbio/weather-parser
Last synced: 7 days ago
JSON representation
Parser for weather open data
- Host: GitHub
- URL: https://github.com/livingbio/weather-parser
- Owner: livingbio
- License: mit
- Created: 2015-12-23T03:36:19.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-11-25T05:31:07.000Z (12 months ago)
- Last Synced: 2024-05-15T20:14:07.328Z (6 months ago)
- Language: Python
- Size: 190 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/livingbio/django-template.svg?branch=master)](https://travis-ci.org/livingbio/django-template)
# Weather Parser
## INSTALLATION & SETTINGS
### Setting Virtualenv
At first, you should make sure you have [virtualenv](http://www.virtualenv.org/) installed.
after that, just cd to your_project_name:
cd your_project_name
Then create your virtualenv:
virtualenv venv
Second, you need to enable the virtualenv by
source venv/bin/activate
Install all dependencies:
pip install -r requirements.txt
Settings are stored in environment variables via [django-environ](http://django-environ.readthedocs.org/en/latest/). The quickiest way to start is to rename `local.sample.env`
cp weather/src/weather/settings/local.sample.env weather/src/weather/settings/local.env
Then edit the SECRET_KEY in local.env file, replace `{{ secret_key }}` into any [Django Secret Key](http://www.miniwebtool.com/django-secret-key-generator/), for example:
SECRET_KEY=twvg)o_=u&@6^*cbi9nfswwh=(&hd$bhxh9iq&h-kn-pff0&&3
Run migrations:
python manage.py migrate
### Documentation
You can use [mkdocs](http://www.mkdocs.org/) to write beatuiful documentations. By typing:
mkdocs serve
Then you can see your document in http://localhost:8001/
### Detailed instructions
Take a look at the docs for more information.