fantasydata 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +19 -0
- data/.travis.yml +13 -0
- data/Gemfile +17 -0
- data/Guardfile +70 -0
- data/LICENSE +22 -0
- data/README.md +32 -0
- data/Rakefile +2 -0
- data/fantasydata.gemspec +22 -0
- data/lib/fantasydata.rb +47 -0
- data/lib/fantasydata/api/box_score.rb +104 -0
- data/lib/fantasydata/api/bye_weeks.rb +24 -0
- data/lib/fantasydata/api/fantasy.rb +68 -0
- data/lib/fantasydata/api/game.rb +31 -0
- data/lib/fantasydata/api/news.rb +22 -0
- data/lib/fantasydata/api/player_details.rb +26 -0
- data/lib/fantasydata/api/player_stat.rb +33 -0
- data/lib/fantasydata/api/schedule.rb +13 -0
- data/lib/fantasydata/api/stadium.rb +14 -0
- data/lib/fantasydata/api/standings.rb +14 -0
- data/lib/fantasydata/api/team.rb +18 -0
- data/lib/fantasydata/api/utils.rb +65 -0
- data/lib/fantasydata/api/week.rb +22 -0
- data/lib/fantasydata/base.rb +91 -0
- data/lib/fantasydata/bye_week.rb +8 -0
- data/lib/fantasydata/client.rb +77 -0
- data/lib/fantasydata/configurable.rb +79 -0
- data/lib/fantasydata/daily_fantasy_player.rb +11 -0
- data/lib/fantasydata/daily_fantasy_player_stats.rb +35 -0
- data/lib/fantasydata/daily_fantasy_points.rb +8 -0
- data/lib/fantasydata/default.rb +82 -0
- data/lib/fantasydata/error.rb +33 -0
- data/lib/fantasydata/error/bad_gateway.rb +11 -0
- data/lib/fantasydata/error/bad_request.rb +10 -0
- data/lib/fantasydata/error/client_error.rb +24 -0
- data/lib/fantasydata/error/configuration_error.rb +8 -0
- data/lib/fantasydata/error/forbidden.rb +10 -0
- data/lib/fantasydata/error/gateway_timeout.rb +11 -0
- data/lib/fantasydata/error/internal_server_error.rb +11 -0
- data/lib/fantasydata/error/not_acceptable.rb +10 -0
- data/lib/fantasydata/error/not_found.rb +10 -0
- data/lib/fantasydata/error/server_error.rb +28 -0
- data/lib/fantasydata/error/service_unavailable.rb +11 -0
- data/lib/fantasydata/error/too_many_requests.rb +12 -0
- data/lib/fantasydata/error/unauthorized.rb +10 -0
- data/lib/fantasydata/error/unprocessable_entity.rb +10 -0
- data/lib/fantasydata/fantasy_player_adp.rb +10 -0
- data/lib/fantasydata/game_stat.rb +93 -0
- data/lib/fantasydata/news.rb +8 -0
- data/lib/fantasydata/player_detail.rb +27 -0
- data/lib/fantasydata/player_game_stat.rb +46 -0
- data/lib/fantasydata/player_season_stat.rb +54 -0
- data/lib/fantasydata/response/parse_json.rb +25 -0
- data/lib/fantasydata/response/raise_error.rb +32 -0
- data/lib/fantasydata/schedule.rb +14 -0
- data/lib/fantasydata/scoring_detail.rb +10 -0
- data/lib/fantasydata/stadium.rb +9 -0
- data/lib/fantasydata/standings.rb +13 -0
- data/lib/fantasydata/team_detail.rb +20 -0
- data/lib/fantasydata/version.rb +3 -0
- data/spec/fantasydata/api/box_score_spec.rb +17 -0
- data/spec/fantasydata/api/bye_weeks_spec.rb +31 -0
- data/spec/fantasydata/api/daily_fantasy_spec.rb +189 -0
- data/spec/fantasydata/api/game_spec.rb +84 -0
- data/spec/fantasydata/api/news_spec.rb +66 -0
- data/spec/fantasydata/api/player_details_spec.rb +107 -0
- data/spec/fantasydata/api/player_stat_spec.rb +138 -0
- data/spec/fantasydata/api/schedule_spec.rb +37 -0
- data/spec/fantasydata/api/stadium_spec.rb +32 -0
- data/spec/fantasydata/api/standings_spec.rb +30 -0
- data/spec/fantasydata/api/team_spec.rb +56 -0
- data/spec/fantasydata/api/week_spec.rb +69 -0
- data/spec/fantasydata/box_score_spec.rb +64 -0
- data/spec/fantasydata/client_spec.rb +77 -0
- data/spec/fantasydata/error_spec.rb +37 -0
- data/spec/fantasydata_spec.rb +64 -0
- data/spec/fixtures/bye_weeks/bye_weeks.json +1 -0
- data/spec/fixtures/daily_fantasy/adp.json +1 -0
- data/spec/fixtures/daily_fantasy/daily_defense_game.json +1 -0
- data/spec/fixtures/daily_fantasy/daily_defense_seasons_proj.json +1 -0
- data/spec/fixtures/daily_fantasy/daily_defense_seasons_stats.json +1 -0
- data/spec/fixtures/daily_fantasy/daily_players.json +1 -0
- data/spec/fixtures/daily_fantasy/daily_points.json +1 -0
- data/spec/fixtures/daily_fantasy/defense_game_stats_projected.json +1 -0
- data/spec/fixtures/error_response.json +4 -0
- data/spec/fixtures/game/game_stats_by_season.json +1 -0
- data/spec/fixtures/game/game_stats_by_week.json +1 -0
- data/spec/fixtures/game/in_progress.json +1 -0
- data/spec/fixtures/game/in_progress_false.json +1 -0
- data/spec/fixtures/game/in_progress_true.json +1 -0
- data/spec/fixtures/news/by_player.json +1 -0
- data/spec/fixtures/news/by_team.json +1 -0
- data/spec/fixtures/news/recent.json +1 -0
- data/spec/fixtures/player_details/active.json +1 -0
- data/spec/fixtures/player_details/by_team.json +1 -0
- data/spec/fixtures/player_details/free_agents.json +1 -0
- data/spec/fixtures/player_details/player_find.json +1 -0
- data/spec/fixtures/player_stat/stat_by_delta.json +1 -0
- data/spec/fixtures/player_stat/stat_by_game_projection.json +1 -0
- data/spec/fixtures/player_stat/stat_by_player_id.json +1 -0
- data/spec/fixtures/player_stat/stat_by_week.json +1 -0
- data/spec/fixtures/player_stat/stat_by_week_and_team.json +1 -0
- data/spec/fixtures/player_stat/stat_by_week_and_team_projected.json +1 -0
- data/spec/fixtures/schedule/for_year.json +1 -0
- data/spec/fixtures/stadium/index.json +1 -0
- data/spec/fixtures/standings/by_year.json +1 -0
- data/spec/fixtures/team/active.json +1 -0
- data/spec/fixtures/team/by_year.json +1 -0
- data/spec/fixtures/week/current.json +1 -0
- data/spec/fixtures/week/last_completed.json +1 -0
- data/spec/fixtures/week/upcoming.json +1 -0
- data/spec/helper.rb +42 -0
- metadata +242 -0
@@ -0,0 +1 @@
|
|
1
|
+
true
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"NewsID":36084,"Title":"Elway: Run game will be Peyton's best friend","Updated":"2015-07-30T20:18:00","Url":"http://www.rotoworld.com/player/nfl/1493/peyton-manning","Content":"Broncos GM John Elway wants the running game to be Peyton Manning's "best friend" in 2015.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"DEN","PlayerID":7328},{"NewsID":34904,"Title":"Texans/Broncos had 'preliminary' Peyton talks","Updated":"2015-06-24T13:25:00","Url":"http://www.rotoworld.com/player/nfl/1493/peyton-manning","Content":"A source told Sports Radio 610 in Houston that the Texans and Broncos had "very preliminary" discussions regarding a trade that would have sent Peyton Manning to the Texans early this offseason.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"DEN","PlayerID":7328},{"NewsID":28686,"Title":"Peyton Manning passes physical, signs deal","Updated":"2015-03-05T12:43:00","Url":"http://www.rotoworld.com/player/nfl/1493/peyton-manning","Content":"Peyton Manning is officially returning to the Broncos in 2015.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"DEN","PlayerID":7328}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"NewsID":35043,"Title":"Zimmer: C. Patterson still lacks consistency","Updated":"2015-07-27T18:20:00","Url":"http://www.rotoworld.com/player/nfl/8327/cordarrelle-patterson","Content":"Coach Mike Zimmer said Monday that Cordarrelle Patterson's consistency has remained an issue on the practice field.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"MIN","PlayerID":15150},{"NewsID":35041,"Title":"Zimmer: Peterson can expect 'heavy workload'","Updated":"2015-07-27T18:17:00","Url":"http://www.rotoworld.com/player/nfl/4169/adrian-peterson","Content":"Asked Monday about Adrian Peterson's workload, coach Mike Zimmer replied "He'll get as much as he can take."","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"MIN","PlayerID":4807}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"NewsID":36084,"Title":"Elway: Run game will be Peyton's best friend","Updated":"2015-07-30T20:18:00","Url":"http://www.rotoworld.com/player/nfl/1493/peyton-manning","Content":"Broncos GM John Elway wants the running game to be Peyton Manning's "best friend" in 2015.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"DEN","PlayerID":7328},{"NewsID":36083,"Title":"Jets learned of Richardson's arrest Thursday","Updated":"2015-07-30T19:24:00","Url":"http://www.rotoworld.com/player/nfl/8314/sheldon-richardson","Content":"Newsday reports the Jets "had no knowledge" of Sheldon Richardson's July 14 on resisting arrest and traffic charges before Thursday.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"NYJ","PlayerID":14894}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"PlayerID":17065,"Team":"OAK","Number":40,"FirstName":"Michael","LastName":"Dyer","Position":"RB","Status":"Active","Height":"58","Weight":218,"BirthDate":"1990-10-13T00:00:00","College":"Auburn","Experience":0,"FantasyPosition":"RB","Active":true,"PositionCategory":"OFF","Name":"Michael Dyer","Age":24,"ExperienceString":"Rookie","BirthDateString":"October 13, 1990","PhotoUrl":"http:\/\/static.fantasydata.com\/headshots\/nfl\/low-res\/0.png","ByeWeek":6,"UpcomingGameOpponent":"CIN","UpcomingGameWeek":1,"ShortName":"M.Dyer","AverageDraftPosition":null,"DepthPositionCategory":null,"DepthPosition":null,"DepthOrder":null,"DepthDisplayOrder":null,"CurrentTeam":"OAK","CollegeDraftTeam":"OAK","CollegeDraftYear":2015,"CollegeDraftRound":null,"CollegeDraftPick":null,"IsUndraftedFreeAgent":true,"HeightFeet":5,"HeightInches":8,"UpcomingOpponentRank":10,"UpcomingOpponentPositionRank":27,"CurrentStatus":"Healthy","UpcomingSalary":null},{"PlayerID":17066,"Team":"CIN","Number":31,"FirstName":"Terrell","LastName":"Watson","Position":"RB","Status":"Active","Height":"61\"","Weight":238,"BirthDate":"1993-08-22T00:00:00","College":"Azusa Pacific","Experience":0,"FantasyPosition":"RB","Active":true,"PositionCategory":"OFF","Name":"Terrell Watson","Age":21,"ExperienceString":"Rookie","BirthDateString":"August 22, 1993","PhotoUrl":"http:\/\/static.fantasydata.com\/headshots\/nfl\/low-res\/0.png","ByeWeek":7,"UpcomingGameOpponent":"OAK","UpcomingGameWeek":1,"ShortName":"T.Watson","AverageDraftPosition":null,"DepthPositionCategory":null,"DepthPosition":null,"DepthOrder":null,"DepthDisplayOrder":null,"CurrentTeam":"CIN","CollegeDraftTeam":"CIN","CollegeDraftYear":2015,"CollegeDraftRound":null,"CollegeDraftPick":null,"IsUndraftedFreeAgent":true,"HeightFeet":6,"HeightInches":1,"UpcomingOpponentRank":26,"UpcomingOpponentPositionRank":32,"CurrentStatus":"Healthy","UpcomingSalary":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"PlayerID":11323,"Team":"MIN","Number":3,"FirstName":"Mike","LastName":"Kafka","Position":"QB","Status":"Active","Height":"6'3\"","Weight":225,"BirthDate":"1987-07-25T00:00:00","College":"Northwestern","Experience":4,"FantasyPosition":"QB","Active":true,"PositionCategory":"OFF","Name":"Mike Kafka","Age":28,"ExperienceString":"4th Season","BirthDateString":"July 25, 1987","PhotoUrl":"http://static.fantasydata.com/headshots/nfl/low-res/11323.png","ByeWeek":5,"UpcomingGameOpponent":"SF","UpcomingGameWeek":1,"ShortName":"M.Kafka","AverageDraftPosition":null,"DepthPositionCategory":"OFF","DepthPosition":"QB","DepthOrder":3,"DepthDisplayOrder":9,"CurrentTeam":"MIN","CollegeDraftTeam":"PHI","CollegeDraftYear":2010,"CollegeDraftRound":4,"CollegeDraftPick":122,"IsUndraftedFreeAgent":false,"HeightFeet":6,"HeightInches":3,"UpcomingOpponentRank":5,"UpcomingOpponentPositionRank":7,"CurrentStatus":"Healthy","UpcomingSalary":null,"InjuryStatus":null,"LatestNews":[{"NewsID":5812,"Title":"Jags GM: Kafka has legitimate shot to start","Updated":"2013-06-13T14:10:00","Url":"http://www.rotoworld.com/player/nfl/5855/mike-kafka","Content":"Jaguars GM Dave Caldwell said Mike Kafka has "just as good an opportunity" to earn the starting job as Chad Henne, Blaine Gabbert, and Matt Scott.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"JAX","PlayerID":11323},{"NewsID":1284,"Title":"No takers: Eagles waive backup QB Kafka","Updated":"2012-08-31T16:36:00","Url":"http://www.rotoworld.com/player/nfl/5855/mike-kafka","Content":"Eagles waived QB Mike Kafka.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"PHI","PlayerID":11323},{"NewsID":1280,"Title":"Eagles shopping backup QB Kafka for trade","Updated":"2012-08-31T15:05:00","Url":"http://www.rotoworld.com/player/nfl/5855/mike-kafka","Content":"The Eagles are shopping QB Mike Kafka on the trade market.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"PHI","PlayerID":11323}],"PlayerSeason":{"CustomD365FantasyPoints":0,"ScoringDetails":[],"PlayerID":11323,"SeasonType":1,"Season":2014,"Team":"TB","Number":3,"Name":"Mike Kafka","Position":"QB","PositionCategory":"OFF","Activated":3,"Played":0,"Started":0,"PassingAttempts":0,"PassingCompletions":0,"PassingYards":0,"PassingCompletionPercentage":0,"PassingYardsPerAttempt":0,"PassingYardsPerCompletion":0,"PassingTouchdowns":0,"PassingInterceptions":0,"PassingRating":0,"PassingLong":0,"PassingSacks":0,"PassingSackYards":0,"RushingAttempts":0,"RushingYards":0,"RushingYardsPerAttempt":0,"RushingTouchdowns":0,"RushingLong":0,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":0,"FumblesLost":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":0,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":0,"FieldGoalsMade":0,"FieldGoalsLongestMade":0,"ExtraPointsMade":0,"TwoPointConversionPasses":0,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":0,"FantasyPointsPPR":0,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":0,"FantasyPosition":"QB","FieldGoalPercentage":0,"PlayerSeasonID":14249684,"FumblesOwnRecoveries":0,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":0,"ShortName":"M.Kafka","SafetiesAllowed":0,"Temperature":76,"Humidity":47,"WindSpeed":5,"OffensiveSnapsPlayed":0,"DefensiveSnapsPlayed":0,"SpecialTeamsSnapsPlayed":0,"OffensiveTeamSnaps":258,"DefensiveTeamSnaps":304,"SpecialTeamsTeamSnaps":100,"AuctionValue":null,"AuctionValuePPR":null}},{"PlayerID":14463,"Team":"MIN","Number":3,"FirstName":"Blair","LastName":"Walsh","Position":"K","Status":"Active","Height":"5'9\"","Weight":192,"BirthDate":"1990-01-08T00:00:00","College":"Georgia","Experience":4,"FantasyPosition":"K","Active":true,"PositionCategory":"ST","Name":"Blair Walsh","Age":25,"ExperienceString":"4th Season","BirthDateString":"January 8, 1990","PhotoUrl":"http://static.fantasydata.com/headshots/nfl/low-res/14463.png","ByeWeek":5,"UpcomingGameOpponent":"SF","UpcomingGameWeek":1,"ShortName":"B.Walsh","AverageDraftPosition":171.7,"DepthPositionCategory":"ST","DepthPosition":"K","DepthOrder":1,"DepthDisplayOrder":24,"CurrentTeam":"MIN","CollegeDraftTeam":"MIN","CollegeDraftYear":2012,"CollegeDraftRound":6,"CollegeDraftPick":175,"IsUndraftedFreeAgent":false,"HeightFeet":5,"HeightInches":9,"UpcomingOpponentRank":5,"UpcomingOpponentPositionRank":6,"CurrentStatus":"Healthy","UpcomingSalary":null,"InjuryStatus":null,"LatestNews":[{"NewsID":35028,"Title":"Vikings extend K Walsh on 4-year, $13M deal","Updated":"2015-07-26T14:13:00","Url":"http://www.rotoworld.com/player/nfl/7620/blair-walsh","Content":"Vikings signed K Blair Walsh to a four-year, $13 million extension through 2019.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"MIN","PlayerID":14463}],"PlayerSeason":{"CustomD365FantasyPoints":107,"ScoringDetails":[{"GameKey":"201410132","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":1,"ScoringType":"FieldGoalMade","Length":52,"ScoringDetailID":369620,"PlayerGameID":10943554},{"GameKey":"201410132","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":1,"ScoringType":"FieldGoalMade","Length":46,"ScoringDetailID":369621,"PlayerGameID":10943554},{"GameKey":"201410220","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":2,"ScoringType":"FieldGoalMissed","Length":48,"ScoringDetailID":385523,"PlayerGameID":11095837},{"GameKey":"201410322","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":3,"ScoringType":"FieldGoalMade","Length":25,"ScoringDetailID":392875,"PlayerGameID":11310930},{"GameKey":"201410322","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":3,"ScoringType":"FieldGoalMade","Length":30,"ScoringDetailID":392876,"PlayerGameID":11310930},{"GameKey":"201410322","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":3,"ScoringType":"FieldGoalMade","Length":40,"ScoringDetailID":392877,"PlayerGameID":11310930},{"GameKey":"201410420","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":4,"ScoringType":"FieldGoalMissed","Length":49,"ScoringDetailID":394191,"PlayerGameID":11527904},{"GameKey":"201410420","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":4,"ScoringType":"FieldGoalMade","Length":18,"ScoringDetailID":394199,"PlayerGameID":11527904},{"GameKey":"201410420","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":4,"ScoringType":"FieldGoalMade","Length":41,"ScoringDetailID":394200,"PlayerGameID":11527904},{"GameKey":"201410420","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":4,"ScoringType":"FieldGoalMade","Length":55,"ScoringDetailID":394205,"PlayerGameID":11527904},{"GameKey":"201410420","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":4,"ScoringType":"FieldGoalMade","Length":33,"ScoringDetailID":394206,"PlayerGameID":11527904},{"GameKey":"201410512","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":5,"ScoringType":"FieldGoalMade","Length":26,"ScoringDetailID":395736,"PlayerGameID":11641592},{"GameKey":"201410620","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":6,"ScoringType":"FieldGoalMade","Length":40,"ScoringDetailID":402330,"PlayerGameID":11837169},{"GameKey":"201410704","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":7,"ScoringType":"FieldGoalMade","Length":40,"ScoringDetailID":403441,"PlayerGameID":12078268},{"GameKey":"201410704","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":7,"ScoringType":"FieldGoalMade","Length":55,"ScoringDetailID":403447,"PlayerGameID":12078268},{"GameKey":"201410704","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":7,"ScoringType":"FieldGoalMade","Length":33,"ScoringDetailID":403448,"PlayerGameID":12078268},{"GameKey":"201410833","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":8,"ScoringType":"FieldGoalMissed","Length":56,"ScoringDetailID":405767,"PlayerGameID":12273435},{"GameKey":"201410833","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":8,"ScoringType":"FieldGoalMade","Length":46,"ScoringDetailID":405768,"PlayerGameID":12273435},{"GameKey":"201410833","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":8,"ScoringType":"FieldGoalMade","Length":38,"ScoringDetailID":405775,"PlayerGameID":12273435},{"GameKey":"201411106","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":11,"ScoringType":"FieldGoalMissed","Length":38,"ScoringDetailID":411231,"PlayerGameID":12975299},{"GameKey":"201411106","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":11,"ScoringType":"FieldGoalMade","Length":50,"ScoringDetailID":411233,"PlayerGameID":12975299},{"GameKey":"201411106","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":11,"ScoringType":"FieldGoalMade","Length":26,"ScoringDetailID":411242,"PlayerGameID":12975299},{"GameKey":"201411220","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":12,"ScoringType":"FieldGoalMade","Length":39,"ScoringDetailID":413558,"PlayerGameID":13149430},{"GameKey":"201411220","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":12,"ScoringType":"FieldGoalMade","Length":51,"ScoringDetailID":413559,"PlayerGameID":13149430},{"GameKey":"201411320","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":13,"ScoringType":"FieldGoalMade","Length":39,"ScoringDetailID":416689,"PlayerGameID":13369802},{"GameKey":"201411420","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":14,"ScoringType":"FieldGoalMissed","Length":39,"ScoringDetailID":419368,"PlayerGameID":13556078},{"GameKey":"201411420","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":14,"ScoringType":"FieldGoalMissed","Length":56,"ScoringDetailID":419369,"PlayerGameID":13556078},{"GameKey":"201411420","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":14,"ScoringType":"FieldGoalMade","Length":20,"ScoringDetailID":419381,"PlayerGameID":13556078},{"GameKey":"201411511","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":15,"ScoringType":"FieldGoalMissed","Length":53,"ScoringDetailID":421514,"PlayerGameID":13743945},{"GameKey":"201411511","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":15,"ScoringType":"FieldGoalMissed","Length":26,"ScoringDetailID":421515,"PlayerGameID":13743945},{"GameKey":"201411511","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":15,"ScoringType":"FieldGoalMissed","Length":68,"ScoringDetailID":421516,"PlayerGameID":13743945},{"GameKey":"201411619","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":16,"ScoringType":"FieldGoalMade","Length":18,"ScoringDetailID":424329,"PlayerGameID":13942391},{"GameKey":"201411619","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":16,"ScoringType":"FieldGoalMade","Length":33,"ScoringDetailID":424333,"PlayerGameID":13942391},{"GameKey":"201411720","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":17,"ScoringType":"FieldGoalMade","Length":37,"ScoringDetailID":426492,"PlayerGameID":14153269},{"GameKey":"201411720","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":17,"ScoringType":"FieldGoalMade","Length":44,"ScoringDetailID":426497,"PlayerGameID":14153269}],"PlayerID":14463,"SeasonType":1,"Season":2014,"Team":"MIN","Number":3,"Name":"Blair Walsh","Position":"K","PositionCategory":"ST","Activated":16,"Played":16,"Started":0,"PassingAttempts":0,"PassingCompletions":0,"PassingYards":0,"PassingCompletionPercentage":0,"PassingYardsPerAttempt":0,"PassingYardsPerCompletion":0,"PassingTouchdowns":0,"PassingInterceptions":0,"PassingRating":0,"PassingLong":0,"PassingSacks":0,"PassingSackYards":0,"RushingAttempts":0,"RushingYards":0,"RushingYardsPerAttempt":0,"RushingTouchdowns":0,"RushingLong":0,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":0,"FumblesLost":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":0,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":35,"FieldGoalsMade":26,"FieldGoalsLongestMade":55,"ExtraPointsMade":29,"TwoPointConversionPasses":0,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":107,"FantasyPointsPPR":107,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":0,"FantasyPosition":"K","FieldGoalPercentage":74.3,"PlayerSeasonID":14248877,"FumblesOwnRecoveries":0,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":29,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":2,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":0,"ShortName":"B.Walsh","SafetiesAllowed":0,"Temperature":53,"Humidity":58,"WindSpeed":5,"OffensiveSnapsPlayed":0,"DefensiveSnapsPlayed":0,"SpecialTeamsSnapsPlayed":140,"OffensiveTeamSnaps":1024,"DefensiveTeamSnaps":1082,"SpecialTeamsTeamSnaps":309,"AuctionValue":null,"AuctionValuePPR":null}}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"PlayerID":3,"Team":"TEN","Number":88,"FirstName":"Craig","LastName":"Stevens","Position":"TE","Status":"Active","Height":"6'3\"","Weight":268,"BirthDate":"1984-09-01T00:00:00","College":"California","Experience":8,"FantasyPosition":"TE","Active":true,"PositionCategory":"OFF","Name":"Craig Stevens","Age":30,"ExperienceString":"8th Season","BirthDateString":"September 1, 1984","PhotoUrl":"http:\/\/static.fantasydata.com\/headshots\/nfl\/low-res\/3.png","ByeWeek":4,"UpcomingGameOpponent":"TB","UpcomingGameWeek":1,"ShortName":"C.Stevens","AverageDraftPosition":null,"DepthPositionCategory":"OFF","DepthPosition":"TE","DepthOrder":2,"DepthDisplayOrder":8,"CurrentTeam":"TEN","CollegeDraftTeam":"TEN","CollegeDraftYear":2008,"CollegeDraftRound":3,"CollegeDraftPick":85,"IsUndraftedFreeAgent":false,"HeightFeet":6,"HeightInches":3,"UpcomingOpponentRank":25,"UpcomingOpponentPositionRank":15,"CurrentStatus":"Healthy","UpcomingSalary":null},{"PlayerID":18,"Team":"PHI","Number":4,"FirstName":"GJ","LastName":"Kinne","Position":"QB","Status":"Active","Height":"6'2\"","Weight":234,"BirthDate":"1988-12-01T00:00:00","College":"Tulsa","Experience":1,"FantasyPosition":"QB","Active":true,"PositionCategory":"OFF","Name":"GJ Kinne","Age":26,"ExperienceString":"1st Season","BirthDateString":"December 1, 1988","PhotoUrl":"http:\/\/static.fantasydata.com\/headshots\/nfl\/low-res\/18.png","ByeWeek":8,"UpcomingGameOpponent":"ATL","UpcomingGameWeek":1,"ShortName":"G.Kinne","AverageDraftPosition":null,"DepthPositionCategory":null,"DepthPosition":null,"DepthOrder":null,"DepthDisplayOrder":null,"CurrentTeam":"PHI","CollegeDraftTeam":"NYJ","CollegeDraftYear":2012,"CollegeDraftRound":null,"CollegeDraftPick":null,"IsUndraftedFreeAgent":true,"HeightFeet":6,"HeightInches":2,"UpcomingOpponentRank":27,"UpcomingOpponentPositionRank":23,"CurrentStatus":"Healthy","UpcomingSalary":null},{"PlayerID":40,"Team":"ARI","Number":50,"FirstName":"Larry","LastName":"Foote","Position":"ILB","Status":"Inactive","Height":"6'1\"","Weight":239,"BirthDate":"1980-06-12T00:00:00","College":"Michigan","Experience":13,"FantasyPosition":"LB","Active":false,"PositionCategory":"DEF","Name":"Larry Foote","Age":35,"ExperienceString":"13th Season","BirthDateString":"June 12, 1980","PhotoUrl":"http:\/\/static.fantasydata.com\/headshots\/nfl\/low-res\/40.png","ByeWeek":null,"UpcomingGameOpponent":"CAR","UpcomingGameWeek":0,"ShortName":"L.Foote","AverageDraftPosition":null,"DepthPositionCategory":null,"DepthPosition":null,"DepthOrder":null,"DepthDisplayOrder":null,"CurrentTeam":null,"CollegeDraftTeam":"PIT","CollegeDraftYear":2002,"CollegeDraftRound":4,"CollegeDraftPick":128,"IsUndraftedFreeAgent":false,"HeightFeet":6,"HeightInches":1,"UpcomingOpponentRank":17,"UpcomingOpponentPositionRank":null,"CurrentStatus":"Free Agent","UpcomingSalary":null},{"PlayerID":127,"Team":"BAL","Number":53,"FirstName":"Jeremy","LastName":"Zuttah","Position":"C","Status":"Active","Height":"6'3\"","Weight":308,"BirthDate":"1986-06-01T00:00:00","College":"Rutgers","Experience":8,"FantasyPosition":"OL","Active":true,"PositionCategory":"OFF","Name":"Jeremy Zuttah","Age":29,"ExperienceString":"8th Season","BirthDateString":"June 1, 1986","PhotoUrl":"http:\/\/static.fantasydata.com\/headshots\/nfl\/low-res\/127.png","ByeWeek":9,"UpcomingGameOpponent":"DEN","UpcomingGameWeek":1,"ShortName":"J.Zuttah","AverageDraftPosition":null,"DepthPositionCategory":"OFF","DepthPosition":"C","DepthOrder":1,"DepthDisplayOrder":5,"CurrentTeam":"BAL","CollegeDraftTeam":"TB","CollegeDraftYear":2008,"CollegeDraftRound":3,"CollegeDraftPick":83,"IsUndraftedFreeAgent":false,"HeightFeet":6,"HeightInches":3,"UpcomingOpponentRank":7,"UpcomingOpponentPositionRank":null,"CurrentStatus":"Healthy","UpcomingSalary":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
{"PlayerID":7328,"Team":"DEN","Number":18,"FirstName":"Peyton","LastName":"Manning","Position":"QB","Status":"Active","Height":"6'5\"","Weight":230,"BirthDate":"1976-03-24T00:00:00","College":"Tennessee","Experience":18,"FantasyPosition":"QB","Active":true,"PositionCategory":"OFF","Name":"Peyton Manning","Age":39,"ExperienceString":"18th Season","BirthDateString":"March 24, 1976","PhotoUrl":"http://static.fantasydata.com/headshots/nfl/low-res/7328.png","ByeWeek":7,"UpcomingGameOpponent":"BAL","UpcomingGameWeek":1,"ShortName":"P.Manning","AverageDraftPosition":36.9,"DepthPositionCategory":"OFF","DepthPosition":"QB","DepthOrder":1,"DepthDisplayOrder":10,"CurrentTeam":"DEN","CollegeDraftTeam":"IND","CollegeDraftYear":1998,"CollegeDraftRound":1,"CollegeDraftPick":1,"IsUndraftedFreeAgent":false,"HeightFeet":6,"HeightInches":5,"UpcomingOpponentRank":11,"UpcomingOpponentPositionRank":16,"CurrentStatus":"Healthy","UpcomingSalary":null,"InjuryStatus":null,"LatestNews":[{"NewsID":34904,"Title":"Texans/Broncos had 'preliminary' Peyton talks","Updated":"2015-06-24T13:25:00","Url":"http://www.rotoworld.com/player/nfl/1493/peyton-manning","Content":"A source told Sports Radio 610 in Houston that the Texans and Broncos had "very preliminary" discussions regarding a trade that would have sent Peyton Manning to the Texans early this offseason.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"DEN","PlayerID":7328},{"NewsID":28686,"Title":"Peyton Manning passes physical, signs deal","Updated":"2015-03-05T12:43:00","Url":"http://www.rotoworld.com/player/nfl/1493/peyton-manning","Content":"Peyton Manning is officially returning to the Broncos in 2015.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"DEN","PlayerID":7328},{"NewsID":28672,"Title":"Peyton Manning agrees to a $4 million pay cut","Updated":"2015-03-04T15:12:00","Url":"http://www.rotoworld.com/player/nfl/1493/peyton-manning","Content":"Peyton Manning has agreed to take a $4 million pay cut, reducing his salary from $19 million to $15 million.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"DEN","PlayerID":7328},{"NewsID":26765,"Title":"Broncos, Manning working on revised contract","Updated":"2015-02-25T20:30:00","Url":"http://www.rotoworld.com/player/nfl/1493/peyton-manning","Content":"The Broncos are working on a revised contract with Peyton Manning.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"DEN","PlayerID":7328},{"NewsID":26696,"Title":"Kubiak: 'No doubt' Peyton will be Broncos QB","Updated":"2015-02-18T11:01:00","Url":"http://www.rotoworld.com/player/nfl/1493/peyton-manning","Content":"Coach Gary Kubiak said Wednesday at the Combine that there is "no doubt" Peyton Manning will be the Broncos' quarterback in 2015.","Source":"NBCSports.com","TermsOfUse":"NBCSports.com feeds in the RSS format are provided free of charge for use by individuals for personal, non-commercial uses. More details here: http://fantasydata.com/resources/rotoworld-rss-feed.aspx","Team":"DEN","PlayerID":7328}],"PlayerSeason":{"CustomD365FantasyPoints":312.68,"ScoringDetails":[{"GameKey":"201410110","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":1,"ScoringType":"PassingTouchdown","Length":3,"ScoringDetailID":369766,"PlayerGameID":11015779},{"GameKey":"201410110","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":1,"ScoringType":"PassingTouchdown","Length":35,"ScoringDetailID":369771,"PlayerGameID":11015779},{"GameKey":"201410110","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":1,"ScoringType":"PassingTouchdown","Length":5,"ScoringDetailID":369775,"PlayerGameID":11015779},{"GameKey":"201410210","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":2,"ScoringType":"PassingTouchdown","Length":4,"ScoringDetailID":385590,"PlayerGameID":11141271},{"GameKey":"201410210","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":2,"ScoringType":"PassingTouchdown","Length":4,"ScoringDetailID":385594,"PlayerGameID":11141271},{"GameKey":"201410210","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":2,"ScoringType":"PassingTouchdown","Length":12,"ScoringDetailID":385596,"PlayerGameID":11141271},{"GameKey":"201410330","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":3,"ScoringType":"PassingTouchdown","Length":3,"ScoringDetailID":392902,"PlayerGameID":11345183},{"GameKey":"201410330","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":3,"ScoringType":"PassingTouchdown","Length":26,"ScoringDetailID":392905,"PlayerGameID":11345183},{"GameKey":"201410510","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":5,"ScoringType":"PassingTouchdown","Length":7,"ScoringDetailID":395846,"PlayerGameID":11676245},{"GameKey":"201410510","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":5,"ScoringType":"PassingTouchdown","Length":31,"ScoringDetailID":395849,"PlayerGameID":11676245},{"GameKey":"201410510","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":5,"ScoringType":"PassingTouchdown","Length":86,"ScoringDetailID":395852,"PlayerGameID":11676245},{"GameKey":"201410510","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":5,"ScoringType":"PassingTouchdown","Length":12,"ScoringDetailID":395856,"PlayerGameID":11676245},{"GameKey":"201410624","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":6,"ScoringType":"PassingTouchdown","Length":1,"ScoringDetailID":402335,"PlayerGameID":11836729},{"GameKey":"201410624","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":6,"ScoringType":"PassingTouchdown","Length":22,"ScoringDetailID":402337,"PlayerGameID":11836729},{"GameKey":"201410624","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":6,"ScoringType":"PassingTouchdown","Length":4,"ScoringDetailID":402339,"PlayerGameID":11836729},{"GameKey":"201410710","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":7,"ScoringType":"PassingTouchdown","Length":3,"ScoringDetailID":403566,"PlayerGameID":12158689},{"GameKey":"201410710","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":7,"ScoringType":"PassingTouchdown","Length":39,"ScoringDetailID":403568,"PlayerGameID":12158689},{"GameKey":"201410710","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":7,"ScoringType":"PassingTouchdown","Length":8,"ScoringDetailID":403571,"PlayerGameID":12158689},{"GameKey":"201410710","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":7,"ScoringType":"PassingTouchdown","Length":40,"ScoringDetailID":403575,"PlayerGameID":12158689},{"GameKey":"201410810","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":8,"ScoringType":"PassingTouchdown","Length":2,"ScoringDetailID":405669,"PlayerGameID":12227556},{"GameKey":"201410810","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":8,"ScoringType":"PassingTouchdown","Length":31,"ScoringDetailID":405673,"PlayerGameID":12227556},{"GameKey":"201410810","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":8,"ScoringType":"PassingTouchdown","Length":3,"ScoringDetailID":405675,"PlayerGameID":12227556},{"GameKey":"201410921","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":9,"ScoringType":"PassingTouchdown","Length":18,"ScoringDetailID":407840,"PlayerGameID":12560796},{"GameKey":"201410921","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":9,"ScoringType":"PassingTouchdown","Length":15,"ScoringDetailID":407845,"PlayerGameID":12560796},{"GameKey":"201411025","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":10,"ScoringType":"PassingTouchdown","Length":51,"ScoringDetailID":409712,"PlayerGameID":12802228},{"GameKey":"201411025","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":10,"ScoringType":"PassingTouchdown","Length":32,"ScoringDetailID":409714,"PlayerGameID":12802228},{"GameKey":"201411025","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":10,"ScoringType":"PassingTouchdown","Length":10,"ScoringDetailID":409716,"PlayerGameID":12802228},{"GameKey":"201411025","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":10,"ScoringType":"PassingTouchdown","Length":32,"ScoringDetailID":409718,"PlayerGameID":12802228},{"GameKey":"201411025","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":10,"ScoringType":"PassingTouchdown","Length":15,"ScoringDetailID":409720,"PlayerGameID":12802228},{"GameKey":"201411132","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":11,"ScoringType":"PassingTouchdown","Length":42,"ScoringDetailID":411307,"PlayerGameID":12975392},{"GameKey":"201411210","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":5,"ScoringDetailID":413620,"PlayerGameID":13149944},{"GameKey":"201411210","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":14,"ScoringDetailID":413624,"PlayerGameID":13149944},{"GameKey":"201411210","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":5,"ScoringDetailID":413628,"PlayerGameID":13149944},{"GameKey":"201411210","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":2,"ScoringDetailID":413631,"PlayerGameID":13149944},{"GameKey":"201411316","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":13,"ScoringType":"PassingTouchdown","Length":23,"ScoringDetailID":416754,"PlayerGameID":13393879},{"GameKey":"201411316","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":13,"ScoringType":"PassingTouchdown","Length":15,"ScoringDetailID":416756,"PlayerGameID":13393879},{"GameKey":"201411529","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":15,"ScoringType":"PassingTouchdown","Length":28,"ScoringDetailID":421577,"PlayerGameID":13743587},{"GameKey":"201411607","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":16,"ScoringType":"PassingTouchdown","Length":4,"ScoringDetailID":424449,"PlayerGameID":14013059},{"GameKey":"201411607","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":16,"ScoringType":"PassingTouchdown","Length":5,"ScoringDetailID":424451,"PlayerGameID":14013059}],"PlayerID":7328,"SeasonType":1,"Season":2014,"Team":"DEN","Number":18,"Name":"Peyton Manning","Position":"QB","PositionCategory":"OFF","Activated":16,"Played":16,"Started":16,"PassingAttempts":597,"PassingCompletions":395,"PassingYards":4727,"PassingCompletionPercentage":66.2,"PassingYardsPerAttempt":7.9,"PassingYardsPerCompletion":12.0,"PassingTouchdowns":39,"PassingInterceptions":15,"PassingRating":101.52,"PassingLong":86,"PassingSacks":17,"PassingSackYards":118,"RushingAttempts":24,"RushingYards":-24,"RushingYardsPerAttempt":-1,"RushingTouchdowns":0,"RushingLong":4,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":5,"FumblesLost":2,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0.0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":-11,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":2,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":0,"FieldGoalsMade":0,"FieldGoalsLongestMade":0,"ExtraPointsMade":0,"TwoPointConversionPasses":2,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":312.68,"FantasyPointsPPR":312.68,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":0,"FantasyPosition":"QB","FieldGoalPercentage":0,"PlayerSeasonID":14248399,"FumblesOwnRecoveries":1,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":1,"ShortName":"P.Manning","SafetiesAllowed":0,"Temperature":59,"Humidity":40,"WindSpeed":7,"OffensiveSnapsPlayed":1092,"DefensiveSnapsPlayed":0,"SpecialTeamsSnapsPlayed":0,"OffensiveTeamSnaps":1128,"DefensiveTeamSnaps":1071,"SpecialTeamsTeamSnaps":406,"AuctionValue":null,"AuctionValuePPR":null}}
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"CustomD365FantasyPoints":0,"ScoringDetails":[],"GameKey":"201411314","PlayerID":7295,"SeasonType":1,"Season":2014,"GameDate":"2014-11-30T13:00:00","Week":13,"Team":"WAS","Opponent":"IND","HomeOrAway":"AWAY","Number":72,"Name":"Stephen Bowen","Position":"DE","PositionCategory":"DEF","Activated":0,"Played":0,"Started":0,"PassingAttempts":0,"PassingCompletions":0,"PassingYards":0,"PassingCompletionPercentage":0,"PassingYardsPerAttempt":0,"PassingYardsPerCompletion":0,"PassingTouchdowns":0,"PassingInterceptions":0,"PassingRating":0,"PassingLong":0,"PassingSacks":0,"PassingSackYards":0,"RushingAttempts":0,"RushingYards":0,"RushingYardsPerAttempt":0,"RushingTouchdowns":0,"RushingLong":0,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":0,"FumblesLost":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":0,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":0,"FieldGoalsMade":0,"FieldGoalsLongestMade":0,"ExtraPointsMade":0,"TwoPointConversionPasses":0,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":0,"FantasyPointsPPR":0,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":0,"FantasyPosition":"DL","FieldGoalPercentage":0,"PlayerGameID":13370582,"FumblesOwnRecoveries":0,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":0,"ShortName":"S.Bowen","PlayingSurface":"Dome","IsGameOver":true,"SafetiesAllowed":0,"Stadium":"Lucas Oil Stadium","Temperature":63,"Humidity":69,"WindSpeed":25,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"OffensiveSnapsPlayed":0,"DefensiveSnapsPlayed":0,"SpecialTeamsSnapsPlayed":0,"OffensiveTeamSnaps":80,"DefensiveTeamSnaps":51,"SpecialTeamsTeamSnaps":23,"VictivSalary":null},{"CustomD365FantasyPoints":0,"ScoringDetails":[],"GameKey":"201411314","PlayerID":12279,"SeasonType":1,"Season":2014,"GameDate":"2014-11-30T13:00:00","Week":13,"Team":"WAS","Opponent":"IND","HomeOrAway":"AWAY","Number":74,"Name":"Tyler Polumbus","Position":"OT","PositionCategory":"OFF","Activated":0,"Played":0,"Started":0,"PassingAttempts":0,"PassingCompletions":0,"PassingYards":0,"PassingCompletionPercentage":0,"PassingYardsPerAttempt":0,"PassingYardsPerCompletion":0,"PassingTouchdowns":0,"PassingInterceptions":0,"PassingRating":0,"PassingLong":0,"PassingSacks":0,"PassingSackYards":0,"RushingAttempts":0,"RushingYards":0,"RushingYardsPerAttempt":0,"RushingTouchdowns":0,"RushingLong":0,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":0,"FumblesLost":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":0,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":0,"FieldGoalsMade":0,"FieldGoalsLongestMade":0,"ExtraPointsMade":0,"TwoPointConversionPasses":0,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":0,"FantasyPointsPPR":0,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":0,"FantasyPosition":"OL","FieldGoalPercentage":0,"PlayerGameID":13370583,"FumblesOwnRecoveries":0,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":0,"ShortName":"T.Polumbus","PlayingSurface":"Dome","IsGameOver":true,"SafetiesAllowed":0,"Stadium":"Lucas Oil Stadium","Temperature":63,"Humidity":69,"WindSpeed":25,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"OffensiveSnapsPlayed":0,"DefensiveSnapsPlayed":0,"SpecialTeamsSnapsPlayed":0,"OffensiveTeamSnaps":80,"DefensiveTeamSnaps":51,"SpecialTeamsTeamSnaps":23,"VictivSalary":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
{"CustomD365FantasyPoints":18.1,"ScoringDetails":[],"GameKey":"201411210","PlayerID":7328,"SeasonType":1,"Season":2014,"GameDate":"2014-11-23T16:25:00","Week":12,"Team":"DEN","Opponent":"MIA","HomeOrAway":"HOME","Number":18,"Name":"Peyton Manning","Position":"QB","PositionCategory":"OFF","Activated":1,"Played":1,"Started":1,"PassingAttempts":40,"PassingCompletions":27,"PassingYards":305,"PassingCompletionPercentage":67.5,"PassingYardsPerAttempt":7.6,"PassingYardsPerCompletion":11.3,"PassingTouchdowns":2,"PassingInterceptions":1,"PassingRating":96.35,"PassingLong":0,"PassingSacks":0,"PassingSackYards":0,"RushingAttempts":1,"RushingYards":-1,"RushingYardsPerAttempt":-1,"RushingTouchdowns":0,"RushingLong":0,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":0,"FumblesLost":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":0,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":0,"FieldGoalsMade":0,"FieldGoalsLongestMade":0,"ExtraPointsMade":0,"TwoPointConversionPasses":0,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":18.1,"FantasyPointsPPR":18.1,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":0,"FantasyPosition":"QB","FieldGoalPercentage":0,"PlayerGameID":0,"FumblesOwnRecoveries":0,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":0,"ShortName":"P.Manning","PlayingSurface":"Grass","IsGameOver":false,"SafetiesAllowed":0,"Stadium":null,"Temperature":null,"Humidity":null,"WindSpeed":null,"FanDuelSalary":9900,"DraftKingsSalary":null,"FantasyDataSalary":9900,"OffensiveSnapsPlayed":null,"DefensiveSnapsPlayed":null,"SpecialTeamsSnapsPlayed":null,"OffensiveTeamSnaps":null,"DefensiveTeamSnaps":null,"SpecialTeamsTeamSnaps":null,"VictivSalary":null}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"CustomD365FantasyPoints":28.08,"ScoringDetails":[{"GameKey":"201411210","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":5,"ScoringDetailID":413620,"PlayerGameID":13149944},{"GameKey":"201411210","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":14,"ScoringDetailID":413624,"PlayerGameID":13149944},{"GameKey":"201411210","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":5,"ScoringDetailID":413628,"PlayerGameID":13149944},{"GameKey":"201411210","SeasonType":1,"PlayerID":7328,"Team":"DEN","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":2,"ScoringDetailID":413631,"PlayerGameID":13149944}],"GameKey":"201411210","PlayerID":7328,"SeasonType":1,"Season":2014,"GameDate":"2014-11-23T16:25:00","Week":12,"Team":"DEN","Opponent":"MIA","HomeOrAway":"HOME","Number":18,"Name":"Peyton Manning","Position":"QB","PositionCategory":"OFF","Activated":1,"Played":1,"Started":1,"PassingAttempts":35,"PassingCompletions":28,"PassingYards":257,"PassingCompletionPercentage":80,"PassingYardsPerAttempt":7.3,"PassingYardsPerCompletion":9.2,"PassingTouchdowns":4,"PassingInterceptions":0,"PassingRating":135.36,"PassingLong":35,"PassingSacks":1,"PassingSackYards":8,"RushingAttempts":2,"RushingYards":-2,"RushingYardsPerAttempt":-1,"RushingTouchdowns":0,"RushingLong":-1,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":0,"FumblesLost":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":0,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":0,"FieldGoalsMade":0,"FieldGoalsLongestMade":0,"ExtraPointsMade":0,"TwoPointConversionPasses":1,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":28.08,"FantasyPointsPPR":28.08,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":0,"FantasyPosition":"QB","FieldGoalPercentage":0,"PlayerGameID":13149944,"FumblesOwnRecoveries":0,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":0,"ShortName":"P.Manning","PlayingSurface":"Grass","IsGameOver":true,"SafetiesAllowed":0,"Stadium":"Sports Authority Field at Mile High","Temperature":39,"Humidity":36,"WindSpeed":6,"FanDuelSalary":9900,"DraftKingsSalary":null,"FantasyDataSalary":9900,"OffensiveSnapsPlayed":75,"DefensiveSnapsPlayed":0,"SpecialTeamsSnapsPlayed":0,"OffensiveTeamSnaps":75,"DefensiveTeamSnaps":62,"SpecialTeamsTeamSnaps":21,"VictivSalary":null}
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"CustomD365FantasyPoints":0,"ScoringDetails":[],"GameKey":"201411314","PlayerID":7295,"SeasonType":1,"Season":2014,"GameDate":"2014-11-30T13:00:00","Week":13,"Team":"WAS","Opponent":"IND","HomeOrAway":"AWAY","Number":72,"Name":"Stephen Bowen","Position":"DE","PositionCategory":"DEF","Activated":0,"Played":0,"Started":0,"PassingAttempts":0,"PassingCompletions":0,"PassingYards":0,"PassingCompletionPercentage":0,"PassingYardsPerAttempt":0,"PassingYardsPerCompletion":0,"PassingTouchdowns":0,"PassingInterceptions":0,"PassingRating":0,"PassingLong":0,"PassingSacks":0,"PassingSackYards":0,"RushingAttempts":0,"RushingYards":0,"RushingYardsPerAttempt":0,"RushingTouchdowns":0,"RushingLong":0,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":0,"FumblesLost":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":0,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":0,"FieldGoalsMade":0,"FieldGoalsLongestMade":0,"ExtraPointsMade":0,"TwoPointConversionPasses":0,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":0,"FantasyPointsPPR":0,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":0,"FantasyPosition":"DL","FieldGoalPercentage":0,"PlayerGameID":13370582,"FumblesOwnRecoveries":0,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":0,"ShortName":"S.Bowen","PlayingSurface":"Dome","IsGameOver":true,"SafetiesAllowed":0,"Stadium":"Lucas Oil Stadium","Temperature":63,"Humidity":69,"WindSpeed":25,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"OffensiveSnapsPlayed":0,"DefensiveSnapsPlayed":0,"SpecialTeamsSnapsPlayed":0,"OffensiveTeamSnaps":80,"DefensiveTeamSnaps":51,"SpecialTeamsTeamSnaps":23,"VictivSalary":null},{"CustomD365FantasyPoints":0,"ScoringDetails":[],"GameKey":"201411314","PlayerID":12279,"SeasonType":1,"Season":2014,"GameDate":"2014-11-30T13:00:00","Week":13,"Team":"WAS","Opponent":"IND","HomeOrAway":"AWAY","Number":74,"Name":"Tyler Polumbus","Position":"OT","PositionCategory":"OFF","Activated":0,"Played":0,"Started":0,"PassingAttempts":0,"PassingCompletions":0,"PassingYards":0,"PassingCompletionPercentage":0,"PassingYardsPerAttempt":0,"PassingYardsPerCompletion":0,"PassingTouchdowns":0,"PassingInterceptions":0,"PassingRating":0,"PassingLong":0,"PassingSacks":0,"PassingSackYards":0,"RushingAttempts":0,"RushingYards":0,"RushingYardsPerAttempt":0,"RushingTouchdowns":0,"RushingLong":0,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":0,"FumblesLost":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":0,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":0,"FieldGoalsMade":0,"FieldGoalsLongestMade":0,"ExtraPointsMade":0,"TwoPointConversionPasses":0,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":0,"FantasyPointsPPR":0,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":0,"FantasyPosition":"OL","FieldGoalPercentage":0,"PlayerGameID":13370583,"FumblesOwnRecoveries":0,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":0,"ShortName":"T.Polumbus","PlayingSurface":"Dome","IsGameOver":true,"SafetiesAllowed":0,"Stadium":"Lucas Oil Stadium","Temperature":63,"Humidity":69,"WindSpeed":25,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"OffensiveSnapsPlayed":0,"DefensiveSnapsPlayed":0,"SpecialTeamsSnapsPlayed":0,"OffensiveTeamSnaps":80,"DefensiveTeamSnaps":51,"SpecialTeamsTeamSnaps":23,"VictivSalary":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"CustomD365FantasyPoints":7,"ScoringDetails":[{"GameKey":"201411220","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":12,"ScoringType":"FieldGoalMade","Length":39,"ScoringDetailID":413558,"PlayerGameID":13149430},{"GameKey":"201411220","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2014,"Week":12,"ScoringType":"FieldGoalMade","Length":51,"ScoringDetailID":413559,"PlayerGameID":13149430}],"GameKey":"201411220","PlayerID":14463,"SeasonType":1,"Season":2014,"GameDate":"2014-11-23T13:00:00","Week":12,"Team":"MIN","Opponent":"GB","HomeOrAway":"HOME","Number":3,"Name":"Blair Walsh","Position":"K","PositionCategory":"ST","Activated":1,"Played":1,"Started":0,"PassingAttempts":0,"PassingCompletions":0,"PassingYards":0,"PassingCompletionPercentage":0,"PassingYardsPerAttempt":0,"PassingYardsPerCompletion":0,"PassingTouchdowns":0,"PassingInterceptions":0,"PassingRating":0,"PassingLong":0,"PassingSacks":0,"PassingSackYards":0,"RushingAttempts":0,"RushingYards":0,"RushingYardsPerAttempt":0,"RushingTouchdowns":0,"RushingLong":0,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":0,"FumblesLost":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":0,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":2,"FieldGoalsMade":2,"FieldGoalsLongestMade":51,"ExtraPointsMade":1,"TwoPointConversionPasses":0,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":7,"FantasyPointsPPR":7,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":0,"FantasyPosition":"K","FieldGoalPercentage":100,"PlayerGameID":13149430,"FumblesOwnRecoveries":0,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":1,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":0,"ShortName":"B.Walsh","PlayingSurface":null,"IsGameOver":true,"SafetiesAllowed":0,"Stadium":"TCF Bank Stadium","Temperature":49,"Humidity":50,"WindSpeed":0,"FanDuelSalary":4700,"DraftKingsSalary":null,"FantasyDataSalary":4700,"OffensiveSnapsPlayed":0,"DefensiveSnapsPlayed":0,"SpecialTeamsSnapsPlayed":8,"OffensiveTeamSnaps":68,"DefensiveTeamSnaps":65,"SpecialTeamsTeamSnaps":18,"VictivSalary":null},{"CustomD365FantasyPoints":19.6,"ScoringDetails":[{"GameKey":"201411220","SeasonType":1,"PlayerID":16497,"Team":"MIN","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":5,"ScoringDetailID":413564,"PlayerGameID":13149210},{"GameKey":"201411220","SeasonType":1,"PlayerID":16497,"Team":"MIN","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":22,"ScoringDetailID":413555,"PlayerGameID":13149210}],"GameKey":"201411220","PlayerID":16497,"SeasonType":1,"Season":2014,"GameDate":"2014-11-23T13:00:00","Week":12,"Team":"MIN","Opponent":"GB","HomeOrAway":"HOME","Number":5,"Name":"Teddy Bridgewater","Position":"QB","PositionCategory":"OFF","Activated":1,"Played":1,"Started":1,"PassingAttempts":37,"PassingCompletions":21,"PassingYards":210,"PassingCompletionPercentage":56.8,"PassingYardsPerAttempt":5.7,"PassingYardsPerCompletion":10,"PassingTouchdowns":2,"PassingInterceptions":1,"PassingRating":79.79,"PassingLong":23,"PassingSacks":2,"PassingSackYards":14,"RushingAttempts":5,"RushingYards":32,"RushingYardsPerAttempt":6.4,"RushingTouchdowns":0,"RushingLong":11,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":0,"FumblesLost":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":0,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":0,"FieldGoalsMade":0,"FieldGoalsLongestMade":0,"ExtraPointsMade":0,"TwoPointConversionPasses":1,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":19.6,"FantasyPointsPPR":19.6,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":0,"FantasyPosition":"QB","FieldGoalPercentage":0,"PlayerGameID":13149210,"FumblesOwnRecoveries":0,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":0,"ShortName":"T.Bridgewater","PlayingSurface":null,"IsGameOver":true,"SafetiesAllowed":0,"Stadium":"TCF Bank Stadium","Temperature":49,"Humidity":50,"WindSpeed":0,"FanDuelSalary":6500,"DraftKingsSalary":null,"FantasyDataSalary":6500,"OffensiveSnapsPlayed":68,"DefensiveSnapsPlayed":0,"SpecialTeamsSnapsPlayed":0,"OffensiveTeamSnaps":68,"DefensiveTeamSnaps":65,"SpecialTeamsTeamSnaps":18,"VictivSalary":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"CustomD365FantasyPoints":8,"ScoringDetails":[],"GameKey":"201411220","PlayerID":14463,"SeasonType":1,"Season":2014,"GameDate":"2014-11-23T13:00:00","Week":12,"Team":"MIN","Opponent":"GB","HomeOrAway":"HOME","Number":3,"Name":"Blair Walsh","Position":"K","PositionCategory":"ST","Activated":1,"Played":1,"Started":1,"PassingAttempts":0,"PassingCompletions":0,"PassingYards":0,"PassingCompletionPercentage":0,"PassingYardsPerAttempt":0,"PassingYardsPerCompletion":0,"PassingTouchdowns":0,"PassingInterceptions":0,"PassingRating":0,"PassingLong":0,"PassingSacks":0,"PassingSackYards":0,"RushingAttempts":0,"RushingYards":0,"RushingYardsPerAttempt":0,"RushingTouchdowns":0,"RushingLong":0,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":0,"FumblesLost":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":0,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":2,"FieldGoalsMade":2,"FieldGoalsLongestMade":0,"ExtraPointsMade":2,"TwoPointConversionPasses":0,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":8,"FantasyPointsPPR":8,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":0,"FantasyPosition":"K","FieldGoalPercentage":100,"PlayerGameID":0,"FumblesOwnRecoveries":0,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":2,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":0,"ShortName":"B.Walsh","PlayingSurface":null,"IsGameOver":false,"SafetiesAllowed":0,"Stadium":null,"Temperature":null,"Humidity":null,"WindSpeed":null,"FanDuelSalary":4700,"DraftKingsSalary":null,"FantasyDataSalary":4700,"OffensiveSnapsPlayed":null,"DefensiveSnapsPlayed":null,"SpecialTeamsSnapsPlayed":null,"OffensiveTeamSnaps":null,"DefensiveTeamSnaps":null,"SpecialTeamsTeamSnaps":null,"VictivSalary":null},{"CustomD365FantasyPoints":9.1,"ScoringDetails":[],"GameKey":"201411220","PlayerID":16497,"SeasonType":1,"Season":2014,"GameDate":"2014-11-23T13:00:00","Week":12,"Team":"MIN","Opponent":"GB","HomeOrAway":"HOME","Number":5,"Name":"Teddy Bridgewater","Position":"QB","PositionCategory":"OFF","Activated":1,"Played":1,"Started":1,"PassingAttempts":33,"PassingCompletions":19,"PassingYards":240,"PassingCompletionPercentage":57.6,"PassingYardsPerAttempt":7.3,"PassingYardsPerCompletion":12.6,"PassingTouchdowns":0,"PassingInterceptions":1,"PassingRating":67.74,"PassingLong":0,"PassingSacks":0,"PassingSackYards":0,"RushingAttempts":3,"RushingYards":15,"RushingYardsPerAttempt":5,"RushingTouchdowns":0,"RushingLong":0,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":0,"FumblesLost":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":0,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":0,"FieldGoalsMade":0,"FieldGoalsLongestMade":0,"ExtraPointsMade":0,"TwoPointConversionPasses":0,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":9.1,"FantasyPointsPPR":9.1,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":0,"FantasyPosition":"QB","FieldGoalPercentage":0,"PlayerGameID":0,"FumblesOwnRecoveries":0,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":0,"ShortName":"T.Bridgewater","PlayingSurface":null,"IsGameOver":false,"SafetiesAllowed":0,"Stadium":null,"Temperature":null,"Humidity":null,"WindSpeed":null,"FanDuelSalary":6500,"DraftKingsSalary":null,"FantasyDataSalary":6500,"OffensiveSnapsPlayed":null,"DefensiveSnapsPlayed":null,"SpecialTeamsSnapsPlayed":null,"OffensiveTeamSnaps":null,"DefensiveTeamSnaps":null,"SpecialTeamsTeamSnaps":null,"VictivSalary":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"StadiumDetails":{"StadiumID":31,"Name":"CenturyLink Field","City":"Seattle","State":"WA","Country":"USA","Capacity":67000,"PlayingSurface":"Artificial"},"GameKey":"201410130","SeasonType":1,"Season":2014,"Week":1,"Date":"2014-09-04T20:30:00","AwayTeam":"GB","HomeTeam":"SEA","Channel":null,"PointSpread":-4.5,"OverUnder":47.0,"StadiumID":31},{"StadiumDetails":{"StadiumID":25,"Name":"Georgia Dome","City":"Atlanta","State":"GA","Country":"USA","Capacity":74228,"PlayingSurface":"Dome"},"GameKey":"201410102","SeasonType":1,"Season":2014,"Week":1,"Date":"2014-09-07T13:00:00","AwayTeam":"NO","HomeTeam":"ATL","Channel":null,"PointSpread":3.0,"OverUnder":51.0,"StadiumID":25}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"StadiumID":1,"Name":"Ralph Wilson Stadium","City":"Orchard Park","State":"NY","Country":"USA","Capacity":73079,"PlayingSurface":"Artificial"},{"StadiumID":2,"Name":"Sun Life Stadium","City":"Miami Gardens","State":"FL","Country":"USA","Capacity":76100,"PlayingSurface":"Grass"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"SeasonType":1,"Season":2014,"Conference":"AFC","Division":"East","Team":"NE","Name":"New England Patriots","Wins":12,"Losses":4,"Ties":0,"Percentage":0.75,"PointsFor":468,"PointsAgainst":313,"NetPoints":155,"Touchdowns":52,"DivisionWins":4,"DivisionLosses":2,"ConferenceWins":9,"ConferenceLosses":3},{"SeasonType":1,"Season":2014,"Conference":"AFC","Division":"East","Team":"BUF","Name":"Buffalo Bills","Wins":9,"Losses":7,"Ties":0,"Percentage":0.563,"PointsFor":343,"PointsAgainst":289,"NetPoints":54,"Touchdowns":34,"DivisionWins":4,"DivisionLosses":2,"ConferenceWins":5,"ConferenceLosses":7}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"StadiumDetails":{"StadiumID":29,"Name":"University of Phoenix Stadium","City":"Glendale","State":"AZ","Country":"USA","Capacity":63400,"PlayingSurface":"Dome"},"Key":"ARI","TeamID":1,"PlayerID":1,"City":"Arizona","Name":"Cardinals","Conference":"NFC","Division":"West","FullName":"Arizona Cardinals","StadiumID":29,"ByeWeek":9,"AverageDraftPosition":135.2,"AverageDraftPositionPPR":141.4,"HeadCoach":"Bruce Arians","OffensiveCoordinator":"Harold Goodwin","DefensiveCoordinator":"James Bettcher","SpecialTeamsCoach":"Amos Jones","OffensiveScheme":"2TE","DefensiveScheme":"3-4","UpcomingSalary":null,"UpcomingOpponentRank":15,"UpcomingOpponentPositionRank":15},{"StadiumDetails":{"StadiumID":25,"Name":"Georgia Dome","City":"Atlanta","State":"GA","Country":"USA","Capacity":74228,"PlayingSurface":"Dome"},"Key":"ATL","TeamID":2,"PlayerID":2,"City":"Atlanta","Name":"Falcons","Conference":"NFC","Division":"South","FullName":"Atlanta Falcons","StadiumID":25,"ByeWeek":10,"AverageDraftPosition":null,"AverageDraftPositionPPR":null,"HeadCoach":"Dan Quinn","OffensiveCoordinator":"Kyle Shanahan","DefensiveCoordinator":"Richard Smith","SpecialTeamsCoach":"Keith Armstrong","OffensiveScheme":"3WR","DefensiveScheme":"4-3","UpcomingSalary":null,"UpcomingOpponentRank":17,"UpcomingOpponentPositionRank":17}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"StadiumDetails":{"StadiumID":7,"Name":"M&T Bank Stadium","City":"Baltimore","State":"MD","Country":"USA","Capacity":71008,"PlayingSurface":"Artificial"},"Key":"BAL","TeamID":3,"PlayerID":36,"City":"Baltimore","Name":"Ravens","Conference":"AFC","Division":"North","FullName":"Baltimore Ravens","StadiumID":7,"ByeWeek":9,"AverageDraftPosition":166.9,"AverageDraftPositionPPR":166.9,"HeadCoach":"John Harbaugh","OffensiveCoordinator":"Marc Trestman","DefensiveCoordinator":"Dean Pees","SpecialTeamsCoach":"Jerry Rosburg","OffensiveScheme":"2TE","DefensiveScheme":"3-4","UpcomingSalary":null,"UpcomingOpponentRank":2,"UpcomingOpponentPositionRank":2},{"StadiumDetails":{"StadiumID":1,"Name":"Ralph Wilson Stadium","City":"Orchard Park","State":"NY","Country":"USA","Capacity":73079,"PlayingSurface":"Artificial"},"Key":"BUF","TeamID":4,"PlayerID":37,"City":"Buffalo","Name":"Bills","Conference":"AFC","Division":"East","FullName":"Buffalo Bills","StadiumID":1,"ByeWeek":8,"AverageDraftPosition":107.9,"AverageDraftPositionPPR":112.3,"HeadCoach":"Rex Ryan","OffensiveCoordinator":"Greg Roman","DefensiveCoordinator":"Dennis Thurman","SpecialTeamsCoach":"","OffensiveScheme":"3WR","DefensiveScheme":"4-3","UpcomingSalary":null,"UpcomingOpponentRank":18,"UpcomingOpponentPositionRank":18}]
|
@@ -0,0 +1 @@
|
|
1
|
+
16
|
@@ -0,0 +1 @@
|
|
1
|
+
4
|
@@ -0,0 +1 @@
|
|
1
|
+
9
|
data/spec/helper.rb
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
require "codeclimate-test-reporter"
|
2
|
+
CodeClimate::TestReporter.start
|
3
|
+
|
4
|
+
require 'fantasydata'
|
5
|
+
require 'rspec'
|
6
|
+
require 'timecop'
|
7
|
+
require 'webmock/rspec'
|
8
|
+
|
9
|
+
RSpec.configure do |config|
|
10
|
+
config.expect_with :rspec do |c|
|
11
|
+
c.syntax = :expect
|
12
|
+
end
|
13
|
+
|
14
|
+
# whitelist codeclimate.com so test coverage can be reported
|
15
|
+
config.after(:suite) do
|
16
|
+
WebMock.disable_net_connect!(:allow => 'codeclimate.com')
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def new_test_client
|
21
|
+
client = Fantasydata::Client.new.configure { |d| d.api_key = "API" }
|
22
|
+
#Param encoder is being set here because webmock expects params encodeded a certain way
|
23
|
+
#Normally, you won't set this option, it's already configured for Fantasydata in lib/echowrap/default.rb
|
24
|
+
client.connection_options[:request][:params_encoder] = Faraday::NestedParamsEncoder
|
25
|
+
client
|
26
|
+
end
|
27
|
+
|
28
|
+
def a_get(path)
|
29
|
+
a_request(:get, Fantasydata::Default::ENDPOINT + path)
|
30
|
+
end
|
31
|
+
|
32
|
+
def stub_get(path)
|
33
|
+
stub_http_request(:get, Fantasydata::Default::ENDPOINT + path)
|
34
|
+
end
|
35
|
+
|
36
|
+
def fixture_path
|
37
|
+
File.expand_path("../fixtures", __FILE__)
|
38
|
+
end
|
39
|
+
|
40
|
+
def fixture(file)
|
41
|
+
File.new(fixture_path + '/' + file)
|
42
|
+
end
|
metadata
ADDED
@@ -0,0 +1,242 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fantasydata
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Ryan Drost
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2015-08-01 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: faraday
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0.9'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.9'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: multi_json
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '1.0'
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '1.0'
|
46
|
+
description: Gem to wrap www.fantasydata.com API
|
47
|
+
email:
|
48
|
+
- ryan.s.drost@gmail.com
|
49
|
+
executables: []
|
50
|
+
extensions: []
|
51
|
+
extra_rdoc_files: []
|
52
|
+
files:
|
53
|
+
- .gitignore
|
54
|
+
- .travis.yml
|
55
|
+
- Gemfile
|
56
|
+
- Guardfile
|
57
|
+
- LICENSE
|
58
|
+
- README.md
|
59
|
+
- Rakefile
|
60
|
+
- fantasydata.gemspec
|
61
|
+
- lib/fantasydata.rb
|
62
|
+
- lib/fantasydata/api/box_score.rb
|
63
|
+
- lib/fantasydata/api/bye_weeks.rb
|
64
|
+
- lib/fantasydata/api/fantasy.rb
|
65
|
+
- lib/fantasydata/api/game.rb
|
66
|
+
- lib/fantasydata/api/news.rb
|
67
|
+
- lib/fantasydata/api/player_details.rb
|
68
|
+
- lib/fantasydata/api/player_stat.rb
|
69
|
+
- lib/fantasydata/api/schedule.rb
|
70
|
+
- lib/fantasydata/api/stadium.rb
|
71
|
+
- lib/fantasydata/api/standings.rb
|
72
|
+
- lib/fantasydata/api/team.rb
|
73
|
+
- lib/fantasydata/api/utils.rb
|
74
|
+
- lib/fantasydata/api/week.rb
|
75
|
+
- lib/fantasydata/base.rb
|
76
|
+
- lib/fantasydata/bye_week.rb
|
77
|
+
- lib/fantasydata/client.rb
|
78
|
+
- lib/fantasydata/configurable.rb
|
79
|
+
- lib/fantasydata/daily_fantasy_player.rb
|
80
|
+
- lib/fantasydata/daily_fantasy_player_stats.rb
|
81
|
+
- lib/fantasydata/daily_fantasy_points.rb
|
82
|
+
- lib/fantasydata/default.rb
|
83
|
+
- lib/fantasydata/error.rb
|
84
|
+
- lib/fantasydata/error/bad_gateway.rb
|
85
|
+
- lib/fantasydata/error/bad_request.rb
|
86
|
+
- lib/fantasydata/error/client_error.rb
|
87
|
+
- lib/fantasydata/error/configuration_error.rb
|
88
|
+
- lib/fantasydata/error/forbidden.rb
|
89
|
+
- lib/fantasydata/error/gateway_timeout.rb
|
90
|
+
- lib/fantasydata/error/internal_server_error.rb
|
91
|
+
- lib/fantasydata/error/not_acceptable.rb
|
92
|
+
- lib/fantasydata/error/not_found.rb
|
93
|
+
- lib/fantasydata/error/server_error.rb
|
94
|
+
- lib/fantasydata/error/service_unavailable.rb
|
95
|
+
- lib/fantasydata/error/too_many_requests.rb
|
96
|
+
- lib/fantasydata/error/unauthorized.rb
|
97
|
+
- lib/fantasydata/error/unprocessable_entity.rb
|
98
|
+
- lib/fantasydata/fantasy_player_adp.rb
|
99
|
+
- lib/fantasydata/game_stat.rb
|
100
|
+
- lib/fantasydata/news.rb
|
101
|
+
- lib/fantasydata/player_detail.rb
|
102
|
+
- lib/fantasydata/player_game_stat.rb
|
103
|
+
- lib/fantasydata/player_season_stat.rb
|
104
|
+
- lib/fantasydata/response/parse_json.rb
|
105
|
+
- lib/fantasydata/response/raise_error.rb
|
106
|
+
- lib/fantasydata/schedule.rb
|
107
|
+
- lib/fantasydata/scoring_detail.rb
|
108
|
+
- lib/fantasydata/stadium.rb
|
109
|
+
- lib/fantasydata/standings.rb
|
110
|
+
- lib/fantasydata/team_detail.rb
|
111
|
+
- lib/fantasydata/version.rb
|
112
|
+
- spec/fantasydata/api/box_score_spec.rb
|
113
|
+
- spec/fantasydata/api/bye_weeks_spec.rb
|
114
|
+
- spec/fantasydata/api/daily_fantasy_spec.rb
|
115
|
+
- spec/fantasydata/api/game_spec.rb
|
116
|
+
- spec/fantasydata/api/news_spec.rb
|
117
|
+
- spec/fantasydata/api/player_details_spec.rb
|
118
|
+
- spec/fantasydata/api/player_stat_spec.rb
|
119
|
+
- spec/fantasydata/api/schedule_spec.rb
|
120
|
+
- spec/fantasydata/api/stadium_spec.rb
|
121
|
+
- spec/fantasydata/api/standings_spec.rb
|
122
|
+
- spec/fantasydata/api/team_spec.rb
|
123
|
+
- spec/fantasydata/api/week_spec.rb
|
124
|
+
- spec/fantasydata/box_score_spec.rb
|
125
|
+
- spec/fantasydata/client_spec.rb
|
126
|
+
- spec/fantasydata/error_spec.rb
|
127
|
+
- spec/fantasydata_spec.rb
|
128
|
+
- spec/fixtures/bye_weeks/bye_weeks.json
|
129
|
+
- spec/fixtures/daily_fantasy/adp.json
|
130
|
+
- spec/fixtures/daily_fantasy/daily_defense_game.json
|
131
|
+
- spec/fixtures/daily_fantasy/daily_defense_seasons_proj.json
|
132
|
+
- spec/fixtures/daily_fantasy/daily_defense_seasons_stats.json
|
133
|
+
- spec/fixtures/daily_fantasy/daily_players.json
|
134
|
+
- spec/fixtures/daily_fantasy/daily_points.json
|
135
|
+
- spec/fixtures/daily_fantasy/defense_game_stats_projected.json
|
136
|
+
- spec/fixtures/error_response.json
|
137
|
+
- spec/fixtures/game/game_stats_by_season.json
|
138
|
+
- spec/fixtures/game/game_stats_by_week.json
|
139
|
+
- spec/fixtures/game/in_progress.json
|
140
|
+
- spec/fixtures/game/in_progress_false.json
|
141
|
+
- spec/fixtures/game/in_progress_true.json
|
142
|
+
- spec/fixtures/news/by_player.json
|
143
|
+
- spec/fixtures/news/by_team.json
|
144
|
+
- spec/fixtures/news/recent.json
|
145
|
+
- spec/fixtures/player_details/active.json
|
146
|
+
- spec/fixtures/player_details/by_team.json
|
147
|
+
- spec/fixtures/player_details/free_agents.json
|
148
|
+
- spec/fixtures/player_details/player_find.json
|
149
|
+
- spec/fixtures/player_stat/stat_by_delta.json
|
150
|
+
- spec/fixtures/player_stat/stat_by_game_projection.json
|
151
|
+
- spec/fixtures/player_stat/stat_by_player_id.json
|
152
|
+
- spec/fixtures/player_stat/stat_by_week.json
|
153
|
+
- spec/fixtures/player_stat/stat_by_week_and_team.json
|
154
|
+
- spec/fixtures/player_stat/stat_by_week_and_team_projected.json
|
155
|
+
- spec/fixtures/schedule/for_year.json
|
156
|
+
- spec/fixtures/stadium/index.json
|
157
|
+
- spec/fixtures/standings/by_year.json
|
158
|
+
- spec/fixtures/team/active.json
|
159
|
+
- spec/fixtures/team/by_year.json
|
160
|
+
- spec/fixtures/week/current.json
|
161
|
+
- spec/fixtures/week/last_completed.json
|
162
|
+
- spec/fixtures/week/upcoming.json
|
163
|
+
- spec/helper.rb
|
164
|
+
homepage: https://github.com/Drosty/fantasydata
|
165
|
+
licenses:
|
166
|
+
- MIT
|
167
|
+
post_install_message:
|
168
|
+
rdoc_options: []
|
169
|
+
require_paths:
|
170
|
+
- lib
|
171
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
172
|
+
none: false
|
173
|
+
requirements:
|
174
|
+
- - ! '>='
|
175
|
+
- !ruby/object:Gem::Version
|
176
|
+
version: '0'
|
177
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
178
|
+
none: false
|
179
|
+
requirements:
|
180
|
+
- - ! '>='
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: '0'
|
183
|
+
requirements: []
|
184
|
+
rubyforge_project:
|
185
|
+
rubygems_version: 1.8.24
|
186
|
+
signing_key:
|
187
|
+
specification_version: 3
|
188
|
+
summary: This gem will wrap the FantasyData API and give easy access to the calls
|
189
|
+
that can be made
|
190
|
+
test_files:
|
191
|
+
- spec/fantasydata/api/box_score_spec.rb
|
192
|
+
- spec/fantasydata/api/bye_weeks_spec.rb
|
193
|
+
- spec/fantasydata/api/daily_fantasy_spec.rb
|
194
|
+
- spec/fantasydata/api/game_spec.rb
|
195
|
+
- spec/fantasydata/api/news_spec.rb
|
196
|
+
- spec/fantasydata/api/player_details_spec.rb
|
197
|
+
- spec/fantasydata/api/player_stat_spec.rb
|
198
|
+
- spec/fantasydata/api/schedule_spec.rb
|
199
|
+
- spec/fantasydata/api/stadium_spec.rb
|
200
|
+
- spec/fantasydata/api/standings_spec.rb
|
201
|
+
- spec/fantasydata/api/team_spec.rb
|
202
|
+
- spec/fantasydata/api/week_spec.rb
|
203
|
+
- spec/fantasydata/box_score_spec.rb
|
204
|
+
- spec/fantasydata/client_spec.rb
|
205
|
+
- spec/fantasydata/error_spec.rb
|
206
|
+
- spec/fantasydata_spec.rb
|
207
|
+
- spec/fixtures/bye_weeks/bye_weeks.json
|
208
|
+
- spec/fixtures/daily_fantasy/adp.json
|
209
|
+
- spec/fixtures/daily_fantasy/daily_defense_game.json
|
210
|
+
- spec/fixtures/daily_fantasy/daily_defense_seasons_proj.json
|
211
|
+
- spec/fixtures/daily_fantasy/daily_defense_seasons_stats.json
|
212
|
+
- spec/fixtures/daily_fantasy/daily_players.json
|
213
|
+
- spec/fixtures/daily_fantasy/daily_points.json
|
214
|
+
- spec/fixtures/daily_fantasy/defense_game_stats_projected.json
|
215
|
+
- spec/fixtures/error_response.json
|
216
|
+
- spec/fixtures/game/game_stats_by_season.json
|
217
|
+
- spec/fixtures/game/game_stats_by_week.json
|
218
|
+
- spec/fixtures/game/in_progress.json
|
219
|
+
- spec/fixtures/game/in_progress_false.json
|
220
|
+
- spec/fixtures/game/in_progress_true.json
|
221
|
+
- spec/fixtures/news/by_player.json
|
222
|
+
- spec/fixtures/news/by_team.json
|
223
|
+
- spec/fixtures/news/recent.json
|
224
|
+
- spec/fixtures/player_details/active.json
|
225
|
+
- spec/fixtures/player_details/by_team.json
|
226
|
+
- spec/fixtures/player_details/free_agents.json
|
227
|
+
- spec/fixtures/player_details/player_find.json
|
228
|
+
- spec/fixtures/player_stat/stat_by_delta.json
|
229
|
+
- spec/fixtures/player_stat/stat_by_game_projection.json
|
230
|
+
- spec/fixtures/player_stat/stat_by_player_id.json
|
231
|
+
- spec/fixtures/player_stat/stat_by_week.json
|
232
|
+
- spec/fixtures/player_stat/stat_by_week_and_team.json
|
233
|
+
- spec/fixtures/player_stat/stat_by_week_and_team_projected.json
|
234
|
+
- spec/fixtures/schedule/for_year.json
|
235
|
+
- spec/fixtures/stadium/index.json
|
236
|
+
- spec/fixtures/standings/by_year.json
|
237
|
+
- spec/fixtures/team/active.json
|
238
|
+
- spec/fixtures/team/by_year.json
|
239
|
+
- spec/fixtures/week/current.json
|
240
|
+
- spec/fixtures/week/last_completed.json
|
241
|
+
- spec/fixtures/week/upcoming.json
|
242
|
+
- spec/helper.rb
|