taiwan-basketball

Taiwan professional basketball stats, scores, schedules, player data, live scores, box scores, notifications, and transactions for PLG and TPBL.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "taiwan-basketball" with this command: npx skills add ichendong/taiwan-basketball

Taiwan Basketball Skill - 台灣職籃資訊查詢 🏀

Query PLG (P. LEAGUE+) and TPBL (台灣職業籃球大聯盟) game results, schedules, standings, player stats, league leaders, live scores, box scores, notifications, and transactions.

Data Sources

SourceDescription
PLG official websiteHTML scraping (server-side rendered)
TPBL official REST APIapi.tpbl.basketball
台灣籃球維基館Camoufox (bypasses Anubis protection)
Local SQLite DB~/.local/share/taiwan-basketball/basketball.db

Features

FeatureScriptSource
Schedule (with countdown)basketball_schedule.pyPLG website / TPBL API
Standingsbasketball_standings.pyPLG website / TPBL API
Game resultsbasketball_games.pyPLG website / TPBL API
Player statsbasketball_player.pyPLG website / TPBL API
League leadersbasketball_leaders.pyPLG website / TPBL API
Player comparisonbasketball_compare.pyPLG website / TPBL API
Live scoresbasketball_live.pyTPBL API / PLG time-based
Box Scorebasketball_boxscore.pyTPBL API / PLG website
Notificationsbasketball_notify.pyPLG website / TPBL API
Transactionsbasketball_transactions.pyPLG news / TPBL API
Wiki (awards/history)_wiki_api.py台灣籃球維基館 (Camoufox)

Architecture

scripts/
  _cache.py            # 磁碟 TTL 快取模組
  _http.py             # HTTP 工具(重試 / 快取)
  _utils.py            # 共用工具(格式化、球隊別名、球員別名、並行擷取)
  _tpbl_api.py         # TPBL REST API 封裝
  _plg_api.py          # PLG HTML 爬蟲封裝
  _wiki_api.py         # 台灣籃球維基館(Camoufox 繞過 Anubis)
  _basketball_api.py   # 兼容性匯入層(維持所有腳本相容)
  _db.py               # SQLite 資料持久化模組
  basketball_*.py      # CLI 腳本

並行擷取:所有 --league all 查詢均使用 ThreadPoolExecutor 並行發送 PLG/TPBL 請求,大幅縮短等待時間。

Quick Start

All scripts use uv run for dependency management.

Schedule

uv run scripts/basketball_schedule.py --league plg
uv run scripts/basketball_schedule.py --league tpbl
uv run scripts/basketball_schedule.py --league all       # PLG + TPBL 合併查詢
uv run scripts/basketball_schedule.py -l plg --team 勇士
uv run scripts/basketball_schedule.py -l all --next      # 只顯示下一場比賽及倒數
uv run scripts/basketball_schedule.py -l all --format table
uv run scripts/basketball_schedule.py -l all --stage playoffs    # 只顯示季後賽賽程
uv run scripts/basketball_schedule.py -l tpbl --stage play-in   # 只顯示季後挑戰賽賽程

Standings

uv run scripts/basketball_standings.py --league plg
uv run scripts/basketball_standings.py --league tpbl
uv run scripts/basketball_standings.py --league plg --format table

Game Results

uv run scripts/basketball_games.py --league plg
uv run scripts/basketball_games.py --league tpbl
uv run scripts/basketball_games.py --league all            # PLG + TPBL 合併查詢
uv run scripts/basketball_games.py --league all --last 5   # 最近 5 場結果
uv run scripts/basketball_games.py -l tpbl --team 戰神
uv run scripts/basketball_games.py -l all --last 10 --format table
uv run scripts/basketball_games.py -l tpbl --stage play-in  # 只顯示季後挑戰賽結果
uv run scripts/basketball_games.py -l all --stage playoffs  # 只顯示季後賽結果

Player Stats

uv run scripts/basketball_player.py --league plg --player 林書豪
uv run scripts/basketball_player.py --league tpbl --player 林書豪
uv run scripts/basketball_player.py --league all --player 林書豪
uv run scripts/basketball_player.py -l plg -p 林書豪 --season 2023-24
uv run scripts/basketball_player.py -l tpbl -p 夢想家           # 球隊搜尋

