Giter Club home page Giter Club logo

nfl-stats's Introduction

nfl-stats

Usage

Run the demo app.

python -m pynfl.demo

Use pynfl in your own app.

"""
A demo app that will print stats from this week's games.
"""
import datetime

from pynfl import schedule
from pynfl import stats
from pynfl import utils

l = schedule.Load()
l.read_data()

if len(l.games) == 0:
    l.get_data()
    l.write_data()
    l.read_data()

d = datetime.date.today()

week = utils.get_game_week(d)

week_games = []

for game in l.games:
    if int(game.week) == int(week['week']):
        week_games.append(game)

for game in week_games:
    g = stats.Load(game_id=game.id)
    g.get_data()
    g.write_data()
    try:
        # Instead of printing here, you might do something?
        # Like alert the quarter, down and distance?
        print g.game_obj.__dict__
    except:
        pass

Download the files for later use?

python -m pynfl.schedule
python -m pynfl.stats

nfl-stats's People

Contributors

jeremyjbowers avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

nfl-stats's Issues

pynfl.schedule just returns a list of weeks

After running pynfl with sudo, I get only the following output:

Week 1
Week 2
Week 3
Week 4
Week 5
Week 6
Week 7
Week 8
Week 9
Week 10
Week 11
Week 12
Week 13
Week 14
Week 15
Week 16
Week 17

Is the script failing? If so, I would really appreciate a verbose flag to tell me what's going wrong (e.g. do I need an API key?). Thanks!

pynfl.schedule requires sudo

When I run pynfl.schedule from the command-line with Python 2.7 I get the following traceback error:

Traceback (most recent call last):
  File "/usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/runpy.py", line 162, in _run_module_as_main
    "__main__", fname, loader, pkg_name)
  File "/usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/runpy.py", line 72, in _run_code
    exec code in run_globals
  File "/usr/local/lib/python2.7/site-packages/pynfl/schedule.py", line 97, in <module>
    l.write_data()
  File "/usr/local/lib/python2.7/site-packages/pynfl/schedule.py", line 91, in write_data
    with open('%s/schedule.json' % self.DATA_DIRECTORY, 'w') as writefile:
IOError: [Errno 13] Permission denied: '/usr/local/lib/python2.7/site-packages/pynfl/data/schedule.json'

I'm not really sure why a Python script to fetch data needs to access files in /usr/ and need superuser powers in the process.

No module named pynfl.demo

I don't Python, so there may be something amiss with my setup. OS X Yosemite 10.10.3, Homebrew Python 2.7.

$ pip install nfl-stats
Collecting nfl-stats
Requirement already satisfied (use --upgrade to upgrade): requests==2.7.0 in /usr/local/lib/python2.7/site-packages (from nfl-stats)
Requirement already satisfied (use --upgrade to upgrade): lxml==3.4.4 in /usr/local/lib/python2.7/site-packages (from nfl-stats)
Requirement already satisfied (use --upgrade to upgrade): wheel==0.24.0 in /usr/local/lib/python2.7/site-packages (from nfl-stats)
Requirement already satisfied (use --upgrade to upgrade): beautifulsoup4==4.4.0 in /usr/local/lib/python2.7/site-packages (from nfl-stats)
Installing collected packages: nfl-stats
Successfully installed nfl-stats-0.0.5
$ python -m pynfl.demo
/usr/local/opt/python/bin/python2.7: No module named pynfl.demo

Does not work with Python 3

Its always good to be future-proof, and here is the error I get from Python 3.5:

File "/usr/local/lib/python3.5/site-packages/pynfl/schedule.py", line 58
    print "Week %s" % week

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.