Metadata-Version: 2.0
Name: fmiweather
Version: 0.0.2
Summary: Fetches and parses weather information from fmi.fi
Home-page: https://github.com/ojarva/python-fmi-weather
Author: Olli Jarva
Author-email: olli@jarva.fi
License: BSD
Keywords: weather fmi
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: requests
Requires-Dist: beautifulsoup4
Provides-Extra: dev
Requires-Dist: twine; extra == 'dev'
Requires-Dist: wheel; extra == 'dev'

Unofficial parser for FMI weather information
=============================================

This is unofficial parser - screen scraper - implementation for FMI website. Please check possible conditions and terms before using. This will probably break on every website update.

Installation
------------

::

  pip install fmiweather

Usage
-----

::

  from fmiweather import FmiWeather
  weather = FmiWeather()
  weather.download_content("http://ilmatieteenlaitos.fi/saa/helsinki/s%C3%B6rn%C3%A4inen")

  print weather.parse_next_days() # Parses daily forecasts
  print weather.parse_next_hours() # Parses hourly forecast
  print weather.parse_observations() # Parses observations


