我如何在 tweepy 中提及某人?

时间:2021-03-09 15:05:48

标签: python twitter tweepy

我试图将自己称为测试,但它不起作用。有人可以帮忙吗?

api.update_status(api.get_user(myaccountusername))

1 个答案:

答案 0 :(得分:0)

您需要定义提及(使用用户 screen_name)作为推文的一部分

api.update_status(f'@user1 @user2  check this out')

api.get_user(myaccountusername) 的调用返回完整的 User 对象

User(_api=<tweepy.api.API object at 0x101cb39a0>, _json={'id': 3300744875, 
'id_str': '3300744875', 'name': 'Beppe Catanese', 'screen_name': 
'beppecatanese', 'location': 'Amsterdam, The Netherlands', 'profile_location': 
None, 'description': 
etc.. 
etc...