Metadata-Version: 2.4
Name: cashy
Version: 1.0.0
Summary: A simple Live currency converter using the Frankfurter API
Home-page: https://github.com/mohsin-nasir/cashy
Author: Mohsin Nasir
Author-email: mohsinnasirdps@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.0.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Py Currency Converter

A simple Python library to convert currencies using the live exchange rates from the Frankfurter API.

## Installation

```bash
pip install cashy
```

## Usage

```python
from cashy import CurrencyConverter

converter = CurrencyConverter()

# Convert 100 USD to INR
result = converter.convert(100, 'USD', 'INR')
print(f"100 USD is {result} INR")

# Get exchange rate
rate = converter.get_exchange_rate('USD', 'INR')
print(f"Current rate from USD to INR: {rate}")
```

## Features

- Real-time exchange rates
- No API key required (uses Frankfurter API)
- Simple and easy to use
