Skip to main content

perk-pushplus-python-sdk

pushplus(推送加) 官方接口的 Python SDK,覆盖 消息接口全部开放接口

  • 消息接口/send/batchSend):单渠道 + 多渠道发送,含 Builder API。
  • 开放接口/api/open/.../push/api/open/...):用户、消息、消息 token、群组、群组用户、好友、webhook、渠道、ClawBot、QQ 机器人、功能设置、预处理信息、图片服务、push 表单、push 文档、push 表格、消息规则。
  • AccessKey 自动管理:缓存 + 过期前自动刷新;code=401 自动刷新并重试一次。
  • 本地限流守卫:命中 code=900 后按 token 短路同 token 后续发送,避免被服务端长期封禁。
  • 回调解析message_complateadd_topic_useradd_friend 三类回调统一解析。
  • 类型友好dataclass + Enum,附带 py.typed

接口文档:

安装

pip install perk-pushplus-sdk

快速开始

1. 构建客户端

from perk_pushplus import PushPlusClient

client = (
    PushPlusClient.builder()
    .token("your_user_token")          # 个人中心 -> 一对一推送
    .secret_key("your_secret_key")     # 个人中心 -> 开发设置(开放接口必填)
    .build()
)

PushPlusClient 线程安全,建议作为单例长期持有。

2. 发送消息

from perk_pushplus import Channel, SendRequest, Template

# 最简:默认 wechat / html
short_code = client.send_simple("标题", "<b>内容</b>")

# 完整:使用 Builder
short_code = client.send(
    SendRequest.builder()
    .title("CPU 告警")
    .content("# CPU > 90%\n请尽快处理")
    .template(Template.MARKDOWN)
    .channel(Channel.WECHAT)
    .topic("ops")
    .callback_url("https://your.host/pushplus/callback")
    .build()
)

# push 表单 / 文档 / 表格:template 为 form/doc/excel 时需传 pushId(对应编码)
short_code = client.send(
    SendRequest.builder()
    .title("表单通知")
    .content("您有新的表单待填写")
    .template(Template.FORM)
    .push_id("表单编码")
    .build()
)
short_code = client.send(
    SendRequest.builder()
    .title("本周工作同步")
    .content("请查收")
    .template(Template.DOC)
    .push_id("文档编码")
    .build()
)
short_code = client.send(
    SendRequest.builder()
    .title("销售日报")
    .content("请查收")
    .template(Template.EXCEL)
    .push_id("表格编码")
    .build()
)

3. 多渠道发送

from perk_pushplus import BatchSendRequest, Channel

results = client.batch_send(
    BatchSendRequest.builder()
    .title("多渠道告警")
    .content("CPU > 90%")
    .channel(Channel.WECHAT).option("")
    .channel(Channel.WEBHOOK).option("bark")
    .channel(Channel.EXTENSION).option("")
    .build()
)
for r in results:
    print(r.channel, r.shortCode, r.code, r.message)

4. 开放接口

# 用户
info = client.user.my_info()
limit = client.user.get_limit_time()

# 消息
page = client.open_message.list()
result = client.open_message.query_result("short-code")

# 消息 token
from perk_pushplus import MessageTokenAddRequest
new_token = client.message_token.add(MessageTokenAddRequest(name="for-jenkins"))

# 群组
from perk_pushplus import TopicListQuery
topics = client.topic.list(TopicListQuery.of(1, 20, topic_type=0))
detail = client.topic.detail(topic_id=123)

# 好友
from perk_pushplus import PageQuery, TopicUserListQuery
qr = client.friend.get_qr_code(content="welcome")
friends = client.friend.list()
client.friend.add_blacklist(friends.list[0].friendId)
friend_blacklist = client.friend.blacklist_list(PageQuery.of(1, 20))
client.topic_user.add_blacklist(topic_relation_id=10)
topic_blacklist = client.topic_user.blacklist_list(TopicUserListQuery.of(1, 20, topic_id=1))

# webhook 渠道
webhooks = client.webhook.list()

