Everypolitician::Popolo

EveryPolitician provides its data in Popolo format. If you want to interact with this data from Ruby then this library should make that task simpler.

Installation

Add this line to your application's Gemfile:

gem 'everypolitician-popolo'

And then execute:

$ bundle

Or install it yourself as:

$ gem install everypolitician-popolo

Usage

You'll need to download a Popolo file from EveryPolitician. The following example uses Åland Lagting (which is the legislature of the Åland islands, available as JSON data from the EveryPolitician page for Åland).

First you'll need to require the library and read in a file from disk.

require 'everypolitician/popolo'
popolo = Everypolitician::Popolo.read('ep-popolo-v1.0.json')

All Popolo classes used by EveryPolitician are implemented:

There are methods defined for each property on a class, e.g. for a Person:

popolo.persons.count # => 47
person = popolo.persons.first
person.id # => "e3aab23e-a883-4763-be0d-92e5936024e2"
person.name # => "Aaltonen Carina"
person.image # => "http://www.lagtinget.ax/files/aaltonen_carina.jpg"
person.wikidata # => "Q4934081"

You can also find individual records or collections based on their attributes:

popolo.persons.find_by(name: "Aaltonen Carina", wikidata: "Q4934081")
    # => #<Everypolitician::Popolo::Person:0x0000000237dfc8
    #      @document={:id=>"0c705344-23aa-4fa2-9391-af41c1c775b7",
    #                 :identifiers=>[{:identifier=>"Q4934081", :scheme=>"wikidata"}],
    #                 :name=>"Aaltonen Carina"}>

popolo.organizations.where(classification: "party")
    # => [
    #      <Everypolitician::Popolo::Organization:0x000000035779e0
    #       @document={:classification=>"party",
    #                  :id=>"123",
    #                  :name=>"Sunripe Tomato Party"}>,
    #      <Everypolitician::Popolo::Organization:0x000000035779e1
    #       @document={:classification=>"party",
    #                  :id=>"456",
    #                  :name=>"The Greens"}>
    #    ]

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/everypolitician/everypolitician-popolo.

License

The gem is available as open source under the terms of the MIT License.