Metadata-Version: 2.4
Name: jstdata
Version: 0.1.0
Summary: A Python interface to the Jefferson Street REST API.
License: MIT
License-File: LICENSE
Keywords: api,cli,data,jefferson street
Author: Mahfuj Ahbab
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: click (>=8.2.1,<9.0.0)
Requires-Dist: pandas (>=2.3.1,<3.0.0)
Requires-Dist: tabulate (>=0.9.0,<0.10.0)
Project-URL: Homepage, https://github.com/mahfuj/python_api
Project-URL: Repository, https://github.com/mahfuj/python_api
Description-Content-Type: text/markdown

# jstdata

A Python interface to the Jefferson Street REST API.

## Installation

```bash
pip install jstdata
```

## Usage

Set your API key as an environment variable:

```bash
export JEFFERSON_STREET_API_KEY="your_api_key_here"
```

Then you can use the CLI:

```bash
jst --help
```

Or use it as a Python library:

```python
from jstdata.client import JeffersonStreetClient

client = JeffersonStreetClient("your_api_key_here")
metrics = client.get_metrics()
print(metrics)
```

