此为 Python3
脚本
使用前,请使用下方命令安装依赖
pip install -r requirements.txt
导入工具包
from utils import upload_pgyer as PgyerUtil
调用 upload_to_pgyer
方法即可
# 上传完成回调
def upload_complete_callback(isSuccess, result):
if isSuccess:
print('上传完成')
else:
print('上传失败')
app_path = '<your app path>' # App包路径
pgyer_api_key = '<your api key>' # API KEY
pgyer_password = '<your app install password>' # 安装密码
PgyerUtil.upload_to_pgyer(
path = app_path,
api_key = pgyer_api_key,
password=pgyer_password,
callback=upload_complete_callback
)