├── README.md ├── countries.py ├── countries.pyc ├── main.py ├── requirements.txt ├── sample.py ├── screen1.png ├── screen2.png ├── static └── js │ └── change.js ├── templates └── index.html └── to_celcius.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narenaryan/Wecko/HEAD/README.md -------------------------------------------------------------------------------- /countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narenaryan/Wecko/HEAD/countries.py -------------------------------------------------------------------------------- /countries.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narenaryan/Wecko/HEAD/countries.pyc -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narenaryan/Wecko/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pygal==1.7.0 2 | Flask==0.10.1 3 | -------------------------------------------------------------------------------- /sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narenaryan/Wecko/HEAD/sample.py -------------------------------------------------------------------------------- /screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narenaryan/Wecko/HEAD/screen1.png -------------------------------------------------------------------------------- /screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narenaryan/Wecko/HEAD/screen2.png -------------------------------------------------------------------------------- /static/js/change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narenaryan/Wecko/HEAD/static/js/change.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narenaryan/Wecko/HEAD/templates/index.html -------------------------------------------------------------------------------- /to_celcius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narenaryan/Wecko/HEAD/to_celcius.py --------------------------------------------------------------------------------