🌼 pypollencom: A Simple Python API for Pollen.com
pypollencom is a simple Python library for allergen, asthma, and disease data
from Pollen.com.
PLEASE READ: Version 2.0.0 and Beyond
Version 2.0.0 of pypollencom makes several breaking, but necessary changes:
- Moves the underlying library from Requests to aiohttp
- Changes the entire library to use
asyncio - Makes 3.6 the minimum version of Python required
If you wish to continue using the previous, synchronous version of
pypollencom, make sure to pin version 1.1.2.
Python Versions
pypollencom is currently supported on:
- Python 3.5
- Python 3.6
- Python 3.7
However, running the test suite currently requires Python 3.6 or higher; tests run on Python 3.5 will fail.
Installation
pip install pypollencom
Usage
pypollencom starts within an
aiohttp ClientSession:
import asyncio
from aiohttp import ClientSession
from pypollencom import Client
async def main() -> None:
"""Create the aiohttp session and run the example."""
async with ClientSession() as websession:
# YOUR CODE HERE
asyncio.get_event_loop().run_until_complete(main())
Create a client and get to it:
import asyncio
from aiohttp import ClientSession
from pypollencom import Client
async def main() -> None:
"""Create the aiohttp session and run the example."""
async with ClientSession() as websession:
client = Client(80012, websession)
# ZIP codes starting with 0 need to be provided as strings:
client = Client('00544', websession)
# Get current allergen information:
await client.allergens.current()
# Get more information on the current allergen outlook:
await client.allergens.outlook()
# Get extended forecast allergen information:
await client.allergens.extended()
# Get historic allergen information:
await client.allergens.historic()
# Get current asthma information:
await client.asthma.current()
# Get extended forecast asthma information:
await client.asthma.extended()
# Get historic asthma information:
await client.asthma.historic()
# Get extended forecast cold and flu information:
await client.disease.extended()
asyncio.get_event_loop().run_until_complete(main())
Contributing
- Check for open features/bugs or initiate a discussion on one.
- Fork the repository.
- Install the dev environment:
make init. - Enter the virtual environment:
pipenv shell - Code your new feature or bug fix.
- Write a test that covers your new functionality.
- Run tests and ensure 100% code coverage:
make coverage - Add yourself to
AUTHORS.md. - Submit a pull request!
Release files for pypollencom 2.2.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pypollencom-2.2.2.tar.gz | 7.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pypollencom-2.2.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 16.7 kB
Release files / pypollencom-2.2.2.tar.gz
| Download URL | pypollencom-2.2.2.tar.gz |
|---|---|
| Size | 7.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d351407ebcbd46b5c830d6499bb34aae95f1ae0af1c3dfadfed34b1ba73795fd
|
|
BLAKE2b-256 checksum How to use checksums |
432e2ad7d9a3198c08cf3a70cf499b6d62ba33f5bd76a3d3251be2e600a3c13f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
|
Release files / pypollencom-2.2.2-py3-none-any.whl
| Download URL | pypollencom-2.2.2-py3-none-any.whl |
|---|---|
| Size | 9.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
530bbddc1a379849e76fbc51371a0fb7c51ba207f7239d297fb1d56be5ebff88
|
|
BLAKE2b-256 checksum How to use checksums |
366d49752d8b6babb892dea2e799c04fa8e19fb7e770c946cc18a484fdb44e64
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
|