czp

Results 3 issues of czp

我使用官方推荐的插件[hexo-tag-embed](https://github.com/hexojs/hexo-tag-embed?tab=readme-ov-file) ``` {% gist gist_id [filename] %} ``` 但是文章中不显示。

# schema ```python3 class BaseTaskOperateMsg(Record): task_ids = Array(Integer()) class TaskOffline2OnlineMsg(BaseTaskOperateMsg): pass ``` # producer ```python3 client = pulsar.Client("pulsar://localhost:6650") producer = client.create_producer( topic="taskOffline2Online1", schema=JsonSchema(TaskOffline2OnlineMsg), ) msg = TaskOffline2OnlineMsg(task_ids=[1, 2]) producer.send(msg) client.close()...

Hi, I tried to get favoriters of tweet many times, it was always be empty. my code: ```python class GetFavoritersService(XBaseService): async def run(self, cookie: dict, tweet_id: str, count: int =...