No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
A wrapper for the Sunlight Labs Congress API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
 Project Readme

Sunlight::Congress

Build Status

The API this uses has been shutdown. Follow this post for more information.

This is a wrapper for the Sunlight Foundation's Congress API.

It is very much a work in progress, and only supports part of the API. Any assistance with implementing extra calls would be appreciated!

Installation

Add this line to your application's Gemfile:

gem 'sunlight-congress'

And then execute:

$ bundle

Or install it yourself as:

$ gem install sunlight-congress

Usage

The first thing you need to do is set up an API key. You can apply for one here. They're free and have no usage limits.

Once you have your key:

require 'sunlight-congress'

Sunlight::Congress.api_key = "lolthisisnotarealkey"

Then, you can build various objects relating to the API. For example:

Sunlight::Congress::Legislator.by_zipcode("90210")
=> [#<Sunlight::Congress::Legislator:0x007fad4a2f67b0 @first_name="Henry"...

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request