Metadata-Version: 2.1 Name: pyfreedompro Version: 1.1.0 Summary: Freedompro API Home-page: https://github.com/stefano055415/pyfreedompro Author: Stefano Cartisano Author-email: stefano055415@gmail.com License: UNKNOWN Project-URL: Bug Tracker, https://github.com/stefano055415/pyfreedompro/issues Platform: UNKNOWN Classifier: Programming Language :: Python :: 3 Classifier: License :: OSI Approved :: MIT License Classifier: Operating System :: OS Independent Requires-Python: >=3.6 Description-Content-Type: text/markdown # pyfreedompro Python library for Freedompro API. Installation ------------ You can install pyfreedompro with `pip install pyfreedompro`. Example ------- ```python import asyncio import pyfreedompro import aiohttp async def main(): httpsession = aiohttp.ClientSession(connector=aiohttp.TCPConnector(ssl=False)); response = await pyfreedompro.get_list(httpsession, APY_KEY); print(response); await httpsession.close(); loop = asyncio.get_event_loop() loop.run_until_complete(main()) ``` See the complete documentation of the Fredompro API .