├── .gitignore ├── CHANGELOG.txt ├── COPYING.txt ├── INSTALL.txt ├── MANIFEST ├── MANIFEST.in ├── Makefile ├── README.md ├── dist ├── weather-0.7.1.tar.gz ├── weather-0.8.1.tar.gz ├── weather-0.8.2.tar.gz ├── weather-0.8.tar.gz ├── weather-0.9.1.tar.gz └── weather-0.9.tar.gz ├── scripts ├── weatherpub.conf.example └── weatherpub.py ├── setup.py └── weather ├── __init__.py ├── services ├── __init__.py ├── _base.py ├── file.py ├── pws.py ├── tests │ ├── __init__.py │ └── test_file.py └── wunderground.py ├── stations ├── __init__.py ├── _struct.py ├── davis.py ├── netatmo.py ├── station.py ├── tests │ ├── __init__.py │ ├── test_davis.py │ └── test_station.py └── validate.py └── units ├── __init__.py ├── astro.py ├── precip.py ├── pressure.py ├── temp.py ├── tests ├── __init__.py ├── test_pressure.py ├── test_temp.py ├── test_wind.py └── test_wind_chill.py └── wind.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/COPYING.txt -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/README.md -------------------------------------------------------------------------------- /dist/weather-0.7.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/dist/weather-0.7.1.tar.gz -------------------------------------------------------------------------------- /dist/weather-0.8.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/dist/weather-0.8.1.tar.gz -------------------------------------------------------------------------------- /dist/weather-0.8.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/dist/weather-0.8.2.tar.gz -------------------------------------------------------------------------------- /dist/weather-0.8.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/dist/weather-0.8.tar.gz -------------------------------------------------------------------------------- /dist/weather-0.9.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/dist/weather-0.9.1.tar.gz -------------------------------------------------------------------------------- /dist/weather-0.9.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/dist/weather-0.9.tar.gz -------------------------------------------------------------------------------- /scripts/weatherpub.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/scripts/weatherpub.conf.example -------------------------------------------------------------------------------- /scripts/weatherpub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/scripts/weatherpub.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/setup.py -------------------------------------------------------------------------------- /weather/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/__init__.py -------------------------------------------------------------------------------- /weather/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/services/__init__.py -------------------------------------------------------------------------------- /weather/services/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/services/_base.py -------------------------------------------------------------------------------- /weather/services/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/services/file.py -------------------------------------------------------------------------------- /weather/services/pws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/services/pws.py -------------------------------------------------------------------------------- /weather/services/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weather/services/tests/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/services/tests/test_file.py -------------------------------------------------------------------------------- /weather/services/wunderground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/services/wunderground.py -------------------------------------------------------------------------------- /weather/stations/__init__.py: -------------------------------------------------------------------------------- 1 | from .davis import * 2 | -------------------------------------------------------------------------------- /weather/stations/_struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/stations/_struct.py -------------------------------------------------------------------------------- /weather/stations/davis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/stations/davis.py -------------------------------------------------------------------------------- /weather/stations/netatmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/stations/netatmo.py -------------------------------------------------------------------------------- /weather/stations/station.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/stations/station.py -------------------------------------------------------------------------------- /weather/stations/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weather/stations/tests/test_davis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/stations/tests/test_davis.py -------------------------------------------------------------------------------- /weather/stations/tests/test_station.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/stations/tests/test_station.py -------------------------------------------------------------------------------- /weather/stations/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/stations/validate.py -------------------------------------------------------------------------------- /weather/units/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/units/__init__.py -------------------------------------------------------------------------------- /weather/units/astro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/units/astro.py -------------------------------------------------------------------------------- /weather/units/precip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/units/precip.py -------------------------------------------------------------------------------- /weather/units/pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/units/pressure.py -------------------------------------------------------------------------------- /weather/units/temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/units/temp.py -------------------------------------------------------------------------------- /weather/units/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weather/units/tests/test_pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/units/tests/test_pressure.py -------------------------------------------------------------------------------- /weather/units/tests/test_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/units/tests/test_temp.py -------------------------------------------------------------------------------- /weather/units/tests/test_wind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/units/tests/test_wind.py -------------------------------------------------------------------------------- /weather/units/tests/test_wind_chill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/units/tests/test_wind_chill.py -------------------------------------------------------------------------------- /weather/units/wind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcginty/PyWeather/HEAD/weather/units/wind.py --------------------------------------------------------------------------------