Metadata-Version: 2.1
Name: crypto-yfinance
Version: 0.1.3
Summary: Unified cryptocurrency data API like yfinance
Home-page: https://medium.com/@craakash
Author: Aakash Chavan Ravindranath
Author-email: craakash@gmail.com
License: MIT
Project-URL: LinkedIn, https://www.linkedin.com/in/aakashcr/
Project-URL: Source, https://github.com/craakash/cryptofinance
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
Requires-Dist: ccxt
Requires-Dist: pycoingecko
Requires-Dist: matplotlib
Requires-Dist: pandas
Requires-Dist: plotly

# cryptofinance

Created by [Aakash Chavan Ravindranath](https://www.linkedin.com/in/aakashcr/)  
More content: [Medium](https://medium.com/@craakash)

A Python library for unified access to cryptocurrency data, similar to `yfinance`.  
Designed for retail investors and data scientists.

## Features

- `get_price()` – real-time spot price
- `get_history()` – OHLCV historical data
- `search_symbol()` – resolve ticker names
- `get_market_cap()` – historical market cap
- `get_volume()` – historical trading volume
- `plot_price()` – quick chart of price history

## Install

Coming soon via PyPI.

## Usage

```python
from cryptofinance import get_price, get_history, plot_price

print(get_price('btc_usd'))
df = get_history('btc_usd')
plot_price('btc_usd')
```
