Metadata-Version: 2.4
Name: frankfurter-api
Version: 0.0.2
Summary: Simple Wrapper for the Frankfurter Currency API
Author-email: Pixelic <contact@pixelic.dev>
License-Expression: MIT
Project-URL: Repository, https://github.com/pixelicc/frankfurter-api
Project-URL: Issues, https://github.com/pixelicc/frankfurter-api/issues
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp>=3.0.0
Dynamic: license-file

# frankfurter-api - Simple Wrapper for the Fankfurter Currency API


![PyPI Downloads](https://img.shields.io/pypi/dm/frankfurter-api)
![PyPI Version](https://img.shields.io/pypi/v/frankfurter-api)
![PyPI License](https://img.shields.io/pypi/l/frankfurter-api)

# Installation 

```bash
pip install frankfurter-api
```
or
```bash
uv add frankfurter-api
```

# Usage

```py
from frankfurter_api import FrankfurterAPI

frankfurter = FrankfurterAPI()

currencies = await frankfurter.get_currencies()
rate = await frankfurter.get_rate(base="EUR", target="USD")
```

# API Documentation

For more details on the Frankfurter API, visit their official [Documentation](https://www.frankfurter.dev/).