# QQ 机器人:绑定 -> 认领群 -> 建配置 -> 发到群
from perk_pushplus import QqBotSaveRequest
link = client.qq_bot.get_bind_link()   # link.url 生成二维码,或私聊发送 link.bindCode
bind = client.qq_bot.bot_info()        # bind.isBind == 1 表示已绑定
qq_groups = client.qq_bot.group_list()
client.qq_bot.add(QqBotSaveRequest(qqName="运维告警群", qqCode="ops-group", qqGroupId=qq_groups[0].id))
client.send(SendRequest(
    title="服务告警",
    content="订单服务响应超时",
    channel=Channel.QQ,
    option="ops-group",  # 不传 option 则发给自己
    template=Template.TXT,
))

# 设置
client.setting.change_is_send(1)  # 启用发送

# 预处理(会员)
client.pre.test(...)

# 消息规则(会员)
from perk_pushplus import ForwardLogListQuery, ForwardRuleSaveRequest, ForwardVariable
client.forward_rule.save_setting(1)  # 开启,未命中时仍按默认方式推送
client.forward_rule.add(ForwardRuleSaveRequest(
    ruleName="阿里云监控多渠道",
    tokenId=-1,
    sourceType=1,
    titleTemplate="{{alertName}}",
    variables=[ForwardVariable(varName="alertName", sourceType=3, extractType=1, extractKey="alertName")],
))
rules = client.forward_rule.list()
logs = client.forward_log.list(ForwardLogListQuery.of(1, 20, match_result=1))

# 图片服务(一行上传到 PushPlus 图床)
r = client.image.upload_file("/tmp/logo.png")
print(r.url)  # 可访问的图片地址
imgs = client.image.list(PageQuery.of(1, 10))
client.image.delete(imgs.list[0].id)

# push 表单
from perk_pushplus import FormSaveRequest
form = client.form.create("用户满意度调查")
client.form.save(FormSaveRequest(
    id=form.id,
    title="用户满意度调查",
    items=[{"id": "q_name", "type": "input", "label": "您的姓名", "required": True}],
))
published = client.form.publish(form.id)
print(published.fillUrl)
client.send(SendRequest(
    title=published.title,
    content="请花1分钟完成填写",
    template=Template.FORM,
    pushId=published.formCode,
))

# push 文档
doc = client.doc.import_word("本周工作同步.docx")
client.doc.update_share(doc.docCode, 1, 0)
client.doc.publish(doc.docCode)
client.send(SendRequest(
    title=doc.title,
    content="请查收",
    template=Template.DOC,
    pushId=doc.docCode,
))

# push 表格
sheet = client.excel.import_excel("销售日报.xlsx")
client.excel.write_cells(sheet.docCode, "A1", [["日期", "销售额"], ["2026-08-13", 12800]], "Sheet1")
client.excel.publish(sheet.docCode)
client.send(SendRequest(
    title=sheet.title,
    content="请查收",
    template=Template.EXCEL,
    pushId=sheet.docCode,
))

图片服务

PushPlus 基于七牛云提供图片图床(30 天有效,可主动删除)。SDK 把「获取上传凭证 → multipart 表单上传 → 解析 URL」封装成一步:

from pathlib import Path
from perk_pushplus import ImageUploadToken, PageQuery

# 1) 最常用:一行上传本地文件,得到可访问的图片 URL
r = client.image.upload_file(Path("/tmp/logo.png"))
print(r.url)

# 2) 直接上传字节数组
client.image.upload_bytes(b"...", "screenshot.png")

# 3) 上传二进制流
with open("/tmp/a.png", "rb") as fp:
    client.image.upload_stream(fp, "a.png")

# 4) 已上传图片列表
page = client.image.list(PageQuery.of(1, 10))

# 5) 主动删除(未删除的图片默认 30 天后由系统自动清理)
client.image.delete(page.list[0].id)

如需自行控制凭证获取与上传过程(例如缓存 token、分布式上传):

token: ImageUploadToken = client.image.get_upload_token()
result = client.image.upload(token, b"...bytes...", "a.png", "image/png")

上传图片的真正请求会按七牛云规范以 multipart/form-data 提交到 uploadUrl不会携带 PushPlus 的 access-key;其余三个接口(获取凭证 / 列表 / 删除)走 PushPlus 开放接口,自动带上 access-key

5. 异步发送

fut = client.send_async(SendRequest(content="hello"))
print(fut.result(timeout=10))

6. 回调解析

