Metadata-Version: 2.4
Name: askamerica
Version: 0.3.0
Summary: Query US government data with a single line of Python
Project-URL: Homepage, https://askamerica.ai
Project-URL: Documentation, https://askamerica.ai/docs
Project-URL: Issues, https://github.com/askamerica/askamerica-python/issues
Author-email: AskAmerica <support@askamerica.ai>
License: MIT
Keywords: census,data,fec,government,open-data,sec,sql
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
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: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Requires-Python: >=3.8
Requires-Dist: requests>=2.28.0
Provides-Extra: all
Requires-Dist: jpype1>=1.4.0; extra == 'all'
Requires-Dist: mcp>=1.0.0; extra == 'all'
Requires-Dist: pandas>=1.3.0; extra == 'all'
Provides-Extra: engine
Requires-Dist: jpype1>=1.4.0; extra == 'engine'
Requires-Dist: pandas>=1.3.0; extra == 'engine'
Provides-Extra: mcp
Requires-Dist: jpype1>=1.4.0; extra == 'mcp'
Requires-Dist: mcp>=1.0.0; extra == 'mcp'
Description-Content-Type: text/markdown

# AskAmerica

Query US government data with a single line of Python.

```python
pip install askamerica
```

```python
import askamerica

askamerica.configure(api_key="aa_free_...")
df = askamerica.query("SELECT * FROM sec.filings WHERE year = 2024 LIMIT 100")
```

Sign up for a free API key at [askamerica.ai](https://askamerica.ai).