Player names support aliases (e.g. 高柏鎧 finds 吉爾貝克 in PLG, 吉爾貝克 finds 高柏鎧 in TPBL).

League Leaders(排行榜)

uv run scripts/basketball_leaders.py --league plg --stat pts          # PLG 得分王
uv run scripts/basketball_leaders.py --league tpbl --stat reb --top 5 # TPBL 籃板前5名
uv run scripts/basketball_leaders.py -l tpbl -s ast --format table    # 表格輸出
uv run scripts/basketball_leaders.py -l all -s pts --top 10           # 雙聯盟得分榜

Supported --stat values: pts(得分)、reb(籃板)、ast(助攻)、stl(抄截)、blk(阻攻)、tov(失誤)、pf(犯規)、eff(效率值,TPBL 限定)

Player Comparison(球員比較)

uv run scripts/basketball_compare.py --league plg --player1 林書豪 --player2 戴維斯
uv run scripts/basketball_compare.py -l tpbl -p1 林志傑 -p2 陳盈駿
uv run scripts/basketball_compare.py -l plg -p1 林書豪 -p2 戴維斯 --season 2023-24
uv run scripts/basketball_compare.py -l plg -p1 林書豪 -p2 戴維斯 --format table

Supports fuzzy search by player name or team name. Returns per-season stats (GP, avg minutes/pts/reb/ast/stl/blk, FG/3P/FT splits, efficiency, PIR) plus career totals.

  • PLG: Scrapes /stat-player + /all-players for player index, then /player/{ID} for detailed per-season stats.
  • TPBL: Queries /games/stats/players?division_id={id} for all divisions across all seasons. Recalculates FG%/3P%/FT% from accumulated makes/attempts for cross-division accuracy.

Live Scores(即時比分)✨

uv run scripts/basketball_live.py --league all
uv run scripts/basketball_live.py --league tpbl --format table
uv run scripts/basketball_live.py --league plg
  • TPBL: Returns games with status=IN_PROGRESS from official API.
  • PLG: Estimates live games based on scheduled time ±3 hours (no real-time API). Recommend visiting pleagueofficial.com for exact scores.

Box Score(單場詳情)✨

# 先取得 game_id
uv run scripts/basketball_games.py --league tpbl --last 5 --format table

# 查詢 box score(TPBL 用數字 ID,PLG 用如 G101 格式)
uv run scripts/basketball_boxscore.py --league tpbl --game-id 123
uv run scripts/basketball_boxscore.py --league plg --game-id G101
uv run scripts/basketball_boxscore.py --league tpbl --game-id 123 --format table

Returns game summary (score, venue, date) and per-player stats (pts/reb/ast/stl/blk/tov/pf/min/FG splits+/-).

Notifications(比賽提醒)✨

# 訂閱管理
uv run scripts/basketball_notify.py add --team 戰神 --league tpbl
uv run scripts/basketball_notify.py add --team 勇士 --league plg
uv run scripts/basketball_notify.py list
uv run scripts/basketball_notify.py remove --team 戰神 --league tpbl

# 檢查提醒(訂閱的球隊,未來 24 小時)
uv run scripts/basketball_notify.py check
uv run scripts/basketball_notify.py check --hours 48 --format table

# 臨時查詢(不需要先訂閱)
uv run scripts/basketball_notify.py check --team 戰神 --league tpbl --hours 72

Subscriptions are stored in the local SQLite database. Can be used with cron for automated alerts.

Transactions(球員異動 / 交易)✨

uv run scripts/basketball_transactions.py --league tpbl
uv run scripts/basketball_transactions.py --league plg --format table
uv run scripts/basketball_transactions.py --league all

# 從本地 DB 讀取已儲存資料
uv run scripts/basketball_transactions.py --league all --from-db
  • TPBL: Tries official API endpoints for transaction data.
  • PLG: Parses news page for player movement reports (transfers, signings, etc.).
  • Results are auto-saved to local SQLite DB for offline access.

CLI Parameters

