{
"info": {
"author": "Chris Eykamp",
"author_email": "chris@eykamp.com",
"bugtrack_url": null,
"classifiers": [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
],
"description": "Install with pip:
\n`pip install deq-tools`\n\ndeq_tools is a limited functionality Python library for accessing Oregon DEQ Air Quality data with a Python script.\n\nUsage:\n```python\nimport deq_tools\n\nprint(deq_tools.get_station_names()) # Dump a list of names of stations where data may be available\nprint(deq_tools.get_station_data()) # Dump all station info, including data available for each station\n \nstation_id = 2 # Get this value from get_station_names()\nfrom_ts = \"2018/05/03T00:00\" # ISO datetime format: YYYY/MM/DDTHH:MM\nto_ts = \"2018/05/10T23:59\"\n\nprint(deq_tools.get_data(station_id, from_ts, to_ts)) # Get the data\n``` \n \nIn addition to the required positional parameters shown above, `get_deq_data()` also takes these optional named parameters: \n