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,30 @@
|
|
1
|
+
require 'helper'
|
2
|
+
|
3
|
+
describe Fantasydata::API::Standings do
|
4
|
+
|
5
|
+
before do
|
6
|
+
@client = new_test_client
|
7
|
+
end
|
8
|
+
|
9
|
+
describe '#standings' do
|
10
|
+
before do
|
11
|
+
stub_get("/nfl/v2/JSON/Standings/2014").
|
12
|
+
to_return(:body => fixture("standings/by_year.json"),
|
13
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
14
|
+
end
|
15
|
+
|
16
|
+
it "requests correct resource" do
|
17
|
+
@client.standings_by_year 2014
|
18
|
+
expect(a_get("/nfl/v2/JSON/Standings/2014")).to have_been_made
|
19
|
+
end
|
20
|
+
|
21
|
+
it "returns player details" do
|
22
|
+
standings = @client.standings_by_year 2014
|
23
|
+
|
24
|
+
expect(standings).to be_an Array
|
25
|
+
expect(standings.first.wins).to eq 12
|
26
|
+
expect(standings.first.season).to eq 2014
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
require 'helper'
|
2
|
+
|
3
|
+
describe Fantasydata::API::Team do
|
4
|
+
|
5
|
+
before do
|
6
|
+
@client = new_test_client
|
7
|
+
end
|
8
|
+
|
9
|
+
describe '#teams_active' do
|
10
|
+
before do
|
11
|
+
stub_get("/nfl/v2/JSON/Teams").
|
12
|
+
to_return(:body => fixture("team/active.json"),
|
13
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
14
|
+
end
|
15
|
+
|
16
|
+
it "requests correct resource" do
|
17
|
+
@client.teams_active
|
18
|
+
expect(a_get("/nfl/v2/JSON/Teams")).to have_been_made
|
19
|
+
end
|
20
|
+
|
21
|
+
it "returns active teams" do
|
22
|
+
teams = @client.teams_active
|
23
|
+
|
24
|
+
expect(teams).to be_an Array
|
25
|
+
expect(teams.first.stadium.stadium_id).to eq 29
|
26
|
+
expect(teams.first.key).to eq 'ARI'
|
27
|
+
expect(teams.first.full_name).to eq 'Arizona Cardinals'
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
describe '#teams_by_year' do
|
32
|
+
before do
|
33
|
+
stub_get("/nfl/v2/JSON/Teams/2012").
|
34
|
+
to_return(:body => fixture("team/by_year.json"),
|
35
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
36
|
+
end
|
37
|
+
|
38
|
+
it "requests correct resource" do
|
39
|
+
@client.teams_by_year '2012'
|
40
|
+
expect(a_get("/nfl/v2/JSON/Teams/2012")).to have_been_made
|
41
|
+
end
|
42
|
+
|
43
|
+
it "returns active teams" do
|
44
|
+
teams = @client.teams_by_year '2012'
|
45
|
+
|
46
|
+
expect(teams).to be_an Array
|
47
|
+
expect(teams.first.stadium.stadium_id).to eq 7
|
48
|
+
expect(teams.first.key).to eq 'BAL'
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
|
53
|
+
|
54
|
+
end
|
55
|
+
|
56
|
+
|
@@ -0,0 +1,69 @@
|
|
1
|
+
require 'helper'
|
2
|
+
|
3
|
+
describe Fantasydata::API::Week do
|
4
|
+
|
5
|
+
before do
|
6
|
+
@client = new_test_client
|
7
|
+
end
|
8
|
+
|
9
|
+
describe '#week_current' do
|
10
|
+
before do
|
11
|
+
stub_get("/nfl/v2/JSON/CurrentWeek").
|
12
|
+
to_return(:body => fixture("week/current.json"),
|
13
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
14
|
+
end
|
15
|
+
|
16
|
+
it "requests correct resource" do
|
17
|
+
@client.week_current
|
18
|
+
expect(a_get("/nfl/v2/JSON/CurrentWeek")).to have_been_made
|
19
|
+
end
|
20
|
+
|
21
|
+
it "returns player details" do
|
22
|
+
current_week = @client.week_current
|
23
|
+
|
24
|
+
expect(current_week).to be_an Integer
|
25
|
+
expect(current_week).to eq 16
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe '#week_last_completed' do
|
30
|
+
before do
|
31
|
+
stub_get("/nfl/v2/JSON/LastCompletedWeek").
|
32
|
+
to_return(:body => fixture("week/last_completed.json"),
|
33
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
34
|
+
end
|
35
|
+
|
36
|
+
it "requests correct resource" do
|
37
|
+
@client.week_last_completed
|
38
|
+
expect(a_get("/nfl/v2/JSON/LastCompletedWeek")).to have_been_made
|
39
|
+
end
|
40
|
+
|
41
|
+
it "returns player details" do
|
42
|
+
current_week = @client.week_last_completed
|
43
|
+
|
44
|
+
expect(current_week).to be_an Integer
|
45
|
+
expect(current_week).to eq 4
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
describe '#week_upcoming' do
|
50
|
+
before do
|
51
|
+
stub_get("/nfl/v2/XML/UpcomingWeek").
|
52
|
+
to_return(:body => fixture("week/upcoming.json"),
|
53
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
54
|
+
end
|
55
|
+
|
56
|
+
it "requests correct resource" do
|
57
|
+
@client.week_upcoming
|
58
|
+
expect(a_get("/nfl/v2/XML/UpcomingWeek")).to have_been_made
|
59
|
+
end
|
60
|
+
|
61
|
+
it "returns player details" do
|
62
|
+
current_week = @client.week_upcoming
|
63
|
+
|
64
|
+
expect(current_week).to be_an Integer
|
65
|
+
expect(current_week).to eq 9
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
require 'helper'
|
2
|
+
|
3
|
+
describe Fantasydata do
|
4
|
+
|
5
|
+
after do
|
6
|
+
Fantasydata.reset!
|
7
|
+
end
|
8
|
+
|
9
|
+
context "when delegating to a client" do
|
10
|
+
|
11
|
+
before do
|
12
|
+
Fantasydata.configure do |config|
|
13
|
+
config.api_key = 'AK'
|
14
|
+
end
|
15
|
+
|
16
|
+
stub_get("/nfl/v2/JSON/AreAnyGamesInProgress").
|
17
|
+
to_return(:body => fixture("game/in_progress.json"),
|
18
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
19
|
+
end
|
20
|
+
|
21
|
+
it "requests the correct resource" do
|
22
|
+
#Fantasydata.games_in_progress(:artist => 'radiohead')
|
23
|
+
#expect(a_get("/api/v4/song/search")
|
24
|
+
#.with(:query => {:artist => 'radiohead'}))
|
25
|
+
#.to have_been_made
|
26
|
+
end
|
27
|
+
|
28
|
+
it "returns the same results as a client" do
|
29
|
+
expect(Fantasydata.games_in_progress?).to eq Fantasydata::Client.new.games_in_progress?
|
30
|
+
end
|
31
|
+
|
32
|
+
describe ".respond_to?" do
|
33
|
+
it "delegates to Fantasydata::Client" do
|
34
|
+
expect(Fantasydata.respond_to?(:games_in_progress?)).to be_truthy
|
35
|
+
end
|
36
|
+
it "takes an optional argument" do
|
37
|
+
expect(Fantasydata.respond_to?(:client, true)).to be_truthy
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe ".client" do
|
42
|
+
it "returns a Fantasydata::Client" do
|
43
|
+
expect(Fantasydata.client).to be_a Fantasydata::Client
|
44
|
+
end
|
45
|
+
|
46
|
+
context "when the options don't change" do
|
47
|
+
it "caches the client" do
|
48
|
+
expect(Fantasydata.client).to eq Fantasydata.client
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
context "when the options change" do
|
53
|
+
it "busts the cache" do
|
54
|
+
client1 = Fantasydata.client
|
55
|
+
Fantasydata.configure do |config|
|
56
|
+
config.api_key = 'abc'
|
57
|
+
end
|
58
|
+
client2 = Fantasydata.client
|
59
|
+
expect(client1).not_to eq client2
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
require 'helper'
|
2
|
+
|
3
|
+
describe Fantasydata::Client do
|
4
|
+
|
5
|
+
subject do
|
6
|
+
Fantasydata::Client.new(:api_key => "AK")
|
7
|
+
end
|
8
|
+
|
9
|
+
context "with module configuration" do
|
10
|
+
|
11
|
+
before do
|
12
|
+
Fantasydata.configure do |config|
|
13
|
+
Fantasydata::Configurable.keys.each do |key|
|
14
|
+
config.send("#{key}=", key)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
after do
|
20
|
+
Fantasydata.reset!
|
21
|
+
end
|
22
|
+
|
23
|
+
it "inherits the module configuration" do
|
24
|
+
client = Fantasydata::Client.new
|
25
|
+
Fantasydata::Configurable.keys.each do |key|
|
26
|
+
expect(client.instance_variable_get(:"@#{key}")).to eq key
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
context "with class configuration" do
|
31
|
+
|
32
|
+
before do
|
33
|
+
@configuration = {
|
34
|
+
:connection_options => {:timeout => 10},
|
35
|
+
:api_key => 'AK',
|
36
|
+
:endpoint => 'http://tumblr.com/',
|
37
|
+
:middleware => Proc.new{}
|
38
|
+
}
|
39
|
+
end
|
40
|
+
|
41
|
+
context "during initialization" do
|
42
|
+
it "overrides the module configuration" do
|
43
|
+
client = Fantasydata::Client.new(@configuration)
|
44
|
+
Fantasydata::Configurable.keys.each do |key|
|
45
|
+
expect(client.instance_variable_get(:"@#{key}")).to eq @configuration[key]
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
context "after initialization" do
|
51
|
+
it "overrides the module configuration after initialization" do
|
52
|
+
client = Fantasydata::Client.new
|
53
|
+
client.configure do |config|
|
54
|
+
@configuration.each do |key, value|
|
55
|
+
config.send("#{key}=", value)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
Fantasydata::Configurable.keys.each do |key|
|
59
|
+
expect(client.instance_variable_get(:"@#{key}")).to eq @configuration[key]
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
describe "#connection" do
|
68
|
+
it "looks like Faraday connection" do
|
69
|
+
expect(subject.send(:connection)).to respond_to(:run_request)
|
70
|
+
end
|
71
|
+
it "memoizes the connection" do
|
72
|
+
c1, c2 = subject.send(:connection), subject.send(:connection)
|
73
|
+
expect(c1.object_id).to eq c2.object_id
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require 'helper'
|
2
|
+
|
3
|
+
describe Fantasydata::Error do
|
4
|
+
before do
|
5
|
+
@client = new_test_client
|
6
|
+
end
|
7
|
+
|
8
|
+
describe "#initialize" do
|
9
|
+
it "wraps another error class" do
|
10
|
+
begin
|
11
|
+
raise Faraday::Error::ClientError.new("Oops")
|
12
|
+
rescue Faraday::Error::ClientError
|
13
|
+
begin
|
14
|
+
raise Fantasydata::Error
|
15
|
+
rescue Fantasydata::Error => error
|
16
|
+
expect(error.message).to eq "Oops"
|
17
|
+
expect(error.wrapped_exception.class).to eq Faraday::Error::ClientError
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
describe "#from_response" do
|
24
|
+
|
25
|
+
before do
|
26
|
+
stub_get("/nfl/v2/JSON/AreAnyGamesInProgress").
|
27
|
+
to_return(:status => 401,
|
28
|
+
:body => fixture('error_response.json'))
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should return Fantasydata badrequest when 401 is returned" do
|
32
|
+
expect{@client.games_in_progress?}.to raise_error(Fantasydata::Error::Unauthorized)
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
require 'helper'
|
2
|
+
|
3
|
+
describe Fantasydata do
|
4
|
+
|
5
|
+
after do
|
6
|
+
Fantasydata.reset!
|
7
|
+
end
|
8
|
+
|
9
|
+
context "when delegating to a client" do
|
10
|
+
|
11
|
+
before do
|
12
|
+
Fantasydata.configure do |config|
|
13
|
+
config.api_key = 'AK'
|
14
|
+
end
|
15
|
+
|
16
|
+
stub_get("/nfl/v2/JSON/AreAnyGamesInProgress").
|
17
|
+
to_return(:body => fixture("game/in_progress.json"),
|
18
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
19
|
+
end
|
20
|
+
|
21
|
+
it "requests the correct resource" do
|
22
|
+
#Fantasydata.games_in_progress(:artist => 'radiohead')
|
23
|
+
#expect(a_get("/api/v4/song/search")
|
24
|
+
#.with(:query => {:artist => 'radiohead'}))
|
25
|
+
#.to have_been_made
|
26
|
+
end
|
27
|
+
|
28
|
+
it "returns the same results as a client" do
|
29
|
+
expect(Fantasydata.games_in_progress?).to eq Fantasydata::Client.new.games_in_progress?
|
30
|
+
end
|
31
|
+
|
32
|
+
describe ".respond_to?" do
|
33
|
+
it "delegates to Fantasydata::Client" do
|
34
|
+
expect(Fantasydata.respond_to?(:games_in_progress?)).to be_truthy
|
35
|
+
end
|
36
|
+
it "takes an optional argument" do
|
37
|
+
expect(Fantasydata.respond_to?(:client, true)).to be_truthy
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe ".client" do
|
42
|
+
it "returns a Fantasydata::Client" do
|
43
|
+
expect(Fantasydata.client).to be_a Fantasydata::Client
|
44
|
+
end
|
45
|
+
|
46
|
+
context "when the options don't change" do
|
47
|
+
it "caches the client" do
|
48
|
+
expect(Fantasydata.client).to eq Fantasydata.client
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
context "when the options change" do
|
53
|
+
it "busts the cache" do
|
54
|
+
client1 = Fantasydata.client
|
55
|
+
Fantasydata.configure do |config|
|
56
|
+
config.api_key = 'abc'
|
57
|
+
end
|
58
|
+
client2 = Fantasydata.client
|
59
|
+
expect(client1).not_to eq client2
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"Season":2015,"Week":4,"Team":"NE"},{"Season":2015,"Week":4,"Team":"TEN"},{"Season":2015,"Week":5,"Team":"CAR"},{"Season":2015,"Week":5,"Team":"MIA"},{"Season":2015,"Week":5,"Team":"MIN"},{"Season":2015,"Week":5,"Team":"NYJ"},{"Season":2015,"Week":6,"Team":"DAL"},{"Season":2015,"Week":6,"Team":"OAK"},{"Season":2015,"Week":6,"Team":"STL"},{"Season":2015,"Week":6,"Team":"TB"},{"Season":2015,"Week":7,"Team":"CHI"},{"Season":2015,"Week":7,"Team":"CIN"},{"Season":2015,"Week":7,"Team":"DEN"},{"Season":2015,"Week":7,"Team":"GB"},{"Season":2015,"Week":8,"Team":"BUF"},{"Season":2015,"Week":8,"Team":"JAX"},{"Season":2015,"Week":8,"Team":"PHI"},{"Season":2015,"Week":8,"Team":"WAS"},{"Season":2015,"Week":9,"Team":"ARI"},{"Season":2015,"Week":9,"Team":"BAL"},{"Season":2015,"Week":9,"Team":"DET"},{"Season":2015,"Week":9,"Team":"HOU"},{"Season":2015,"Week":9,"Team":"KC"},{"Season":2015,"Week":9,"Team":"SEA"},{"Season":2015,"Week":10,"Team":"ATL"},{"Season":2015,"Week":10,"Team":"IND"},{"Season":2015,"Week":10,"Team":"SD"},{"Season":2015,"Week":10,"Team":"SF"},{"Season":2015,"Week":11,"Team":"CLE"},{"Season":2015,"Week":11,"Team":"NO"},{"Season":2015,"Week":11,"Team":"NYG"},{"Season":2015,"Week":11,"Team":"PIT"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"FantasyPlayerKey":"4807","PlayerID":4807,"Name":"Adrian Peterson","Team":"MIN","Position":"RB","AverageDraftPosition":2.0,"AverageDraftPositionPPR":2.7,"ByeWeek":5,"LastSeasonFantasyPoints":9.3,"ProjectedFantasyPoints":220.7},{"FantasyPlayerKey":"7969","PlayerID":7969,"Name":"Jamaal Charles","Team":"KC","Position":"RB","AverageDraftPosition":2.5,"AverageDraftPositionPPR":2.5,"ByeWeek":9,"LastSeasonFantasyPoints":210.4,"ProjectedFantasyPoints":223.2},{"FantasyPlayerKey":"15138","PlayerID":15138,"Name":"Eddie Lacy","Team":"GB","Position":"RB","AverageDraftPosition":3.4,"AverageDraftPositionPPR":4.8,"ByeWeek":7,"LastSeasonFantasyPoints":230.6,"ProjectedFantasyPoints":234.3}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"ScoringDetails":[{"GameKey":"201411222","SeasonType":1,"PlayerID":14232,"Team":"BAL","Season":2014,"Week":12,"ScoringType":"InterceptionReturnTouchdown","Length":44,"ScoringDetailID":413666,"PlayerGameID":13207859}],"GameKey":"201411222","SeasonType":1,"Season":2014,"Week":12,"Date":"2014-11-24T20:30:00","Team":"BAL","Opponent":"NO","PointsAllowed":27,"TouchdownsScored":1,"SoloTackles":52,"AssistedTackles":8,"Sacks":4,"SackYards":21,"PassesDefended":3,"FumblesForced":1,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":1,"InterceptionReturnYards":44,"InterceptionReturnTouchdowns":1,"BlockedKicks":0,"Safeties":0,"PuntReturns":2,"PuntReturnYards":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":2,"KickReturnYards":52,"KickReturnTouchdowns":0,"KickReturnLong":29,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":108.4,"QuarterbackFantasyPointsAllowed":28.3,"RunningbackFantasyPointsAllowed":10.9,"WideReceiverFantasyPointsAllowed":40.9,"TightEndFantasyPointsAllowed":19.3,"KickerFantasyPointsAllowed":9.0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":8,"TacklesForLoss":6,"DefensiveTouchdowns":1,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":12.0,"Stadium":"Mercedes-Benz Superdome","Temperature":63,"Humidity":58,"WindSpeed":9,"ThirdDownAttempts":12,"ThirdDownConversions":5,"FourthDownAttempts":1,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":27,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},{"ScoringDetails":[{"GameKey":"201411204","SeasonType":1,"PlayerID":1141,"Team":"BUF","Season":2014,"Week":12,"ScoringType":"BlockedPuntReturnTouchdown","Length":0,"ScoringDetailID":413525,"PlayerGameID":13207832}],"GameKey":"201411204","SeasonType":1,"Season":2014,"Week":12,"Date":"2014-11-24T19:00:00","Team":"BUF","Opponent":"NYJ","PointsAllowed":3,"TouchdownsScored":1,"SoloTackles":38,"AssistedTackles":10,"Sacks":7,"SackYards":39,"PassesDefended":6,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":1,"InterceptionReturnYards":34,"InterceptionReturnTouchdowns":0,"BlockedKicks":1,"Safeties":0,"PuntReturns":1,"PuntReturnYards":5,"PuntReturnTouchdowns":0,"PuntReturnLong":5,"KickReturns":1,"KickReturnYards":13,"KickReturnTouchdowns":0,"KickReturnLong":13,"BlockedKickReturnTouchdowns":1,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":33.3,"QuarterbackFantasyPointsAllowed":5.4,"RunningbackFantasyPointsAllowed":11.3,"WideReceiverFantasyPointsAllowed":13.1,"TightEndFantasyPointsAllowed":0.5,"KickerFantasyPointsAllowed":3.0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":9,"TacklesForLoss":9,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":1,"IsGameOver":true,"FantasyPoints":22.0,"Stadium":"Ralph Wilson Stadium","Temperature":68,"Humidity":70,"WindSpeed":0,"ThirdDownAttempts":15,"ThirdDownConversions":3,"FourthDownAttempts":1,"FourthDownConversions":1,"PointsAllowedByDefenseSpecialTeams":3,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"ScoringDetails":null,"SeasonType":1,"Season":2014,"Team":"ARI","PointsAllowed":324,"TouchdownsScored":4,"SoloTackles":686,"AssistedTackles":110,"Sacks":41,"SackYards":336,"PassesDefended":103,"FumblesForced":11,"FumblesRecovered":10,"FumbleReturnYards":57,"FumbleReturnTouchdowns":1,"Interceptions":20,"InterceptionReturnYards":251,"InterceptionReturnTouchdowns":2,"BlockedKicks":2,"Safeties":2,"PuntReturns":34,"PuntReturnYards":206,"PuntReturnTouchdowns":0,"PuntReturnLong":22,"KickReturns":27,"KickReturnYards":540,"KickReturnTouchdowns":1,"KickReturnLong":46,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":null,"QuarterbackFantasyPointsAllowed":null,"RunningbackFantasyPointsAllowed":null,"WideReceiverFantasyPointsAllowed":null,"TightEndFantasyPointsAllowed":null,"KickerFantasyPointsAllowed":null,"Games":16,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":110,"TacklesForLoss":92,"DefensiveTouchdowns":3,"SpecialTeamsTouchdowns":1,"FantasyPoints":115,"Temperature":null,"Humidity":null,"WindSpeed":null,"ThirdDownAttempts":null,"ThirdDownConversions":null,"FourthDownAttempts":null,"FourthDownConversions":null,"PointsAllowedByDefenseSpecialTeams":null,"AuctionValue":null,"AuctionValuePPR":null},{"ScoringDetails":null,"SeasonType":1,"Season":2014,"Team":"ATL","PointsAllowed":443,"TouchdownsScored":3,"SoloTackles":633,"AssistedTackles":307,"Sacks":34,"SackYards":229,"PassesDefended":57,"FumblesForced":13,"FumblesRecovered":11,"FumbleReturnYards":64,"FumbleReturnTouchdowns":1,"Interceptions":14,"InterceptionReturnYards":176,"InterceptionReturnTouchdowns":2,"BlockedKicks":0,"Safeties":0,"PuntReturns":30,"PuntReturnYards":250,"PuntReturnTouchdowns":0,"PuntReturnLong":25,"KickReturns":27,"KickReturnYards":659,"KickReturnTouchdowns":0,"KickReturnLong":40,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":null,"QuarterbackFantasyPointsAllowed":null,"RunningbackFantasyPointsAllowed":null,"WideReceiverFantasyPointsAllowed":null,"TightEndFantasyPointsAllowed":null,"KickerFantasyPointsAllowed":null,"Games":16,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":56,"TacklesForLoss":59,"DefensiveTouchdowns":3,"SpecialTeamsTouchdowns":0,"FantasyPoints":91,"Temperature":null,"Humidity":null,"WindSpeed":null,"ThirdDownAttempts":null,"ThirdDownConversions":null,"FourthDownAttempts":null,"FourthDownConversions":null,"PointsAllowedByDefenseSpecialTeams":null,"AuctionValue":null,"AuctionValuePPR":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"ScoringDetails":[{"GameKey":"201410223","SeasonType":1,"PlayerID":12109,"Team":"ARI","Season":2014,"Week":2,"ScoringType":"PuntReturnTouchdown","Length":71,"ScoringDetailID":385540,"PlayerGameID":11096122},{"GameKey":"201410601","SeasonType":1,"PlayerID":9783,"Team":"ARI","Season":2014,"Week":6,"ScoringType":"InterceptionReturnTouchdown","Length":28,"ScoringDetailID":402402,"PlayerGameID":11882699},{"GameKey":"201411001","SeasonType":1,"PlayerID":13415,"Team":"ARI","Season":2014,"Week":10,"ScoringType":"InterceptionReturnTouchdown","Length":30,"ScoringDetailID":409731,"PlayerGameID":12802519},{"GameKey":"201411001","SeasonType":1,"PlayerID":11692,"Team":"ARI","Season":2014,"Week":10,"ScoringType":"FumbleReturnTouchdown","Length":14,"ScoringDetailID":409732,"PlayerGameID":12802613},{"GameKey":"201411302","SeasonType":1,"PlayerID":9783,"Team":"ARI","Season":2014,"Week":13,"ScoringType":"InterceptionReturnTouchdown","Length":88,"ScoringDetailID":416730,"PlayerGameID":13370222}],"SeasonType":1,"Season":2014,"Team":"ARI","PointsAllowed":299,"TouchdownsScored":5,"SoloTackles":687,"AssistedTackles":149,"Sacks":35,"SackYards":244,"PassesDefended":63,"FumblesForced":9,"FumblesRecovered":7,"FumbleReturnYards":23,"FumbleReturnTouchdowns":1,"Interceptions":18,"InterceptionReturnYards":321,"InterceptionReturnTouchdowns":3,"BlockedKicks":3,"Safeties":0,"PuntReturns":26,"PuntReturnYards":277,"PuntReturnTouchdowns":1,"PuntReturnLong":71,"KickReturns":22,"KickReturnYards":417,"KickReturnTouchdowns":0,"KickReturnLong":43,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":1123.34,"QuarterbackFantasyPointsAllowed":266.84,"RunningbackFantasyPointsAllowed":237.7,"WideReceiverFantasyPointsAllowed":356.3,"TightEndFantasyPointsAllowed":154.5,"KickerFantasyPointsAllowed":108,"Games":16,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":77,"TacklesForLoss":86,"DefensiveTouchdowns":4,"SpecialTeamsTouchdowns":1,"FantasyPoints":134,"Temperature":null,"Humidity":null,"WindSpeed":null,"ThirdDownAttempts":216,"ThirdDownConversions":81,"FourthDownAttempts":13,"FourthDownConversions":5,"PointsAllowedByDefenseSpecialTeams":293,"AuctionValue":null,"AuctionValuePPR":null},{"ScoringDetails":[{"GameKey":"201410302","SeasonType":1,"PlayerID":15179,"Team":"ATL","Season":2014,"Week":3,"ScoringType":"InterceptionReturnTouchdown","Length":23,"ScoringDetailID":392815,"PlayerGameID":11288061},{"GameKey":"201410302","SeasonType":1,"PlayerID":7082,"Team":"ATL","Season":2014,"Week":3,"ScoringType":"PuntReturnTouchdown","Length":62,"ScoringDetailID":392817,"PlayerGameID":11288028},{"GameKey":"201411622","SeasonType":1,"PlayerID":5400,"Team":"ATL","Season":2014,"Week":16,"ScoringType":"FumbleReturnTouchdown","Length":86,"ScoringDetailID":424351,"PlayerGameID":13942748}],"SeasonType":1,"Season":2014,"Team":"ATL","PointsAllowed":417,"TouchdownsScored":3,"SoloTackles":617,"AssistedTackles":323,"Sacks":23,"SackYards":149,"PassesDefended":67,"FumblesForced":13,"FumblesRecovered":11,"FumbleReturnYards":122,"FumbleReturnTouchdowns":1,"Interceptions":16,"InterceptionReturnYards":113,"InterceptionReturnTouchdowns":1,"BlockedKicks":3,"Safeties":0,"PuntReturns":18,"PuntReturnYards":239,"PuntReturnTouchdowns":1,"PuntReturnLong":68,"KickReturns":50,"KickReturnYards":1174,"KickReturnTouchdowns":0,"KickReturnLong":66,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":1254.92,"QuarterbackFantasyPointsAllowed":268.92,"RunningbackFantasyPointsAllowed":365.5,"WideReceiverFantasyPointsAllowed":391.7,"TightEndFantasyPointsAllowed":95.8,"KickerFantasyPointsAllowed":133,"Games":16,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":65,"TacklesForLoss":56,"DefensiveTouchdowns":2,"SpecialTeamsTouchdowns":1,"FantasyPoints":88,"Temperature":null,"Humidity":null,"WindSpeed":null,"ThirdDownAttempts":203,"ThirdDownConversions":95,"FourthDownAttempts":8,"FourthDownConversions":4,"PointsAllowedByDefenseSpecialTeams":387,"AuctionValue":null,"AuctionValuePPR":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"PlayerID":7328,"Date":"2014-09-21T16:25:00","ShortName":"P.Manning","Name":"Peyton Manning","Team":"DEN","Opponent":"SEA","Position":"QB","Salary":9900,"LastGameFantasyPoints":10.44,"ProjectedFantasyPoints":17.32,"OpponentRank":11,"OpponentPositionRank":16,"Status":"Healthy","StatusCode":"ACT","StatusColor":"green"},{"PlayerID":2593,"Date":"2014-09-21T13:00:00","ShortName":"A.Rodgers","Name":"Aaron Rodgers","Team":"GB","Opponent":"DET","Position":"QB","Salary":9800,"LastGameFantasyPoints":8.32,"ProjectedFantasyPoints":22.74,"OpponentRank":32,"OpponentPositionRank":31,"Status":"Healthy","StatusCode":"ACT","StatusColor":"green"},{"PlayerID":14008,"Date":"2014-09-21T13:00:00","ShortName":"A.Luck","Name":"Andrew Luck","Team":"IND","Opponent":"JAX","Position":"QB","Salary":9500,"LastGameFantasyPoints":2.84,"ProjectedFantasyPoints":20.88,"OpponentRank":2,"OpponentPositionRank":2,"Status":"Healthy","StatusCode":"ACT","StatusColor":"green"},{"PlayerID":11932,"Date":"2014-09-21T13:00:00","ShortName":"L.McCoy","Name":"LeSean McCoy","Team":"BUF","Opponent":"WAS","Position":"RB","Salary":9200,"LastGameFantasyPoints":11.40,"ProjectedFantasyPoints":18.30,"OpponentRank":19,"OpponentPositionRank":21,"Status":"Healthy","StatusCode":"ACT","StatusColor":"green"},{"PlayerID":7242,"Date":"2014-09-21T13:00:00","ShortName":"D.Brees","Name":"Drew Brees","Team":"NO","Opponent":"MIN","Position":"QB","Salary":9100,"LastGameFantasyPoints":9.14,"ProjectedFantasyPoints":19.42,"OpponentRank":18,"OpponentPositionRank":22,"Status":"Healthy","StatusCode":"ACT","StatusColor":"green"},{"PlayerID":6029,"Date":"2014-09-21T13:00:00","ShortName":"C.Johnson","Name":"Calvin Johnson","Team":"DET","Opponent":"GB","Position":"WR","Salary":9000,"LastGameFantasyPoints":8.50,"ProjectedFantasyPoints":18.60,"OpponentRank":12,"OpponentPositionRank":17,"Status":"Healthy","StatusCode":"ACT","StatusColor":"green"},{"PlayerID":9038,"Date":"2014-09-21T13:00:00","ShortName":"M.Stafford","Name":"Matthew Stafford","Team":"DET","Opponent":"GB","Position":"QB","Salary":9000,"LastGameFantasyPoints":11.82,"ProjectedFantasyPoints":20.60,"OpponentRank":12,"OpponentPositionRank":21,"Status":"Healthy","StatusCode":"ACT","StatusColor":"green"},{"PlayerID":12386,"Date":"2014-09-21T16:25:00","ShortName":"M.Lynch","Name":"Marshawn Lynch","Team":"SEA","Opponent":"DEN","Position":"RB","Salary":8900,"LastGameFantasyPoints":19.30,"ProjectedFantasyPoints":15.00,"OpponentRank":6,"OpponentPositionRank":7,"Status":"Probable","StatusCode":"P","StatusColor":"green"},{"PlayerID":14967,"Date":"2014-09-21T20:30:00","ShortName":"L.Bell","Name":"Le'Veon Bell","Team":"PIT","Opponent":"CAR","Position":"RB","Salary":8800,"LastGameFantasyPoints":0.00,"ProjectedFantasyPoints":9.80,"OpponentRank":9,"OpponentPositionRank":17,"Status":"Healthy","StatusCode":"ACT","StatusColor":"green"},{"PlayerID":732,"Date":"2014-09-18T20:25:00","ShortName":"M.Ryan","Name":"Matt Ryan","Team":"ATL","Opponent":"TB","Position":"QB","Salary":8700,"LastGameFantasyPoints":7.00,"ProjectedFantasyPoints":19.36,"OpponentRank":29,"OpponentPositionRank":30,"Status":"Healthy","StatusCode":"ACT","StatusColor":"green"},{"PlayerID":11197,"Date":"2014-09-21T16:25:00","ShortName":"D.Thomas","Name":"Demaryius Thomas","Team":"DEN","Opponent":"SEA","Position":"WR","Salary":8700,"LastGameFantasyPoints":11.90,"ProjectedFantasyPoints":14.30,"OpponentRank":11,"OpponentPositionRank":28,"Status":"Healthy","StatusCode":"ACT","StatusColor":"green"},{"PlayerID":13124,"Date":"2014-09-21T13:00:00","ShortName":"D.Murray","Name":"DeMarco Murray","Team":"PHI","Opponent":"STL","Position":"RB","Salary":8700,"LastGameFantasyPoints":16.80,"ProjectedFantasyPoints":18.30,"OpponentRank":27,"OpponentPositionRank":30,"Status":"Healthy","StatusCode":"ACT","StatusColor":"green"},{"PlayerID":4556,"Date":"2014-09-21T13:00:00","ShortName":"J.Nelson","Name":"Jordy Nelson","Team":"GB","Opponent":"DET","Position":"WR","Salary":8600,"LastGameFantasyPoints":7.10,"ProjectedFantasyPoints":18.20,"OpponentRank":32,"OpponentPositionRank":22,"Status":"Healthy","StatusCode":"ACT","StatusColor":"green"},{"PlayerID":11270,"Date":"2014-09-21T13:00:00","ShortName":"D.Bryant","Name":"Dez Bryant","Team":"DAL","Opponent":"STL","Position":"WR","Salary":8600,"LastGameFantasyPoints":3.80,"ProjectedFantasyPoints":14.70,"OpponentRank":24,"OpponentPositionRank":12,"Status":"Questionable","StatusCode":"Q","StatusColor":"yellow"},{"PlayerID":13320,"Date":"2014-09-21T20:30:00","ShortName":"C.Newton","Name":"Cam Newton","Team":"CAR","Opponent":"PIT","Position":"QB","Salary":8600,"LastGameFantasyPoints":15.54,"ProjectedFantasyPoints":18.92,"OpponentRank":23,"OpponentPositionRank":15,"Status":"Healthy","StatusCode":"ACT","StatusColor":"green"}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"PlayerID":2593,"Name":"Aaron Rodgers","FantasyPoints":28.64,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Date":null},{"PlayerID":7884,"Name":"Antonio Gates","FantasyPoints":27.6,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Date":null},{"PlayerID":4556,"Name":"Jordy Nelson","FantasyPoints":26.9,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Date":null},{"PlayerID":8972,"Name":"Jay Cutler","FantasyPoints":25.54,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Date":null},{"PlayerID":8244,"Name":"Philip Rivers","FantasyPoints":25.06,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Date":null},{"PlayerID":21,"Name":"New England Patriots","FantasyPoints":24,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Date":null},{"PlayerID":6198,"Name":"Darren Sproles","FantasyPoints":23.8,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Date":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"ScoringDetails":null,"GameKey":"201411225","SeasonType":1,"Season":2014,"Week":12,"Date":"2014-11-20T20:25:00","Team":"OAK","Opponent":"KC","PointsAllowed":25,"TouchdownsScored":0,"SoloTackles":0,"AssistedTackles":0,"Sacks":2,"SackYards":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":70.36,"QuarterbackFantasyPointsAllowed":17.86,"RunningbackFantasyPointsAllowed":20.8,"WideReceiverFantasyPointsAllowed":8,"TightEndFantasyPointsAllowed":15.7,"KickerFantasyPointsAllowed":8,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":0,"TacklesForLoss":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":false,"FantasyPoints":2,"Stadium":null,"Temperature":null,"Humidity":null,"WindSpeed":null,"ThirdDownAttempts":null,"ThirdDownConversions":null,"FourthDownAttempts":null,"FourthDownConversions":null,"PointsAllowedByDefenseSpecialTeams":null,"FanDuelSalary":4500,"DraftKingsSalary":null,"FantasyDataSalary":4500,"VictivSalary":null},{"ScoringDetails":null,"GameKey":"201411226","SeasonType":1,"Season":2014,"Week":12,"Date":"2014-11-23T13:00:00","Team":"PHI","Opponent":"TEN","PointsAllowed":15,"TouchdownsScored":0,"SoloTackles":0,"AssistedTackles":0,"Sacks":4,"SackYards":0,"PassesDefended":0,"FumblesForced":1,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":1,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":null,"QuarterbackFantasyPointsAllowed":null,"RunningbackFantasyPointsAllowed":null,"WideReceiverFantasyPointsAllowed":null,"TightEndFantasyPointsAllowed":null,"KickerFantasyPointsAllowed":null,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":0,"TacklesForLoss":0,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":false,"FantasyPoints":7,"Stadium":null,"Temperature":null,"Humidity":null,"WindSpeed":null,"ThirdDownAttempts":null,"ThirdDownConversions":null,"FourthDownAttempts":null,"FourthDownConversions":null,"PointsAllowedByDefenseSpecialTeams":null,"FanDuelSalary":5100,"DraftKingsSalary":null,"FantasyDataSalary":5100,"VictivSalary":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"StadiumDetails":{"StadiumID":31,"Name":"CenturyLink Field","City":"Seattle","State":"WA","Country":"USA","Capacity":67000,"PlayingSurface":"Artificial"},"GameKey":"201410130","Date":"2014-09-04T20:30:00","SeasonType":1,"Season":2014,"Week":1,"Stadium":"CenturyLink Field","PlayingSurface":"Artificial","Temperature":71,"Humidity":52,"WindSpeed":11,"AwayTeam":"GB","HomeTeam":"SEA","AwayScore":16,"HomeScore":36,"TotalScore":52,"OverUnder":47.0,"PointSpread":-4.5,"AwayScoreQuarter1":7,"AwayScoreQuarter2":3,"AwayScoreQuarter3":0,"AwayScoreQuarter4":6,"AwayScoreOvertime":0,"HomeScoreQuarter1":3,"HomeScoreQuarter2":14,"HomeScoreQuarter3":5,"HomeScoreQuarter4":14,"HomeScoreOvertime":0,"AwayTimeOfPossession":"26:40","HomeTimeOfPossession":"33:20","AwayFirstDowns":19,"HomeFirstDowns":25,"AwayFirstDownsByRushing":4,"HomeFirstDownsByRushing":13,"AwayFirstDownsByPassing":13,"HomeFirstDownsByPassing":8,"AwayFirstDownsByPenalty":2,"HomeFirstDownsByPenalty":4,"AwayOffensivePlays":57,"HomeOffensivePlays":66,"AwayOffensiveYards":255,"HomeOffensiveYards":398,"AwayOffensiveYardsPerPlay":4.5,"HomeOffensiveYardsPerPlay":6.0,"AwayTouchdowns":2,"HomeTouchdowns":4,"AwayRushingAttempts":21,"HomeRushingAttempts":37,"AwayRushingYards":80,"HomeRushingYards":207,"AwayRushingYardsPerAttempt":3.8,"HomeRushingYardsPerAttempt":5.6,"AwayRushingTouchdowns":1,"HomeRushingTouchdowns":2,"AwayPassingAttempts":33,"HomePassingAttempts":28,"AwayPassingCompletions":23,"HomePassingCompletions":19,"AwayPassingYards":175,"HomePassingYards":191,"AwayPassingTouchdowns":1,"HomePassingTouchdowns":2,"AwayPassingInterceptions":1,"HomePassingInterceptions":0,"AwayPassingYardsPerAttempt":5.3,"HomePassingYardsPerAttempt":6.8,"AwayPassingYardsPerCompletion":7.6,"HomePassingYardsPerCompletion":10.1,"AwayCompletionPercentage":69.7,"HomeCompletionPercentage":67.9,"AwayPasserRating":79.73,"HomePasserRating":110.86,"AwayThirdDownAttempts":12,"HomeThirdDownAttempts":11,"AwayThirdDownConversions":6,"HomeThirdDownConversions":4,"AwayThirdDownPercentage":50.0,"HomeThirdDownPercentage":36.4,"AwayFourthDownAttempts":1,"HomeFourthDownAttempts":1,"AwayFourthDownConversions":0,"HomeFourthDownConversions":1,"AwayFourthDownPercentage":0,"HomeFourthDownPercentage":100,"AwayRedZoneAttempts":3,"HomeRedZoneAttempts":5,"AwayRedZoneConversions":2,"HomeRedZoneConversions":3,"AwayGoalToGoAttempts":3,"HomeGoalToGoAttempts":3,"AwayGoalToGoConversions":2,"HomeGoalToGoConversions":2,"AwayReturnYards":0,"HomeReturnYards":24,"AwayPenalties":8,"HomePenalties":4,"AwayPenaltyYards":65,"HomePenaltyYards":69,"AwayFumbles":1,"HomeFumbles":2,"AwayFumblesLost":0,"HomeFumblesLost":1,"AwayTimesSacked":3,"HomeTimesSacked":1,"AwayTimesSackedYards":14,"HomeTimesSackedYards":0,"AwaySafeties":0,"HomeSafeties":1,"AwayPunts":4,"HomePunts":2,"AwayPuntYards":153,"HomePuntYards":66,"AwayPuntAverage":38.2,"HomePuntAverage":33,"AwayGiveaways":1,"HomeGiveaways":1,"AwayTakeaways":1,"HomeTakeaways":1,"AwayTurnoverDifferential":0,"HomeTurnoverDifferential":0,"AwayKickoffs":5,"HomeKickoffs":7,"AwayKickoffsInEndZone":4,"HomeKickoffsInEndZone":7,"AwayKickoffTouchbacks":2,"HomeKickoffTouchbacks":3,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":37.5,"HomePuntNetAverage":33,"AwayExtraPointKickingAttempts":1,"HomeExtraPointKickingAttempts":4,"AwayExtraPointKickingConversions":1,"HomeExtraPointKickingConversions":4,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":1,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":0,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":1,"HomeFieldGoalAttempts":2,"AwayFieldGoalsMade":1,"HomeFieldGoalsMade":2,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":0,"HomePuntReturns":2,"AwayPuntReturnYards":0,"HomePuntReturnYards":3,"AwayKickReturns":4,"HomeKickReturns":3,"AwayKickReturnYards":89,"HomeKickReturnYards":60,"AwayInterceptionReturns":0,"HomeInterceptionReturns":1,"AwayInterceptionReturnYards":0,"HomeInterceptionReturnYards":21,"AwaySoloTackles":38,"AwayAssistedTackles":25,"AwayQuarterbackHits":1,"AwayTacklesForLoss":1,"AwaySacks":1,"AwaySackYards":0,"AwayPassesDefended":3,"AwayFumblesForced":1,"AwayFumblesRecovered":1,"AwayFumbleReturnYards":0,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":0,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":28,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":150,"HomeSoloTackles":36,"HomeAssistedTackles":23,"HomeQuarterbackHits":4,"HomeTacklesForLoss":5,"HomeSacks":3,"HomeSackYards":14,"HomePassesDefended":4,"HomeFumblesForced":1,"HomeFumblesRecovered":0,"HomeFumbleReturnYards":0,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":3,"HomeKickReturnTouchdowns":0,"HomeKickReturnLong":31,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":66,"IsGameOver":true,"GameID":63200,"StadiumID":31,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null},{"StadiumDetails":{"StadiumID":25,"Name":"Georgia Dome","City":"Atlanta","State":"GA","Country":"USA","Capacity":74228,"PlayingSurface":"Dome"},"GameKey":"201410102","Date":"2014-09-07T13:00:00","SeasonType":1,"Season":2014,"Week":1,"Stadium":"Georgia Dome","PlayingSurface":"Dome","Temperature":70,"Humidity":50,"WindSpeed":0,"AwayTeam":"NO","HomeTeam":"ATL","AwayScore":34,"HomeScore":37,"TotalScore":71,"OverUnder":51.0,"PointSpread":3.0,"AwayScoreQuarter1":6,"AwayScoreQuarter2":14,"AwayScoreQuarter3":0,"AwayScoreQuarter4":14,"AwayScoreOvertime":0,"HomeScoreQuarter1":0,"HomeScoreQuarter2":10,"HomeScoreQuarter3":14,"HomeScoreQuarter4":10,"HomeScoreOvertime":3,"AwayTimeOfPossession":"30:25","HomeTimeOfPossession":"31:18","AwayFirstDowns":30,"HomeFirstDowns":28,"AwayFirstDownsByRushing":9,"HomeFirstDownsByRushing":6,"AwayFirstDownsByPassing":17,"HomeFirstDownsByPassing":21,"AwayFirstDownsByPenalty":4,"HomeFirstDownsByPenalty":1,"AwayOffensivePlays":70,"HomeOffensivePlays":69,"AwayOffensiveYards":472,"HomeOffensiveYards":568,"AwayOffensiveYardsPerPlay":6.7,"HomeOffensiveYardsPerPlay":8.2,"AwayTouchdowns":4,"HomeTouchdowns":4,"AwayRushingAttempts":28,"HomeRushingAttempts":25,"AwayRushingYards":139,"HomeRushingYards":123,"AwayRushingYardsPerAttempt":5.0,"HomeRushingYardsPerAttempt":4.9,"AwayRushingTouchdowns":3,"HomeRushingTouchdowns":1,"AwayPassingAttempts":42,"HomePassingAttempts":43,"AwayPassingCompletions":29,"HomePassingCompletions":31,"AwayPassingYards":333,"HomePassingYards":445,"AwayPassingTouchdowns":1,"HomePassingTouchdowns":3,"AwayPassingInterceptions":1,"HomePassingInterceptions":0,"AwayPassingYardsPerAttempt":7.9,"HomePassingYardsPerAttempt":10.3,"AwayPassingYardsPerCompletion":11.5,"HomePassingYardsPerCompletion":14.4,"AwayCompletionPercentage":69.0,"HomeCompletionPercentage":72.1,"AwayPasserRating":90.67,"HomePasserRating":128.54,"AwayThirdDownAttempts":13,"HomeThirdDownAttempts":11,"AwayThirdDownConversions":8,"HomeThirdDownConversions":6,"AwayThirdDownPercentage":61.5,"HomeThirdDownPercentage":54.5,"AwayFourthDownAttempts":0,"HomeFourthDownAttempts":0,"AwayFourthDownConversions":0,"HomeFourthDownConversions":0,"AwayFourthDownPercentage":0,"HomeFourthDownPercentage":0,"AwayRedZoneAttempts":6,"HomeRedZoneAttempts":3,"AwayRedZoneConversions":4,"HomeRedZoneConversions":3,"AwayGoalToGoAttempts":4,"HomeGoalToGoAttempts":2,"AwayGoalToGoConversions":4,"HomeGoalToGoConversions":2,"AwayReturnYards":0,"HomeReturnYards":1,"AwayPenalties":3,"HomePenalties":10,"AwayPenaltyYards":27,"HomePenaltyYards":96,"AwayFumbles":1,"HomeFumbles":1,"AwayFumblesLost":1,"HomeFumblesLost":1,"AwayTimesSacked":0,"HomeTimesSacked":1,"AwayTimesSackedYards":0,"HomeTimesSackedYards":3,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":2,"HomePunts":3,"AwayPuntYards":101,"HomePuntYards":157,"AwayPuntAverage":50.5,"HomePuntAverage":52.3,"AwayGiveaways":2,"HomeGiveaways":1,"AwayTakeaways":1,"HomeTakeaways":2,"AwayTurnoverDifferential":-1,"HomeTurnoverDifferential":1,"AwayKickoffs":7,"HomeKickoffs":6,"AwayKickoffsInEndZone":7,"HomeKickoffsInEndZone":6,"AwayKickoffTouchbacks":6,"HomeKickoffTouchbacks":5,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":50,"HomePuntNetAverage":45.7,"AwayExtraPointKickingAttempts":4,"HomeExtraPointKickingAttempts":4,"AwayExtraPointKickingConversions":4,"HomeExtraPointKickingConversions":4,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":0,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":2,"HomeFieldGoalAttempts":3,"AwayFieldGoalsMade":2,"HomeFieldGoalsMade":3,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":0,"HomePuntReturns":1,"AwayPuntReturnYards":0,"HomePuntReturnYards":1,"AwayKickReturns":1,"HomeKickReturns":1,"AwayKickReturnYards":34,"HomeKickReturnYards":21,"AwayInterceptionReturns":0,"HomeInterceptionReturns":1,"AwayInterceptionReturnYards":0,"HomeInterceptionReturnYards":0,"AwaySoloTackles":49,"AwayAssistedTackles":6,"AwayQuarterbackHits":3,"AwayTacklesForLoss":1,"AwaySacks":1,"AwaySackYards":3,"AwayPassesDefended":2,"AwayFumblesForced":1,"AwayFumblesRecovered":1,"AwayFumbleReturnYards":0,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":0,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":34,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":100,"HomeSoloTackles":39,"HomeAssistedTackles":28,"HomeQuarterbackHits":0,"HomeTacklesForLoss":1,"HomeSacks":0,"HomeSackYards":0,"HomePassesDefended":4,"HomeFumblesForced":1,"HomeFumblesRecovered":1,"HomeFumbleReturnYards":0,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":1,"HomeKickReturnTouchdowns":0,"HomeKickReturnLong":21,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":137,"IsGameOver":true,"GameID":63207,"StadiumID":25,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"StadiumDetails":{"StadiumID":16,"Name":"O.co Coliseum","City":"Oakland","State":"CA","Country":"USA","Capacity":53200,"PlayingSurface":"Grass"},"GameKey":"201411225","Date":"2014-11-20T20:25:00","SeasonType":1,"Season":2014,"Week":12,"Stadium":"O.co Coliseum","PlayingSurface":"Grass","Temperature":57,"Humidity":88,"WindSpeed":6,"AwayTeam":"KC","HomeTeam":"OAK","AwayScore":20,"HomeScore":24,"TotalScore":44,"OverUnder":42.5,"PointSpread":7.5,"AwayScoreQuarter1":0,"AwayScoreQuarter2":3,"AwayScoreQuarter3":7,"AwayScoreQuarter4":10,"AwayScoreOvertime":0,"HomeScoreQuarter1":7,"HomeScoreQuarter2":7,"HomeScoreQuarter3":3,"HomeScoreQuarter4":7,"HomeScoreOvertime":0,"AwayTimeOfPossession":"29:56","HomeTimeOfPossession":"30:4","AwayFirstDowns":16,"HomeFirstDowns":18,"AwayFirstDownsByRushing":3,"HomeFirstDownsByRushing":8,"AwayFirstDownsByPassing":11,"HomeFirstDownsByPassing":9,"AwayFirstDownsByPenalty":2,"HomeFirstDownsByPenalty":1,"AwayOffensivePlays":62,"HomeOffensivePlays":66,"AwayOffensiveYards":313,"HomeOffensiveYards":351,"AwayOffensiveYardsPerPlay":5,"HomeOffensiveYardsPerPlay":5.3,"AwayTouchdowns":2,"HomeTouchdowns":3,"AwayRushingAttempts":24,"HomeRushingAttempts":30,"AwayRushingYards":96,"HomeRushingYards":179,"AwayRushingYardsPerAttempt":4,"HomeRushingYardsPerAttempt":6,"AwayRushingTouchdowns":0,"HomeRushingTouchdowns":2,"AwayPassingAttempts":36,"HomePassingAttempts":35,"AwayPassingCompletions":20,"HomePassingCompletions":18,"AwayPassingYards":217,"HomePassingYards":172,"AwayPassingTouchdowns":2,"HomePassingTouchdowns":1,"AwayPassingInterceptions":0,"HomePassingInterceptions":0,"AwayPassingYardsPerAttempt":6,"HomePassingYardsPerAttempt":4.9,"AwayPassingYardsPerCompletion":10.8,"HomePassingYardsPerCompletion":9.6,"AwayCompletionPercentage":55.6,"HomeCompletionPercentage":51.4,"AwayPasserRating":92.01,"HomePasserRating":74.94,"AwayThirdDownAttempts":14,"HomeThirdDownAttempts":16,"AwayThirdDownConversions":2,"HomeThirdDownConversions":8,"AwayThirdDownPercentage":14.3,"HomeThirdDownPercentage":50,"AwayFourthDownAttempts":1,"HomeFourthDownAttempts":1,"AwayFourthDownConversions":0,"HomeFourthDownConversions":1,"AwayFourthDownPercentage":0,"HomeFourthDownPercentage":100,"AwayRedZoneAttempts":3,"HomeRedZoneAttempts":2,"AwayRedZoneConversions":1,"HomeRedZoneConversions":2,"AwayGoalToGoAttempts":0,"HomeGoalToGoAttempts":1,"AwayGoalToGoConversions":0,"HomeGoalToGoConversions":1,"AwayReturnYards":51,"HomeReturnYards":5,"AwayPenalties":7,"HomePenalties":7,"AwayPenaltyYards":59,"HomePenaltyYards":60,"AwayFumbles":2,"HomeFumbles":2,"AwayFumblesLost":0,"HomeFumblesLost":1,"AwayTimesSacked":2,"HomeTimesSacked":1,"AwayTimesSackedYards":17,"HomeTimesSackedYards":2,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":7,"HomePunts":6,"AwayPuntYards":297,"HomePuntYards":296,"AwayPuntAverage":42.4,"HomePuntAverage":49.3,"AwayGiveaways":0,"HomeGiveaways":1,"AwayTakeaways":1,"HomeTakeaways":0,"AwayTurnoverDifferential":1,"HomeTurnoverDifferential":-1,"AwayKickoffs":5,"HomeKickoffs":5,"AwayKickoffsInEndZone":1,"HomeKickoffsInEndZone":5,"AwayKickoffTouchbacks":1,"HomeKickoffTouchbacks":2,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":41.7,"HomePuntNetAverage":40.8,"AwayExtraPointKickingAttempts":2,"HomeExtraPointKickingAttempts":3,"AwayExtraPointKickingConversions":2,"HomeExtraPointKickingConversions":3,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":0,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":2,"HomeFieldGoalAttempts":1,"AwayFieldGoalsMade":2,"HomeFieldGoalsMade":1,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":4,"HomePuntReturns":2,"AwayPuntReturnYards":51,"HomePuntReturnYards":5,"AwayKickReturns":3,"HomeKickReturns":4,"AwayKickReturnYards":113,"HomeKickReturnYards":83,"AwayInterceptionReturns":0,"HomeInterceptionReturns":0,"AwayInterceptionReturnYards":0,"HomeInterceptionReturnYards":0,"AwaySoloTackles":43,"AwayAssistedTackles":21,"AwayQuarterbackHits":2,"AwayTacklesForLoss":4,"AwaySacks":1,"AwaySackYards":2,"AwayPassesDefended":5,"AwayFumblesForced":1,"AwayFumblesRecovered":1,"AwayFumbleReturnYards":0,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":28,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":48,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":292,"HomeSoloTackles":49,"HomeAssistedTackles":16,"HomeQuarterbackHits":4,"HomeTacklesForLoss":6,"HomeSacks":2,"HomeSackYards":17,"HomePassesDefended":3,"HomeFumblesForced":1,"HomeFumblesRecovered":0,"HomeFumbleReturnYards":3,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":5,"HomeKickReturnTouchdowns":0,"HomeKickReturnLong":24,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":245,"IsGameOver":true,"GameID":64352,"StadiumID":16,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null},{"StadiumDetails":{"StadiumID":25,"Name":"Georgia Dome","City":"Atlanta","State":"GA","Country":"USA","Capacity":74228,"PlayingSurface":"Dome"},"GameKey":"201411202","Date":"2014-11-23T13:00:00","SeasonType":1,"Season":2014,"Week":12,"Stadium":"Georgia Dome","PlayingSurface":"Dome","Temperature":70,"Humidity":50,"WindSpeed":0,"AwayTeam":"CLE","HomeTeam":"ATL","AwayScore":26,"HomeScore":24,"TotalScore":50,"OverUnder":48,"PointSpread":-2,"AwayScoreQuarter1":7,"AwayScoreQuarter2":6,"AwayScoreQuarter3":10,"AwayScoreQuarter4":3,"AwayScoreOvertime":0,"HomeScoreQuarter1":7,"HomeScoreQuarter2":7,"HomeScoreQuarter3":0,"HomeScoreQuarter4":10,"HomeScoreOvertime":0,"AwayTimeOfPossession":"30:37","HomeTimeOfPossession":"29:23","AwayFirstDowns":29,"HomeFirstDowns":21,"AwayFirstDownsByRushing":10,"HomeFirstDownsByRushing":5,"AwayFirstDownsByPassing":16,"HomeFirstDownsByPassing":15,"AwayFirstDownsByPenalty":3,"HomeFirstDownsByPenalty":1,"AwayOffensivePlays":71,"HomeOffensivePlays":69,"AwayOffensiveYards":475,"HomeOffensiveYards":315,"AwayOffensiveYardsPerPlay":6.7,"HomeOffensiveYardsPerPlay":4.6,"AwayTouchdowns":2,"HomeTouchdowns":3,"AwayRushingAttempts":29,"HomeRushingAttempts":23,"AwayRushingYards":162,"HomeRushingYards":63,"AwayRushingYardsPerAttempt":5.6,"HomeRushingYardsPerAttempt":2.7,"AwayRushingTouchdowns":2,"HomeRushingTouchdowns":1,"AwayPassingAttempts":41,"HomePassingAttempts":43,"AwayPassingCompletions":23,"HomePassingCompletions":27,"AwayPassingYards":313,"HomePassingYards":252,"AwayPassingTouchdowns":0,"HomePassingTouchdowns":2,"AwayPassingInterceptions":3,"HomePassingInterceptions":1,"AwayPassingYardsPerAttempt":7.6,"HomePassingYardsPerAttempt":5.9,"AwayPassingYardsPerCompletion":13.6,"HomePassingYardsPerCompletion":9.3,"AwayCompletionPercentage":56.1,"HomeCompletionPercentage":62.8,"AwayPasserRating":50.15,"HomePasserRating":84.64,"AwayThirdDownAttempts":10,"HomeThirdDownAttempts":16,"AwayThirdDownConversions":4,"HomeThirdDownConversions":9,"AwayThirdDownPercentage":40,"HomeThirdDownPercentage":56.2,"AwayFourthDownAttempts":0,"HomeFourthDownAttempts":0,"AwayFourthDownConversions":0,"HomeFourthDownConversions":0,"AwayFourthDownPercentage":0,"HomeFourthDownPercentage":0,"AwayRedZoneAttempts":6,"HomeRedZoneAttempts":2,"AwayRedZoneConversions":1,"HomeRedZoneConversions":2,"AwayGoalToGoAttempts":2,"HomeGoalToGoAttempts":2,"AwayGoalToGoConversions":0,"HomeGoalToGoConversions":2,"AwayReturnYards":-4,"HomeReturnYards":21,"AwayPenalties":5,"HomePenalties":7,"AwayPenaltyYards":30,"HomePenaltyYards":40,"AwayFumbles":2,"HomeFumbles":1,"AwayFumblesLost":0,"HomeFumblesLost":1,"AwayTimesSacked":1,"HomeTimesSacked":3,"AwayTimesSackedYards":9,"HomeTimesSackedYards":21,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":1,"HomePunts":4,"AwayPuntYards":41,"HomePuntYards":178,"AwayPuntAverage":41,"HomePuntAverage":44.5,"AwayGiveaways":3,"HomeGiveaways":2,"AwayTakeaways":2,"HomeTakeaways":3,"AwayTurnoverDifferential":-1,"HomeTurnoverDifferential":1,"AwayKickoffs":6,"HomeKickoffs":5,"AwayKickoffsInEndZone":6,"HomeKickoffsInEndZone":5,"AwayKickoffTouchbacks":2,"HomeKickoffTouchbacks":5,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":29,"HomePuntNetAverage":39.5,"AwayExtraPointKickingAttempts":2,"HomeExtraPointKickingAttempts":3,"AwayExtraPointKickingConversions":2,"HomeExtraPointKickingConversions":3,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":0,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":5,"HomeFieldGoalAttempts":1,"AwayFieldGoalsMade":4,"HomeFieldGoalsMade":1,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":0,"HomePuntReturns":1,"AwayPuntReturnYards":0,"HomePuntReturnYards":12,"AwayKickReturns":0,"HomeKickReturns":4,"AwayKickReturnYards":0,"HomeKickReturnYards":84,"AwayInterceptionReturns":1,"HomeInterceptionReturns":3,"AwayInterceptionReturnYards":0,"HomeInterceptionReturnYards":9,"AwaySoloTackles":42,"AwayAssistedTackles":10,"AwayQuarterbackHits":6,"AwayTacklesForLoss":3,"AwaySacks":3,"AwaySackYards":21,"AwayPassesDefended":7,"AwayFumblesForced":1,"AwayFumblesRecovered":1,"AwayFumbleReturnYards":-4,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":0,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":0,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":29,"HomeSoloTackles":42,"HomeAssistedTackles":16,"HomeQuarterbackHits":6,"HomeTacklesForLoss":3,"HomeSacks":1,"HomeSackYards":9,"HomePassesDefended":4,"HomeFumblesForced":0,"HomeFumblesRecovered":0,"HomeFumbleReturnYards":0,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":12,"HomeKickReturnTouchdowns":0,"HomeKickReturnLong":27,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":158,"IsGameOver":true,"GameID":64357,"StadiumID":25,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
false
|
@@ -0,0 +1 @@
|
|
1
|
+
false
|