from perk_pushplus import CallbackEvent, callback_parser

# 在你的 web 框架(Flask/FastAPI/Django/...)的回调入口里:
def on_pushplus_callback(raw_body: str) -> str:
    payload = callback_parser.parse(raw_body)
    if payload.event is CallbackEvent.MESSAGE_COMPLETE:
        info = payload.messageInfo
        print("发送结果", info.shortCode, info.get_send_status_enum())
    elif payload.event is CallbackEvent.ADD_TOPIC_USER:
        print("新订阅", payload.topicUserInfo.openId)
    elif payload.event is CallbackEvent.ADD_FRIEND:
        print("新好友", payload.friendInfo.token, payload.qrCode)
    return "ok"

配置

PushPlusClient.builder() 支持的全部参数:

方法 默认值 说明
token(str) - 用户 token 或消息 token;发送消息接口默认使用
secret_key(str) - 开放接口 secretKey
base_url(str) https://www.pushplus.plus 服务地址
connect_timeout(float) 10.0 连接超时
read_timeout(float) 30.0 读超时
access_key_refresh_ahead_seconds(int) 300 在 AccessKey 过期前多少秒主动刷新
log_request(bool) False 打印 DEBUG 级请求/响应日志
rate_limit_guard_enabled(bool) True 是否启用本地限流守卫(命中 900 后短路)
rate_limit_cooldown_seconds(float) None(次日 0 点) 命中 900 后的本地禁推时长(秒)
user_agent(str) perk-pushplus-python-sdk/<v> UA 头
http_requester(HttpRequester) 内置 requests 实现 自定义 HTTP 客户端(aiohttp/httpx 等可适配)

错误处理

所有请求异常都会抛出 PushPlusError

from perk_pushplus import ErrorCode, PushPlusError

try:
    client.send_simple("t", "c")
except PushPlusError as exc:
    if exc.is_rate_limited():
        print("命中 code=900,已被本地守卫拒绝")
    elif exc.error_code is ErrorCode.NOT_VERIFIED:
        print("账号未实名")
    else:
        print(exc.code, exc.message)

PushPlusError 暴露:

  • code:业务 code 或 HTTP 状态码
  • message:错误描述
  • error_code -> ErrorCode 枚举
  • is_rate_limited():是否为 code=900

自定义 HTTP 客户端

实现 HttpRequesterProtocol)即可:

from perk_pushplus import HttpRequester, HttpResponse

class MyRequester(HttpRequester):
    def execute(self, method, url, headers, body) -> HttpResponse:
        ...

client = PushPlusClient.builder().http_requester(MyRequester()).build()

兼容性

  • Python >= 3.8
  • 仅依赖 requests

许可证

Apache License 2.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

perk_pushplus_sdk-1.2.3.tar.gz (59.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

perk_pushplus_sdk-1.2.3-py3-none-any.whl (71.4 kB view details)

Uploaded Python 3

File details

Details for the file perk_pushplus_sdk-1.2.3.tar.gz.

File metadata

  • Download URL: perk_pushplus_sdk-1.2.3.tar.gz
  • Upload date:
  • Size: 59.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.13

File hashes

Hashes for perk_pushplus_sdk-1.2.3.tar.gz
Algorithm Hash digest
SHA256 45eb1b2b2c2cf4a0b4b945ad2f6cbfecd3773412caab1cb05dec0aeff70dbb73
MD5 70a61eff8e305565a36906f520f290cd
BLAKE2b-256 fe8a432a49d0a9f3942207f1e33442cd8ff68c8c50054a32d1a6a35d89a21f5f

See more details on using hashes here.

File details

Details for the file perk_pushplus_sdk-1.2.3-py3-none-any.whl.

File metadata

File hashes

Hashes for perk_pushplus_sdk-1.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 fec33b6a20977b37d6c68ad9f6838d7e355fb81c7ee729dddff72fbf6c3ace63
MD5 9e36fa1667f4bd8fdc9c27b314b0211d
BLAKE2b-256 7b459ea750b8a31f321901c9cc765e10a31ca21b134e10f3e7f6a85a5509b681

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.2.3 This release

2 files

1.2.2

2 files

1.2.1

2 files

1.2.0

2 files

1.1.1

2 files

1.1.0

2 files

1.0.1

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page