-
pubg-python是一款为PUBG开发人员API提供python封装的工具
资源介绍
Python
用于PUBG开发人员API的python包装器
安装
要安装包装器,只需使用pip
pip install pubg-python
或pipenv
pipenv install pubg-python
用法
指定分片
PUBG API按平台和地区对数据进行分片,因此,对于大多数请求,都需要在URL中指定一个分片。
from pubg_python import PUBG , Shard
api = PUBG ( '' , Shard . PC_NA )
碎片列表可在找到,包装常数可
样本
样本
比赛样本可以作为起点检索
sample = api . samples (). get ()
for match in sample . matches :
print ( match . id )
样品也可以按创建日期过滤
sample = api