Skip to main content

Python API for the numerous APIs available through USA Spending.

Project description

Python API for the numerous APIs available through [USA Spending](http://usaspending.gov/data?carryfilters=on).

Usage

>>> from usa_spending import Contracts
>>> c = Contracts()
>>> c.search(state='TX', count=500)
>>> # Search for contracts for a specific year.
... c.search(zipcode=12345, year=2010)
>>> # Search for contracts within a date range.
... c.search(state='CA', first_year=2008, last_year=2010)
>>> # Search for contracts not competed on.
... c.search(state='NY', competition='not competed')
>>> # Search for contracts not available for competition.
... c.search(state='NY', competition='N/A')
>>> # Find the number of contracts matching your criteria.
... data = c.search(zipcode=12345)
>>> found = data.response.result.numFound
>>> print found
6789

Project details


Download files

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

Source Distribution

usa_spending-1.1.tar.gz (9.9 kB view hashes)

Uploaded Source

Supported by

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