Skip to main content

Query US government data with a single line of Python

Project description

AskAmerica

Query 17 US government datasets — SEC filings, FEC campaign finance, Census, weather, energy, crime, and more — with a single line of Python.

Install

pip install 'askamerica[engine]'
askamerica login            # get your free API key

The query engine JAR (~80 MB) is downloaded automatically on first use. To pre-download it explicitly (useful for CI or Docker):

askamerica install-engine   # optional — runs automatically on first query otherwise

Query

One-liner — returns a pandas DataFrame:

import askamerica as aa

df = aa.query("SELECT company_name, value_dollars FROM sec.financial_facts WHERE canonical_name = 'Revenue' ORDER BY value_dollars DESC FETCH FIRST 10 ROWS ONLY")
print(df)

Raw JDBC connection:

import askamerica as aa

conn = aa.connect()
stmt = conn.createStatement()
rs = stmt.executeQuery("SELECT cik, company_name FROM sec.filing_metadata ORDER BY filing_date DESC FETCH FIRST 5 ROWS ONLY")
while rs.next():
    print(rs.getString("company_name"))
conn.close()

Claude Desktop (MCP)

pip install 'askamerica[mcp]'
askamerica install-engine
askamerica mcp-config       # writes Claude Desktop config snippet

Sign up for a free API key at askamerica.ai.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

askamerica-0.3.2.tar.gz (9.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

askamerica-0.3.2-py3-none-any.whl (16.2 kB view details)

Uploaded Python 3

File details

Details for the file askamerica-0.3.2.tar.gz.

File metadata

  • Download URL: askamerica-0.3.2.tar.gz
  • Upload date:
  • Size: 9.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for askamerica-0.3.2.tar.gz
Algorithm Hash digest
SHA256 9aaaea607bf9a9c0b66b85a2a1c59c533cdcb1e8940b646767877c640cacd492
MD5 ff1fb48ef07a24e86e08f1728b293848
BLAKE2b-256 c697895fbff0955da8e7eb7ee8140338d48f453bc8f69cd655707f6cb48c1f8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for askamerica-0.3.2.tar.gz:

Publisher: pypi-publish.yml on kenstott/askamerica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file askamerica-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: askamerica-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for askamerica-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 09b039c21b88e343ca8ba90ca3c590bf9317a5337eb795a5568de03a6ef6a9cc
MD5 c7c319ed7a1871acb2cf72d1f06a9992
BLAKE2b-256 674df9eebd4c039724a0d369c785b055ece6a4443603841ddf696de9f2d59168

See more details on using hashes here.

Provenance

The following attestation bundles were made for askamerica-0.3.2-py3-none-any.whl:

Publisher: pypi-publish.yml on kenstott/askamerica

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page