Metadata-Version: 2.1 Name: pytomorrowio Version: 0.3.6 Summary: Async Python3.9+ package to access the Tomorrow.io API Home-page: https://github.com/raman325/pytomorrowio Author: raman325 Author-email: 7243222+raman325@users.noreply.github.com License: MIT license Keywords: pytomorrowio Classifier: Development Status :: 2 - Pre-Alpha Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: MIT License Classifier: Natural Language :: English Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Requires-Python: >=3.9 License-File: LICENSE License-File: AUTHORS.rst Requires-Dist: aiohttp (>=3.6.2) ====================== Python Tomorrow.io API ====================== .. image:: https://img.shields.io/pypi/v/pytomorrowio.svg :target: https://pypi.python.org/pypi/pytomorrowio .. image:: https://img.shields.io/travis/raman325/pytomorrowio.svg :target: https://travis-ci.com/raman325/pytomorrowio .. image:: https://readthedocs.org/projects/pytomorrowio/badge/?version=latest :target: https://pytomorrowio.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status Python3.9+ package to access the `Tomorrow.io Weather API `_ Both an async module (``TomorrowioV4``) and a synchronous module (``TomorrowioV4Sync``) are provided. Example Code ------------- .. code-block:: python from datetime import timedelta from pytomorrowio import TomorrowioV4Sync gps_coord = (28.4195, -81.5812) api = TomorrowioV4Sync("MY_API_KEY", *gps_coord) print(api.realtime(api.available_fields(timedelta(0)))) print(api.forecast_nowcast(api.available_fields(timedelta(minutes=5)))) Features -------- * TODO Credits ------- This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template. .. _Cookiecutter: https://github.com/audreyr/cookiecutter .. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage ======= History ======= 0.1.0 (2020-06-04) ------------------ * First release on PyPI.