Asynchronous Python client for the Weerlive API.
Easily integrate Weerlive's services into your Python application using this client, and enjoy enhanced type safety and autocomplete support.
For more details about the APIs, visit the Weerlive API page, where you can sign up and get your API key.
You can install this package using your preferred package manager. For example, using pip:
pip install weerlive-apiTo use the Weerlive API, you can import it in your Python scripts and start interacting with the Weerlive API. Here is a simple example:
import asyncio
from weerlive import WeerliveApi
async def main():
"""Show example of fetching weather info from Weerlive API."""
async with WeerliveApi(api_key="demo") as weerlive:
weather = await weerlive.city("Amsterdam")
print(weather)
if __name__ == "__main__":
asyncio.run(main())Contributions are welcome! Please familiarize yourself with the contribution guidelines. This document will also help you set up your development environment.
Thank you for your interest in the Python Weerlive client! If you have any questions or need further assistance, feel free to open an issue or submit a pull request.