Metadata-Version: 2.4
Name: gud-price
Version: 0.1.3
Summary: Zero-dependency Chainlink price feed reader for any EVM chain
Project-URL: Homepage, https://github.com/thevolcanomanishere/gud-price
Project-URL: Repository, https://github.com/thevolcanomanishere/gud-price
Author: Alex McGonagle
License-Expression: MIT
Keywords: chainlink,defi,ethereum,evm,price-feed
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# gud-price

Zero-dependency Chainlink price feed reader for any EVM chain.

Read real-time prices from Chainlink data feeds on 18+ EVM chains with a single RPC call — no web3, no ABIs.

## Installation

```bash
pip install gud-price
```

## Usage

```python
from gud_price.rpc import read_latest_price
from gud_price.ethereum import ETH_USD
from gud_price.rpcs import rpc

price = read_latest_price(rpc("ethereum"), ETH_USD)
print(f"ETH/USD: {price.answer}")
```

## Supported Chains

Ethereum, Arbitrum, Base, Polygon.

## License

MIT
