andr3w321

Results 23 comments of andr3w321
trafficstars

I'm not using the library, but I found using simple curl or python requests module that my requests were being blocked locally unless I included a user-agent string.

Thanks for the reply and great project. I initially mistakenly installed the project with `sudo pip install nfldb` but when I removed it with `sudo pip uninstall nfldb` the lib...

Wish I'd read this earlier. Just got done downloading them all. I'll post the download script and link to tarball of them anyways. The script did skip a few that...

I was able to get the data into the schedule.json file, but I'm having a hard time figuring out how to get it in the postgres db? Where is the...

Without some help I think I'm going to give up attempting to add a pull request and just create a csv and work directly with sql to get the data...

Thanks for your help. I wrote some code to look at the team names and mascots. The only city name in question is RAI, which looks like it refers to...

For a quick migration ignoring years this should work ``` INSERT INTO team (team_id, city, name) VALUES ('BOS', 'Boston', 'Patriots'), ('LA', 'Los Angeles', 'Rams'), ('PHO', 'Phoenix', 'Cardinals'), ('RAI', 'Los Angeles',...

Okay I finally got the scores loaded in. It's far from an elegant solution, but it works. Some mascot names will still be incorrect. I added a folder with my...

FYI for anyone who does this I would recommend doing on a new database or after you do it renaming nfldb as it kind of breaks `nfldb-update` which will try...

Thanks for the fix. The only problem I found is that whenever I upgrade nfldb `update.py` gets overritten so I wrote a shell script that I run after running `pip...