Metadata-Version: 2.4
Name: askamerica
Version: 0.1.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: data,government,open-data,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: duckdb>=0.9.0
Requires-Dist: requests>=2.28.0
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).
