Metadata-Version: 2.4
Name: stoxnow
Version: 0.1.0
Summary: Python client for the stoxnow API — financial data for developers
Author-email: Rivarel <vincent@stoxnow.com>
License: MIT
Project-URL: Homepage, https://stoxnow.com
Project-URL: Documentation, https://stoxnow.com/docs
Project-URL: Repository, https://github.com/Rivarel/stoxnow
Keywords: finance,stocks,market data,api
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.27.0
Provides-Extra: pandas
Requires-Dist: pandas>=1.5.0; extra == "pandas"
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-httpx; extra == "dev"
Requires-Dist: hatch; extra == "dev"

# stoxnow

Python client for the [stoxnow](https://stoxnow.com) API — financial data for developers.

## Installation

```bash
pip install stoxnow
```

## Usage

```python
import stoxnow

client = stoxnow.Client(api_key="sk-...")

# List available industries
industries = client.industries()

# Fetch valuation vectors
data = client.vectors(industry="Software", days=90)

# As a pandas DataFrame
df = client.vectors(industry="Software", as_dataframe=True)
```

## License

MIT
