Metadata-Version: 2.4
Name: market-values
Version: 0.1.0
Summary: Live Indian stock market tracker with a web dashboard
Author-email: Jishnu T S <jishnusaseendran@gmail.com>
License-Expression: MIT
License-File: LICENSE
Keywords: dashboard,fastapi,india,nse,stock-market,yfinance
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Office/Business :: Financial :: Investment
Requires-Python: >=3.9
Requires-Dist: fastapi>=0.100.0
Requires-Dist: pandas>=1.5.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: uvicorn[standard]>=0.23.0
Requires-Dist: yfinance>=0.2.0
Description-Content-Type: text/markdown

# Market Values

Live Indian stock market tracker with a web dashboard. Tracks NSE stocks in real-time using WebSocket streaming, with candlestick charts and a clean UI.

## Install

```bash
pip install market-values
```

## Usage

```bash
market-values              # starts server and opens browser
market-values --port 9000  # custom port
market-values --no-browser # don't auto-open browser
```

The dashboard will be available at `http://127.0.0.1:8000` (default).

## Configuration

On first run, a config file is created at `~/.market-values/config.yaml`:

```yaml
stock_codes:
- RELIANCE.NS
- TCS.NS
- INFY.NS
- HDFCBANK.NS
- ICICIBANK.NS
server:
  host: 127.0.0.1
  port: 8000
refresh_interval_seconds: 5
```

Edit the stock codes to track different NSE stocks. Changes are picked up automatically without restarting.

## License

MIT
