From 7c565d6f17d88bff6f5bbe8723f9b0204c564e68 Mon Sep 17 00:00:00 2001 From: Matthew Spah Date: Fri, 28 Aug 2026 11:28:49 -0700 Subject: [PATCH 1/2] docs: polish README introduction --- README.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 34b2c15..b1b7650 100644 --- a/README.md +++ b/README.md @@ -13,17 +13,13 @@ -`python-mlb-statsapi` provides Python access to the MLB Stats API for teams, players, schedules, games, stats, and more. +`python-mlb-statsapi` is a Python client for MLB's Stats API. -Returned objects are built with [Pydantic](https://docs.pydantic.dev/), and model fields use Python `snake_case` names. +- **Broad API coverage:** Query teams, players, schedules, games, statistics, and more. +- **Pythonic models:** Work with [Pydantic](https://docs.pydantic.dev/) objects whose fields use `snake_case` names. +- **Sync and async:** Choose the synchronous `Mlb` client or the asynchronous `AsyncMlb` client. The async API is additive, so existing sync users can upgrade without changing their code. -Version 1.1 adds first-class async support through `AsyncMlb` while keeping the existing synchronous `Mlb` API available without code changes for sync users. - -### Copyright Notice - -This package and its authors are not affiliated with MLB or any MLB team. This API wrapper interfaces with MLB's Stats API. Use of MLB data is subject to the notice posted at http://gdx.mlb.com/components/copyright.txt. - -###### This is an educational project - Not for commercial use. +> **Unofficial project.** This package is not affiliated with or endorsed by Major League Baseball or any MLB team. Use of MLB data is subject to [MLB's copyright notice](https://gdx.mlb.com/components/copyright.txt). Intended for educational, non-commercial use. ![MLB Stats API](https://user-images.githubusercontent.com/2068393/203456246-dfdbdf0f-1e43-4329-aaa9-1c4008f9800d.jpg) From 14d1db6603e85ce20429d7bcdac1b232455a4d13 Mon Sep 17 00:00:00 2001 From: Matthew Spah Date: Fri, 28 Aug 2026 11:31:47 -0700 Subject: [PATCH 2/2] docs: preserve disclaimer wording --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b1b7650..7baac00 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ - **Pythonic models:** Work with [Pydantic](https://docs.pydantic.dev/) objects whose fields use `snake_case` names. - **Sync and async:** Choose the synchronous `Mlb` client or the asynchronous `AsyncMlb` client. The async API is additive, so existing sync users can upgrade without changing their code. -> **Unofficial project.** This package is not affiliated with or endorsed by Major League Baseball or any MLB team. Use of MLB data is subject to [MLB's copyright notice](https://gdx.mlb.com/components/copyright.txt). Intended for educational, non-commercial use. +> **Unofficial project.** This package and its authors are not affiliated with or endorsed by Major League Baseball or any MLB team. Use of MLB data is subject to [MLB's copyright notice](https://gdx.mlb.com/components/copyright.txt). This is an educational project—not for commercial use. ![MLB Stats API](https://user-images.githubusercontent.com/2068393/203456246-dfdbdf0f-1e43-4329-aaa9-1c4008f9800d.jpg)