Metadata-Version: 2.4
Name: nft-price-tracker
Version: 0.1.0
Summary: A tool for tracking NFT prices across OpenSea and Magic Eden marketplaces
Home-page: https://github.com/danghuy174/NftTracking
Author: Adolius
Author-email: danghuy174@gmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: colorama
Requires-Dist: python-dotenv
Requires-Dist: tqdm
Requires-Dist: asyncio
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# NFT Price Tracker

A Python tool for tracking NFT prices across different marketplaces (OpenSea and Magic Eden).

## Features

- Track NFT prices across multiple marketplaces simultaneously
- Compare floor prices between OpenSea and Magic Eden
- View lowest and highest priced NFTs in collections
- Generate detailed price comparison reports
- Support for both Ethereum and Solana NFTs

## Installation

```bash
pip install nft-price-tracker
```

## Usage

```python
from nft_price_tracker import NFTPriceTracker

# Initialize tracker
tracker = NFTPriceTracker()

# Track a collection
tracker.track_collection(
    opensea_slug="doodles-official",
    magiceden_id="your_collection_id"
)
```

Or use the command line interface:

```bash
nft-tracker
```

## Requirements

- Python 3.8+
- OpenSea API Key
- Magic Eden API Key (optional)

## Configuration

Create a `.env` file in your project root:

```env
OPENSEA_API_KEY=your_opensea_api_key_here
MAGICEDEN_API_KEY=your_magiceden_api_key_here
```

## License

MIT License

## Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. 
