0.0
No commit activity in last 3 years
No release in over 3 years
Greenmonster downloads XML data so that you can locally work with Gameday data for sabermetric research.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 10.4
~> 3.2
~> 2.9
~> 1.3

Runtime

~> 0.13
~> 1.6
 Project Readme

Code Climate Build Status

Greenmonster

Greenmonster is a toolkit for baseball stat enthusiasts or sabermetricians to retrieve play-by-play stats from MLB's Gameday XML data. The tool provides the ability to spider Gameday XML data from MLB's servers for personal research.

Usage

Spider

Set a location where you'll save your local games after downloading.

# Set games folder location
Greenmonster.set_local_data_location("/Users/me/gameday")

Download a game from MLB.

# Pull MLB's 7/4/2011 Toronto @ Boston game
spider = Greenmonster::GameSpider.new(game_id: "gid_2011_07_04_tormlb_bosmlb_1", sport_code: "mlb")
spider.pull

Download games from a given date.

# Pull all MLB games for today
Greenmonster::DaySpider.new(date: Date.today, sport_code: "mlb").pull

# Pull all rookie league games for today
Greenmonster::DaySpider(date: Date.today, sport_code: "rok").pull

Requirements

  • Ruby 2.0
  • Bundler
  • Nokogiri
  • HTTParty

Testing

The test suite uses RSpec.

License

(The MIT License)

Copyright © Geoff Harcourt 2012-2015

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.