Metadata-Version: 2.1
Name: currency-api-py
Version: 0.1.0
Summary: A python async wrapper for the currency-api API
Home-page: https://github.com/Marseel-E/currency-api-py
Author: Marseel Eeso
Author-email: marseeleeso@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Marseel-E/currency-api-py/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# currency-api-py
A python async wrapper for the currency-api API
# Installation
```cmd
py -m pip install -U currency-api-py

:: latest (unstable)
py -m pip install git+https://github.com/Marseel-E/currency-api-py
```
# Quickstart
```py
import asyncio

from currencyApi import CurrencyApi

async def main():
	async with CurrencyApi() as session:
		data = await session.convert("eur", "usd")
		print(data)

if __name__ = '__main__':
	asyncio.run(main())

# Output (2022-04-30)
>>> 1.054463
```

