Mound
A CLI and Python toolkit for retrieving, analyzing and visualizing MLB pitch-level data — without needing to know MLB player IDs or the underlying API structures.
> How many splitters did Roki Sasaki throw against the Diamondbacks last night?
> How often has he thrown it relative to his other pitches over his last four starts?
> What does its location look like over that period?
> How does he attack one particular hitter, and does that hitter chase the splitter?
Mound answers questions like these with a few CLI commands or a few lines of Python.
Install
pip install mound
# Parquet export support:
pip install "mound[parquet]"
# KDE heatmaps (kind="kde"):
pip install "mound[viz]"
Or from a local checkout (editable):
git clone https://github.com/stiles/mound.git
cd mound
pip install -e .
Requires Python 3.10+.
Quickstart
CLI
# Find a player and their MLB ID
mound search "Roki Sasaki"
# Retrieve pitches from his last 4 starts
mound pitches "Roki Sasaki" --last 4
# Isolate one pitch type
mound pitches "Roki Sasaki" --last 4 --pitch splitter
# Pitch mix and results by pitch type
mound mix "Roki Sasaki" --last 4
mound results "Roki Sasaki" --last 4 --pitch splitter
# Velocity, spin, movement, whiff and chase rate, side by side
mound arsenal "Roki Sasaki" --game 825051
# Narrow any command to one opposing batter for a matchup view
mound results "Roki Sasaki" --last 4 --batter "Geraldo Perdomo"
# Plot pitch locations against the strike zone
mound zone "Roki Sasaki" --pitch splitter --last 4 --out splitter_zone.png
# Export the underlying data
mound pitches "Roki Sasaki" --last 4 --export roki_last4.csv
# Cache Savant responses locally; a later run for the same pitcher only
# fetches the games it hasn't seen yet
mound pitches "Roki Sasaki" --last 4 --cache
# Download broadcast clips for a set of pitches
mound video "Roki Sasaki" --pitch splitter --last 4 --out-dir clips
# Download just one clip
mound video "Roki Sasaki" --pitch splitter --last 1 --limit 1
# Already have a pitch_id? Download its clip directly, no lookup needed
mound video-id 7468ecb9-0918-3aca-8ef5-6396e6ab80c3
Run mound --help or mound <command> --help for the full option list.
Python
from mound import Pitcher
roki = Pitcher("Roki Sasaki")
pitches = roki.pitches(last=4)
splitters = pitches.filter(pitch_type="splitter")
splitters.pitch_mix()
splitters.strike_rate()
splitters.swing_rate()
splitters.whiff_rate() # of swings, not of every pitch -- see below
splitters.chase_rate() # of pitches outside the zone
splitters.plot_zone(out="splitter_zone.png")
pitches.pitch_metrics() # avg velocity/spin/movement per pitch type
pitches.to_csv("roki_last4.csv")
# Cache Savant responses locally; a later call for the same pitcher only
# fetches the games it hasn't seen yet
pitches = roki.pitches(last=8, cache=True)
# Download a broadcast clip for a single pitch, or a whole collection
splitters.pitches[0].download_video()
splitters.download_videos(out_dir="clips")
Pitcher.pitches() and PitchCollection.filter() both accept:
| Argument | Meaning |
|---|---|
last |
most recent N appearances |
since / until |
date range ("YYYY-MM-DD" or date), inclusive |
game |
one or more MLB game_pk values |
pitch_type |
a pitch name, alias, or Statcast code (see below) |
stand |
batter side: "L"/"left"/"LHB" or "R"/"right"/"RHB" |
batter |
an opposing hitter, by name or MLB player ID (see Matchups) |
at_bat_number |
a specific at-bat — pair with game, since it's only unique within one game |
pitch_number |
a specific pitch within that at-bat (e.g. 3 for the third pitch) — pair with game and at_bat_number to land on one exact pitch |
Filtering a PitchCollection always returns another PitchCollection, so any combination of .filter(), .pitch_mix(), .strike_rate(), .plot_zone() and export methods composes freely.
Matchups
Every retrieval and filter takes a batter, so any command or method can be scoped to one hitter. Names match on any part of the name Savant reports, ignoring case and accents — "perdomo" or "Geraldo Perdomo" both work, and an MLB player ID settles a name that's too common to be unique:
mound results "Roki Sasaki" --last 4 --batter perdomo
mound zone "Roki Sasaki" --last 4 --batter perdomo --out matchup.png
roki.pitches(last=4, batter="perdomo").pitch_mix()
roki.pitches(last=4).filter(batter=[672695, "Lindor"]) # several hitters at once
Batter asks the same question from the other side — the pitches a hitter faced, from every arm he saw:
from mound import Batter
perdomo = Batter("Geraldo Perdomo")
faced = perdomo.pitches(last=5) # everything, across pitching changes
vs_roki = perdomo.pitches(last=5, pitcher="Roki Sasaki")
faced.chase_rate() # how often he chased out of the zone
faced.pitch_mix() # what pitchers fed him
faced.plot_zone(out="perdomo_zone.png")
Both sides return the same pitches for a given matchup, so pick whichever player is the subject of the question. Pitcher.pitches(batter=...) is the cheaper route for a one-off matchup, since a starter appears in a fraction of the games a hitter plays and Mound fetches one Savant response per game.
Whiff rate, chase rate and pitch metrics
swing_rate(), whiff_rate() and chase_rate() (each with a by_pitch_type option) answer "how nasty was it" from three angles:
| Method | Numerator | Denominator |
|---|---|---|
swing_rate() |
swings | every pitch |
whiff_rate() |
swings that missed | swings |
chase_rate() |
swings | pitches outside the zone |
Whiff rate divides by swings rather than by every pitch, matching Baseball Savant's own convention, so a pitch rarely swung at can still post a high whiff rate on the swings it draws. Chase rate is the out-of-zone counterpart to swing_rate(): how often a hitter went after a pitch he could have taken for a ball. It reads location from in_zone, not is_strike (they differ), and skips pitches with no plate coordinates rather than assuming they were strikes. pitch_metrics() averages velocity, spin rate and movement (horizontal_break, induced_vertical_break) per pitch type.
Compare one outing against a wider window to see what stood out:
last_start = roki.pitches(last=1)
season = roki.pitches(since="2026-03-01")
last_start.whiff_rate(by_pitch_type=True)["splitter"] # nasty last night?
season.whiff_rate(by_pitch_type=True)["splitter"] # ...or business as usual?
last_start.pitch_metrics().loc["four-seam fastball", "spin_rate"] # spinning it more?
season.pitch_metrics().loc["four-seam fastball", "spin_rate"]
The CLI's mound arsenal combines pitch_metrics(), whiff_rate() and chase_rate() into one table:
mound arsenal "Roki Sasaki" --game 825051
pitches velocity spin_rate release_extension horizontal_break induced_vertical_break whiff_rate chase_rate
pitch_type
four-seam fastball 35 98.8 2427.1 7.1 11.2 16.9 27.3 6.2
splitter 32 90.2 868.1 7.2 5.3 1.0 13.6 57.9
slider 14 87.1 2099.3 7.1 3.0 0.1 40.0 33.3
forkball 5 88.2 758.2 7.1 2.8 -2.0 50.0 0.0
The two rates read differently on purpose: the four-seamer lives in the zone (6.2% chase rate) and gets missed when hitters swing, while the splitter's whole job is to be chased below it (57.9%). A chase_rate of NaN means that pitch type never left the zone, so there was nothing to chase.
Plots
plot_zone() renders a headline, a dek (pitch count, strike rate, date range) and a source line around the strike-zone chart itself, rather than relying on axis titles or a boxed legend:
All three are auto-generated but overridable:
splitters.plot_zone(
title="Sasaki leans on the splitter",
subtitle="134 pitches since the All-Star break",
source="Source: Baseball Savant",
kind="heatmap", # "scatter" (default), "heatmap", or "kde"
out="splitter_zone.png",
)
kind="heatmap" bins pitches into a plain 2D histogram; kind="kde" renders a smoother kernel density surface instead (better suited to larger samples), via the optional scipy dependency (pip install "mound[viz]"). Pass bw_method to control its bandwidth, e.g. plot_zone(kind="kde", bw_method=0.3). Neither carries a colorbar — darker means more pitches, and a vertical scale bar would squeeze the panel out of alignment with every other plot kind.
Pass subtitle="" or source="" to omit either. Passing your own ax (e.g. for a multi-panel figure) skips the dek/source and falls back to a plain left-aligned title, so plot_zone() behaves as a well-mannered subplot.
Pitch location isn't mirrored for batter handedness, so mixing lefties and righties in one panel can blur the picture — pass split_by="stand" to break it into a vs-LHB / vs-RHB pair, each with its own strike zone and pitch count:
splitters.plot_zone(split_by="stand", out="splitter_zone_by_stand.png")
mound zone "Roki Sasaki" --last 4 --pitch splitter --split-by stand --out splitter_zone_by_stand.png
is_strike vs. in_zone
These sound interchangeable but aren't, and it's easy to expect a plotted zone box to reconcile with the wrong one:
is_strikeis whatever counts as a strike by rule: a called strike, a swinging strike, a foul ball, or a ball put in play. It's about the ruling, not the location — a pitch that draws a swing and a miss (or a foul, or a groundout) well outside the box still counts as a strike.in_zoneis purely locational: does the pitch — modeled as an actual baseball, not a point — overlap the strike-zone rectangle for that batter'ssz_top/sz_bot?
A good chase pitch (splitters, sweepers, low sinkers) will show a much higher is_strike rate than in_zone rate. That's the pitch working as intended, not a bug — batters are swinging at (or getting jammed by) pitches outside the zone on purpose, which is exactly what chase_rate() measures. If a plot_zone() subtitle's strike percentage doesn't match how many dots visually sit inside the drawn box, that's this distinction at work; check in_zone counts (or .filter(in_zone=True)) for the locational answer, not strike_rate().
in_zone models the ball as a sphere overlapping the zone rectangle, which matches Statcast's own methodology (checked against Baseball Savant's own zone/isInZone fields across thousands of live pitches with zero mismatches). One consequence: a pitch can register in_zone=True even when its center is outside the box on both axes at once, as long as it's within one ball radius of a corner — a legitimate, if visually surprising, edge case. in_zone also reflects Statcast's calculated geometry, not the home-plate umpire's real-time call; the two disagree routinely on borderline pitches, especially double-edge corner cases (away and low/high at once). That's normal umpire variance, not an error in Mound.
Pitch types
Statcast tags every pitch with a short code. Mound normalizes these into human-readable names and accepts common aliases when filtering, so pitch_type="four-seam", "fastball" and "FF" are all equivalent.
| Code | Name | Common aliases |
|---|---|---|
FF |
four-seam fastball | fastball, four-seam |
FT |
two-seam fastball | two-seam |
SI |
sinker | |
FC |
cutter | cut fastball |
SL |
slider | |
ST |
sweeper | sweeping slider |
SV |
slurve | |
CU |
curveball | curve |
KC |
knuckle curve | |
CH |
changeup | change-up |
FS |
splitter | split-finger |
FO |
forkball | |
SC |
screwball | |
KN |
knuckleball | knuckler |
EP |
eephus |
Note on Roki Sasaki's signature pitch: Statcast classifies it inconsistently start-to-start — sometimes as a splitter (FS), sometimes as a forkball (FO), depending on its movement profile in a given game. If a pitch_type="splitter" query looks incomplete, check pitch_type="forkball" too, or filter using both.
Caching
By default every call re-fetches from Baseball Savant. Pass cache=True (Python) or --cache (CLI) to cache each game's raw Savant response locally, keyed by game_pk:
pitches = roki.pitches(last=8, cache=True)
mound pitches "Roki Sasaki" --last 8 --cache
Because a finished game's data never changes, a cache hit is never stale — calling again later for the same pitcher only fetches the starts it hasn't seen yet, without any separate "update" step. The cache defaults to ~/.cache/mound (override with the MOUND_CACHE_DIR environment variable, cache="/some/dir", or --cache-dir).
A game still in progress is the exception, and Mound handles it for you: its feed is returned but never written to the cache, since tonight's fourth inning would otherwise be all you ever get for that game. Queries against a live game re-fetch every time, and go back to being cached once it's final.
Video downloads
Each pitch's pitch_id doubles as the playId on a Baseball Savant clip page, which embeds a direct broadcast clip:
splitters.pitches[0].download_video() # videos/<pitch_id>.mp4
splitters.download_videos(out_dir="clips") # every pitch in the collection
# One specific at-bat, or one exact pitch within it
game = roki.pitches(game=717404)
at_bat = game.filter(at_bat_number=34)
at_bat.download_videos(out_dir="clips") # every pitch of that at-bat
at_bat.filter(pitch_number=3).pitches[0].download_video() # just the 3rd pitch of it
# Already have a pitch_id (e.g. from an earlier export)? Skip the
# pitcher/game lookup entirely and download it directly
from mound.video import download_video_by_id
download_video_by_id("7468ecb9-0918-3aca-8ef5-6396e6ab80c3")
mound video "Roki Sasaki" --pitch splitter --last 4 --out-dir clips
# Just one clip: pass --limit to cap how many clips are downloaded
mound video "Roki Sasaki" --pitch splitter --last 1 --limit 1
# One specific at-bat (--at-bat is only unique within a --game), or one
# exact pitch within it by adding --pitch-number on top
mound video "Roki Sasaki" --game 823524 --at-bat 6 --out-dir clips
mound video "Roki Sasaki" --game 823524 --at-bat 6 --pitch-number 3 --out-dir clips
# Already have a pitch_id (e.g. from an earlier export)? Skip the
# pitcher/game lookup entirely and download it directly
mound video-id 7468ecb9-0918-3aca-8ef5-6396e6ab80c3
Only the clip page's default embedded angle is captured this way (in practice, the home broadcast feed) — the page's away-broadcast toggle loads its clip via client-side JavaScript rather than a second tag in the page's HTML, so it isn't reachable with a plain request. Pitches with no video coverage are skipped with a warning by default; pass skip_errors=False to raise instead.
Examples
- Did Díaz miss "right in the middle"? — a full walkthrough, from a pitcher's name to a fact-checked postgame quote: finding his recent games, pulling every pitch, breaking down the mix and arsenal, testing a claim about location against the data, and downloading the video. Runnable as
examples/diaz_blown_saves.py. examples/roki_sasaki_end_to_end.py— the shorter tour: retrieve, filter to one pitch type, calculate, plot, export.
Data sources
Mound calls two unofficial, public MLB data services directly:
- MLB Stats API — player search/lookup and game logs, used to resolve a pitcher's identity and discover which games to pull.
- Baseball Savant — the
/gfgame-feed endpoint, used for pitch-by-pitch Statcast data (location, velocity, pitch type, count, outcome).
Both are unofficial and undocumented; endpoints or response shapes could change without notice. Mound sends a descriptive User-Agent and retries transient failures. Responses aren't cached unless you opt in with cache=True/--cache (see Caching).
Development
pip install -e ".[dev]"
pytest
ruff check .
Tests run entirely against mocked HTTP fixtures in tests/fixtures/ (via the responses library) and don't require network access.
Known limitations
- Caching is opt-in and off by default — every call re-fetches unless
cache=True/--cacheis given, and games in progress are never cached (see Caching). - Pitch classification comes from Statcast's own model and can be inconsistent for pitches with unusual movement (see the Roki Sasaki note above).
in_zoneis Statcast's calculated geometry, not the umpire's call, andis_strikeisn't the same thing as "located in the zone" — seeis_strikevs.in_zoneabove.- Only pitchers are supported as the primary retrieval unit; there's no batter-vs-pitcher matchup view yet (see ROADMAP.md).
- Historical data availability depends on Statcast/Savant coverage, which is generally reliable from 2015 onward.
- All requests are synchronous and unthrottled beyond basic retry/backoff; heavy bulk retrieval (e.g. a full season) will be slow.
- Video downloads only capture a clip page's default embedded broadcast angle (see Video downloads).
Roadmap
See ROADMAP.md for planned enhancements beyond this prototype.
Changelog
See CHANGELOG.md.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mound-0.7.1.tar.gz.
File metadata
- Download URL: mound-0.7.1.tar.gz
- Upload date:
- Size: 333.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55a3e781428747778a182f3f3a9312269d83b0afdcda6a4afe991e07921fce28
|
|
| MD5 |
e26c7d95d2aa8917dae87ee6df8be910
|
|
| BLAKE2b-256 |
75f72d63df8fda6da969d280219f3b42fe8171e3eb388e7f546fe4953f78f220
|
File details
Details for the file mound-0.7.1-py3-none-any.whl.
File metadata
- Download URL: mound-0.7.1-py3-none-any.whl
- Upload date:
- Size: 44.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cfc383f42dbbc8284597e5015df10db467bf61e2e75974f99e8cf0cfe7dbd39
|
|
| MD5 |
dbbdbe2fa31a68f56f0127a994cd5cc1
|
|
| BLAKE2b-256 |
bfbde2442092f3b4a3afd6c54919a2b85703d276e26cbf7701cb4a0147a4fd31
|