Git Product home page Git Product logo

Comments (4)

toddrob99 avatar toddrob99 commented on June 27, 2024

Mostly because it wasn't on my mind when I wrote the function that generates the boxscore. The functions that are built into the wrapper are not really meant to satisfy most use cases. They are meant to show examples of how to use the statsapi.get() method to retrieve and work with data from the API. If they are useful for some people, I consider that to be a bonus.

from mlb-statsapi.

Zkatz72 avatar Zkatz72 commented on June 27, 2024

Oh all right. Thanks! I am curious though: what exactly is the best way to see the stolen bases recorded in a single game?

from mlb-statsapi.

toddrob99 avatar toddrob99 commented on June 27, 2024

The statsapi.boxscore_data() method that statsapi.boxscore() uses to retrieve the date from the API actually includes stolen bases, it's just not written to the boxscore. You could make a copy of statsapi.boxscore_data() and add caughtStealing to the fields param (currently line 445), then make a copy of statsapi.boxscore() and add sb/cs to the batter template along with where each batter is written out (away, home. You'll need to account for the extra length in rowLen (not sure after a quick glance if there are other spots).

You could also just take the API call from statsapi.boxscore_data(), add caughtStealing to the field param, and do whatever you want with the data if you want to do something other than print a full boxscore. The data comes from the game endpoint. You'll find a list of batters in the result under result["liveData"]["boxScore"]["teams"]["away"]["players"]["ID592626"]["stats"] (replace away with home for home team, and replace ID592626 with ID<personId> where <personId> is an element in the batters list at result["liveData"]["boxScore"]["teams"]["away"]["batters"] (or home).

from mlb-statsapi.

Zkatz72 avatar Zkatz72 commented on June 27, 2024

I see. Thanks for your help.

from mlb-statsapi.

Related Issues (20)

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.