Skip to main content

A Python library for the GovTrack.us API v2.

Project description

# govtrack-python

A Python library for the GovTrack.us API v2.

Based on https://github.com/markgx/govtrack-node/

For full API docs visit [https://www.govtrack.us/developers/api](https://www.govtrack.us/developers/api)

## Installation

```
pip install govtrack
```

## Usage

### Instantiate the GovTrackClient like so:

```
from govtrack.api import GovTrackClient

client = GovTrackClient()
```

### Calling the API:

##### 1. Choose an endpoint

```
client.bill()
client.cosponsorship()
client.person()
client.role()
client.vote()
client.vote_voter()
```

##### 2a. Filter the results

```
client.person({'lastname': 'Kennedy'})
```

##### 2b. Filter with a 'id' to get a single result (or get none if the 'id' doesn't exist)

```
client.person({'id': 123})
```

##### 2c. Provide an integer to get the same affect as 2b

```
client.person(123)
```

##### 3. Receive a response

Single response if you used an 'id':
```
{
'id': 65,
'bill_type': 'resolution',
'congress': 113
}
```

Multiple response if you used filters:
```
{
'meta': {
'some_meta_key_1': 123,
'some_meta_key_2': 'abc'
},
'objects': [
{
'id': 65,
'bill_type: 'resolution',
'congress': 113
},
{
'id': 66,
'bill_type': 'resolution',
'congress': 114
}
]
}
```

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

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

Source Distribution

govtrack-0.1.tar.gz (9.2 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