Instagram直接消息机器人
使用Instagram机器人发送直接和群组消息。 使用Python 3.7.2和Selenium。
范例:
from instadm import InstaDM
if __name__ == '__main__' :
# Auto login
insta = InstaDM ( username = 'your_username' , password = 'your_password' , headless = False )
# Send message
insta . sendMessage ( user = 'username_target' , message = 'Hey !' )
# Send message
insta . sendGroupMessage ( users = [ 'user1' , 'user2' ], message = 'Hey !' )
与InstaPY合作
在构造函数上使用instapy_workspace参数:
from instadm import InstaDM
if __nam
1