Command Line utility for pitchbase.
Project description
pitchbase
Command Line utility for pitchbase.
Support python3 only.
Settings
config file($HOME/.pitchbase)
default:
host: stg-ap.pitchbase.jp
organization_code: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
username: hiroshi.toyama
password: xxxxxxxxxx
grant_type: xxxxxxxxxx
environment variables
export PITCHBASE_HOST=stg-ap.pitchbase.jp
export PITCHBASE_ORGANIZATION_CODE=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
export PITCHBASE_USERNAME=hiroshi.toyama
export PITCHBASE_PASSWORD=xxxxxxxxxx
export PITCHBASE_GRANT_TYPE=xxxxxxxxxx
Examples
get pitch-data by command line
$ pitchbase pitch-data --filter="game_id eq '2021051427'" | jq .
{
"results": [
{
"1b_code": "2019007",
"2b_code": "2020065",
"3b_code": "2021049",
"__c": 1620982019374,
"__u": 1621089404671,
"_id": "17bb26ebcb7c07aa1caedef7f4e1342a_2021051427_011010101",
...
get movie-angle by command line
$ pitchbase movie-angle --filter="game_id eq '2021080527'" | jq .
{
"results": [
{
"__c": 1628685058185,
"__u": 1628688147039,
"_id": "6113c3021bf476531525d8b5",
...
get game-schedule by command line
pitchbase game-schedule --filter="game_id eq '2021080527'" | jq .
{
"results": [
{
"__c": 1628160045124,
"__u": 1628259411117,
...
get trackman record by command line
pitchbase trackman-record --filter="game_id eq '2021051427'" | jq .
{
"results": [
{
"__c": 1628160045124,
"__u": 1628259411117,
...
get player-master by command line
pitchbase player-master --filter="team.code eq 2012001" | jq .
{
"results": [
{
"__c": 1610950983947,
"__u": 1615180733457,
"affiliation_history": null,
"batting": "R",
"birthday": 20010703,
"birthplace": null,
"blood_type": "AB",
"disabled": false,
"draft_year": "2019",
"ebis_code": null,
"face_file": "https://stg-www.pitchbase.jp/img/profile/2021/2012001/2020002.jpg",
"fixed": true,
"height": null,
"is_latest": true,
"join_date": null,
"join_scene": null,
"join_year": null,
"last_game_date": null,
"leave_date": null,
"note": null,
"order": null,
"organization_code": null,
"pitching": "R",
"player_code": "2020002",
"player_name": "東妻 純平",
"player_name_en": "Jumpei Azuma",
"player_no": "57",
"player_short_name": "東 妻",
"player_short_name_en": null,
"player_type": null,
"runner_rank": null,
"season": 2021,
"simple_player_code": "2",
"team": {
"code": "2012001",
"sub_id": "12",
"name": "横浜DeNAベイスターズ"
},
"throwing_style": null,
"weight": null
},
...
get team-master by command line
$ pitchbase team-master --filter="season eq 2021" | jq .
{
"results": [
{
"__c": 1610951278169,
"__u": 1610951278169,
"bis_team_code": "1992001",
"classification": null,
"disabled": false,
"division": null,
"fixed": true,
"home_stadium_code": null,
"is_latest": true,
"league": "P",
"order": null,
"organization_code": null,
"parent_team_code": null,
"season": 2021,
"team_code": "1992001",
"team_formal_name": "千葉ロッテマリーンズ",
"team_formal_name_en": null,
"team_initial": "ロ",
"team_name": "マリーンズ",
"team_name_e": "Marines",
"team_name_es": "M",
"team_name_s": "ロッテ",
"team_name_tm": [
"CHI_MAR",
"MIN_MAR"
]
},
...
Python API
from boto3.session import Session
from pitchbase.auth import Auth
from pitchbase import Pitchbase
import json
client = Session().client("secretsmanager")
response = client.get_secret_value(
SecretId='stg_pitchbase_auth_info'
)
data = json.loads(response.get("SecretString"))
auth = Auth(
endpoint=data.get("endpoint"),
organization_code=data.get("organization_code"),
username=data.get("username"),
password=data.get("password"),
grant_type=data.get("grant_type"),
)
pitchbase = Pitchbase(auth=auth)
team_master = pitchbase.get_team_master(filter="season eq 2021")
print(team_master)
Installation
$ pip install git+https://${YDB_GITHUB_TOKEN}:x-oauth-basic@github.dena.jp/AI/pitchbase@vX.X.X
or
$ pip install git+ssh://git@github.dena.jp/AI/pitchbase@vX.X.X
CI
install test package
$ ./scripts/ci.sh install
test
$ ./scripts/ci.sh run-test
flake8 and black and pytest.
release pypi
$ ./scripts/ci.sh release
git tag and pypi release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pitchbase-0.13.1.tar.gz
(9.1 kB
view details)
File details
Details for the file pitchbase-0.13.1.tar.gz
.
File metadata
- Download URL: pitchbase-0.13.1.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc5aa8c9e5cc526c952701a89ea791201601bd173195243cdfa002348b4c4f51 |
|
MD5 | 4fa9478aceb41af6b3295d8084ae579d |
|
BLAKE2b-256 | dd77d9ec296306fcbe2f85b02c742deb0100759955c452442e1134d8f645ad64 |