ScriptParamDescription
All--league, -lplg, tpbl, or all
All--format, -fjson (預設) or table (ASCII 表格)
All--no-cache停用磁碟快取
All--debug輸出 debug 訊息(或設 BASKETBALL_DEBUG=1
schedule, games--team, -tTeam name filter (supports aliases)
basketball_schedule.py--next只顯示下一場比賽及倒數計時
basketball_games.py--last, -nShow only last N results (default: all)
basketball_player.py--player, -pPlayer name to search
basketball_player.py--season, -sFilter by season (e.g., 2023-24)
basketball_leaders.py--stat, -sStat category (pts/reb/ast/stl/blk/tov/pf/eff)
basketball_leaders.py--top, -nShow top N players (default: 10)
basketball_compare.py--player1, -p1First player name
basketball_compare.py--player2, -p2Second player name
basketball_compare.py--season, -sCompare a specific season (default: career)
basketball_boxscore.py--game-id, -g比賽 ID(TPBL 數字,PLG 如 G101)
schedule, games--stage, -s賽制過濾:regular, playoffs, play-in, finals, preseason
basketball_notify.py check--team, -t指定球隊(不指定則用訂閱清單)
basketball_transactions.py--from-db從本地 DB 讀取(不發送 API 請求)
basketball_notify.py check--hours查詢未來幾小時內的比賽(預設 24)
basketball_transactions.py--limit, -n最多顯示筆數(預設 30)

Output JSON includes a league field per game when using --league all. Output JSON includes a stage field per game indicating the competition stage:

Stage說明
regular例行賽
play-in季後挑戰賽(TPBL)
playoffs季後賽(TPBL 此階段即總冠軍賽)
finals總冠軍賽(PLG 專有)
preseason熱身賽

Per-Season Team Attribution

PLG player pages always show the current team, not the team the player played for in each season. We use a three-layer mechanism to correctly determine per-season teams:

  1. Preciser API (primary) — Scrapes per-game "效力球隊" column from the player page's AJAX data
  2. Experience section (fallback) — Parses the "經歷" block (e.g. 2022-24 PLG 高雄17直播鋼鐵人) and maps periods to seasons
  3. Page basic info (last resort) — Always shows current team, least accurate

Example: 飛米 (Ironmy) played for 高雄17直播鋼鐵人 in 22-23/23-24, but the PLG player page always shows 臺北富邦勇士. The three-layer mechanism correctly resolves this.

Team name normalization: All team names are normalized to remove "籃球隊" suffixes and English names (e.g. 臺北富邦勇士Taipei Fubon Braves臺北富邦勇士).

Player Aliases

Cross-league name resolution for naturalized/foreign players:

AliasLeagueResolved To
高柏鎧PLG吉爾貝克
吉爾貝克TPBL高柏鎧
GilbeckPLG/TPBLRespective official name
飛米PLG飛米
魔獸PLG魔獸 (Dwight Howard)
霍華德PLG魔獸

台灣籃球維基館 (Wiki)

台灣籃球維基館 (wikibasketball.dils.tku.edu.tw) uses Anubis protection that blocks web_fetch and Playwright. Use Camoufox (shared with CPBL skill's venv) to access it.

When to query the wiki

  • ✅ Player cross-league experience (PLG → T1 → TPBL full team history)
  • T1 league historical data (defunct league, not in official APIs)
  • ✅ Player awards (MVP, Defensive Player of the Year, All-League teams, etc.)
  • Naturalization info, career team changes
  • ❌ Foreign/naturalized players may not have wiki pages (focus on domestic players)

How to query

Use the CPBL venv's Camoufox (skills/cpbl/.venv). Do NOT use web_fetch or Playwright for wiki pages.

from camoufox.sync_api import Camoufox

with Camoufox(headless=True) as browser:
    page = browser.new_page()
    page.goto('https://wikibasketball.dils.tku.edu.tw/wiki/index.php?title=林書豪', timeout=60000)
    page.wait_for_timeout(10000)
    text = page.inner_text('#mw-content-text')
    browser.close()

Limitations

  • Camoufox startup is slow (10-15 seconds), not suitable for frequent queries
  • Player page names may differ from common names (e.g. 飛米 has no wiki page)
  • Experience parsing is still being improved (wiki link syntax handling)

Caching

Results are cached on disk at ~/.cache/taiwan-basketball/ with the following TTLs:

Data typeTTL
Schedule5 minutes
Game results10 minutes
Standings10 minutes
Player stats1 hour
League leaders10 minutes
Live scores1 minute
Box Score5 minutes
Transactions1 hour

Use --no-cache to bypass cache, or set BASKETBALL_DEBUG=1 to see cache hits/misses.

League Codes

CodeLeague
plgP. LEAGUE+ (4 teams)
tpbl台灣職業籃球大聯盟 (7 teams)

Team Aliases

PLG

AliasFull Name
富邦, 勇士臺北富邦勇士
璞園, 領航猿桃園璞園領航猿
台鋼, 獵鷹台鋼獵鷹
洋基, 洋基工程洋基工程
國王新北國王 (已轉至 TPBL)
攻城獅新竹街口攻城獅 (已轉至 TPBL)
夢想家福爾摩沙台新夢想家 (已轉至 TPBL)
鋼鐵人高雄鋼鐵人 (已解散)

TPBL

AliasFull Name
台新, 戰神臺北台新戰神
中信, 特攻新北中信特攻
國王新北國王
雲豹桃園台啤永豐雲豹
夢想家福爾摩沙夢想家
攻城獅新竹御嵿攻城獅
海神高雄全家海神

Dependencies

Auto-installed via uv:

  • beautifulsoup4 — HTML parsing
  • lxml — Fast parser
  • sqlite3 — 內建 Python 模組,無需安裝

Notes

  • PLG: Server-side rendered HTML, no JS needed. Player pages use Preciser API for per-season team data. Experience section provides fallback team attribution.
  • TPBL: Official REST API at api.tpbl.basketball. Player stats via /games/stats/players?division_id={id} across all seasons.
  • Team name normalization: All PLG team names are normalized to remove "籃球隊" suffixes and English names for consistency.
  • Player aliases: Supports naturalized name changes (高柏鎧↔吉爾貝克) and cross-league translation names.
  • Stage filter: TPBL playoffs is the championship finals (no separate finals stage). PLG has both playoffs and finals.
  • Experience period formats: PLG experience blocks support both YYYY-YY ranges and YYYY single-year formats (e.g. 林書豪's 2023 PLG 高雄17直播鋼鐵人).
  • Experience league filter: Only PLG experience entries are used when determining PLG per-season teams (CBA/NBA entries are ignored).
  • Retry: All HTTP requests retry up to 3 times with exponential backoff on network errors.
  • FG% accuracy: TPBL percentage stats (FG%/3P%/FT%) are recalculated from cumulative makes/attempts for cross-division accuracy.
  • Season format: TPBL seasons display as YY/YY (e.g., 24/25); PLG seasons as YYYY-YY (e.g., 2023-24).
  • Live scores: TPBL API natively supports IN_PROGRESS status. PLG uses time-window estimation (±3h from scheduled time).
  • Box Score: TPBL tries multiple API endpoints; PLG scrapes individual game pages. If data is unavailable, a note field explains.
  • SQLite DB: Data is stored at ~/.local/share/taiwan-basketball/basketball.db. Schema is auto-created on first use.
  • Parallel fetch: --league all queries run PLG and TPBL requests concurrently using ThreadPoolExecutor.
  • SBL (超級籃球聯賽) is not supported — official site (sleague.tw) is a Vue SPA with authenticated GraphQL API.
  • avg_minutes output is unified to MM:SS format for both leagues.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Research

NBA Today Pulse

Timezone-aware NBA daily intelligence using bundled public ESPN/NBA fetchers plus official NBA injury-report PDFs, with compact day fast path, same-day stats...

Registry SourceRecently Updated
5192Profile unavailable
General

Acca Tracker

Track accumulator (acca) betting slips across football, basketball, and tennis — parses slip photo or text, checks live scores every 15 minutes, and reports...

Registry SourceRecently Updated
1660Profile unavailable
General

NBA Tracker

提供NBA球队和球员赛程、实时比分及关键时刻提醒,支持追踪球员伤病和自动添加比赛到日历,适合观赛辅助。

Registry SourceRecently Updated
4362Profile unavailable
General

Bracket Oracle

NCAA March Madness basketball tournament bracket generator. Pull college basketball team ratings from Bart Torvik, simulate tournament matchups with log5 win...

Registry SourceRecently Updated
3891Profile unavailable