Giter Site home page Giter Site 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

Watchers

Alex Wachira avatar

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.