[travis]: https://travis-ci.org/whatasunnyday/open_civic_data
The Open Civic Data API is a JSON API that provides search and lookup across government organizations, people, legislation, and events, provided by the Sunlight Foundation.
For more information, check the [API documentation][apidocs] [apidocs]: http://docs.opencivicdata.org/en/latest/index.html
gem install open_civic_data
[http://rdoc.info/github/whatasunnyday/open_civic_data/][documentation] [documentation]: http://rdoc.info/github/whatasunnyday/open_civic_data/
All requests to the Open Civic Data API require a Sunlight API key. An API key is [free to register][register] and has no usage limits. [register]: http://services.sunlightlabs.com/accounts/register/
require 'open_civic_data'
OpenCivicData.key = YOUR_SUNLIGHT_API_KEY
OpenCivicData.jurisdictions
OpenCivicData.divisions
OpenCivicData.people
OpenCivicData.organizations
OpenCivicData.events
OpenCivicData.bills
Fetches the record of vote taken on motions. May contain individual legilsator's yay/nay or outcome.
OpenCivicData.votes
# Returns legislators named 'Obama'
OpenCivicData.people({'name' => 'Obama'})
# Returns second page of results (results are paginated && 0 indexed)
OpenCivicData.votes({'page' => 1 })
# You can change the end point and disable key if necessary.
OpenCivicData.key_required = false
OpenCivicData.endpoint = 'http://imago-ca.herokuapp.com/'
This library aims to support and is [tested against][travis] the following Ruby implementations:
- Ruby 1.9.2
- Ruby 1.9.3
- Ruby 2.0.0
- Ruby 2.1.0
- [JRuby][] [jruby]: http://www.jruby.org/
If something doesn't work on one of these interpreters, it should be considered a bug.
This library may inadvertently work (or seem to work) on other Ruby implementations, however support will only be provided for the versions listed above.
If you would like this library to support another Ruby version, you may volunteer to be a maintainer. Being a maintainer entails making sure all tests run and pass on that implementation. When something breaks on your implementation, you will be personally responsible for providing patches in a timely fashion. If critical issues for a particular implementation exist at the time of a major release, support for that Ruby version may be dropped.
The [contributors][] of the [Congress gem][congress] where the ideas behind this gem were largely lifted from. [contributors]: https://github.com/codeforamerica/congress/graphs/contributors [congress]: https://github.com/codeforamerica/congress
Copyright (c) 2014, Sunny Juneja. See [LICENSE][] for details. [license]: https://github.com/whatasunnyday/open_civic_data/blob/master/LICENSE.md