摸鱼派社区 (https://fishpi.cn/) 的 API Package,可以快速开发出一款应用支援社区功能。
- 用户信息;
- 聊天室;
- 文件上传;
- 通知信息;
pip install fishpi
from fishpi import FishPi
# 登录获取 apiKey
apiKey = ''
fish = FishPi()
rsp = fish.login(
username='username',
passwd='password123456',
mfaCode='789546'
)
if rsp['code'] == 0:
apiKey = rsp.Key
# 通过 apiKey 获取登录用户信息
fish = FishPi(apiKey)
fish.account.info()
# 获取用户自定义表情包
emojis = fish.emoji.get()
# 获取默认表情包
defaultEmoji = fish.emoji.default
# 监听聊天室消息
fish.chatroom.add_listener(lambda msg: print(msg))
# 向聊天室发送信息(需要登录)
fish.chatroom.send('Hello World!')
# 向聊天室发送红包
fish.chatroom.redpacket.send(
type='random',
money=32,
count=2,
msg='摸鱼者,事竟成!',
)