aioopenexchangerates¶
Documentation: https://aioopenexchangerates.readthedocs.io
Source Code: https://github.com/MartinHjelmare/aioopenexchangerates
Fetch rates from openexchangerates with aiohttp.
Installation¶
Install this via pip (or your favourite package manager):
pip install aioopenexchangerates
Usage¶
import asyncio
from aioopenexchangerates import Client, OpenExchangeRatesError
async def main() -> None:
"""Run main."""
async with Client("your_api_key") as client:
try:
result = await client.get_latest()
except OpenExchangeRatesError as err:
print(err)
else:
print(result)
if __name__ == "__main__":
asyncio.run(main())
Credits¶
This package was created with Copier and the browniebroke/pypackage-template project template.
Installation & Usage
Project Info
- CHANGELOG
- v0.7.0 (2026-03-06)
- v0.6.21 (2025-02-24)
- v0.6.20 (2025-02-06)
- v0.6.19 (2024-12-19)
- v0.6.18 (2024-12-06)
- v0.6.17 (2024-12-02)
- v0.6.16 (2024-11-27)
- v0.6.15 (2024-11-23)
- v0.6.14 (2024-11-21)
- v0.6.13 (2024-11-19)
- v0.6.12 (2024-11-19)
- v0.6.11 (2024-11-19)
- v0.6.10 (2024-11-15)
- v0.6.9 (2024-11-14)
- v0.6.8 (2024-10-24)
- v0.6.7 (2024-10-11)
- v0.6.6 (2024-10-04)
- v0.6.5 (2024-09-29)
- v0.6.4 (2024-09-28)
- v0.6.3 (2024-09-25)
- v0.6.2 (2024-08-20)
- v0.6.1 (2024-08-18)
- v0.6.0 (2024-08-10)
- v0.5.0 (2024-08-10)
- v0.4.16 (2024-08-08)
- v0.4.15 (2024-08-05)
- v0.4.14 (2024-07-31)
- v0.4.13 (2024-06-20)
- v0.4.12 (2024-06-12)
- v0.4.11 (2024-04-16)
- v0.4.10 (2024-04-12)
- v0.4.9 (2024-04-03)
- v0.4.8 (2024-01-30)
- v0.4.7 (2024-01-29)
- v0.4.6 (2024-01-19)
- v0.4.5 (2023-11-26)
- v0.4.4 (2023-11-21)
- v0.4.3 (2023-10-18)
- v0.4.2 (2023-03-23)
- v0.4.1 (2023-03-16)
- v0.4.0 (2022-08-05)
- v0.3.0 (2022-07-31)
- v0.2.0 (2022-07-29)
- Contributing