Metadata-Version: 2.1
Name: coinconverter
Version: 0.0.4
Summary: Real-time currency converter
Author: EdexCode
Author-email: edexcode@gmail.com
License: MIT License
Project-URL: GitHub, https://github.com/EdexCode/coinconverter
Keywords: python,currency,converter,realtime,convert,exchange,exchange rate,exchange rates
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: bs4
Requires-Dist: requests

# CoinConverter

## How To Use
```python
from coinconverter import convert

amount = "10"
from_currency = "USD"
to_currency = "PHP"

print(convert(amount, from_currency, to_currency))
```
## Output:
```
588.70
```
