-
No errors come up when I try to use my script that shows average points per game that worked last year. Burntsushi has updated the code to work with the new update but it still doesn't work. Note that…
-
Hi, I am trying to use this module, and I want to know how I would go about finding what games a player played in during a year, and get his stats for each game. I am not sure if it is possible, or I…
-
I happened to run `nfldb-update` during the first quarter last night on one of my systems. Now, regardless of how often I re-run `nfldb-update` on that system the statistics generated between the tim…
-
Trying to load the rest of the 2014 schedule into the DB but throwing an error:
return super(RealDictCursor, self).execute(query, vars)
psycopg2.IntegrityError: new row for relation "game" violates ch…
aakar updated
10 years ago
-
After filing issue #5, I think a somewhat appropriate response is to provide a function that takes a play in a game and returns the score of the game before the play given was snapped.
The score must…
-
Is it possible to get nflgame to return scores by quarters (preferably as a list)? For example,
for g in games_gen:
print g.scoreByQuarters
would return:
[[7,0,14,0],[0,0,0,3]]
or something …
-
At first I thought it was a problem with my setup, but since I updated to the latest nflvid, the problem came back, so clearly it's not just my system...
The log:
$ nflvid-footage --season 2013 --co…
-
Love the DB. Spotted an issue:
If I import the DB and run this query:
```
SELECT player.full_name, SUM(play_player.rushing_yds) AS rushing_yds
FROM play_player
LEFT JOIN player ON player.player_id …
-
There is a problem in the _team_ table for the Jets and the Giants. Their city field is set to Giants or Jets and the name field contains their full name:
```
team_id | city | name
----…
-
How would I be able to figure out the average points per game? I can't figure out how to add up all scores from a team's games for the current season. I tried to contact you on IRC for a couple days a…