如何使用 InstaPy 创建 Instagram 机器人
InstaPy 是一个 python 包,我们可以使用它来自动化我们的 Instagram 帐户,
它会喜欢帖子、评论、关注人们、取消关注人们等等.
什么是 instapy
Instapy 是一个自动化工具,它使用 自动化社交 媒体 交互 工具 来 “ 培养” 使用 Python中的 Selenium 包 的 点赞、 评论 和 Instagram 关注者 。
安装火狐浏览器(必须的)
创建一个文件夹并在其中打开PowerShell并运行命令
安装 InstaPy(在 PowerShell 或 cmd 中):
pip install instapy
如果上一个命令出现错误:
py -3 -m pip install instapy
在文件夹中创建一个名为instabot.py的文件(你可以将其命名为任何你想要的名字)
# imports
from instapy import InstaPy
from instapy import smart_run
# login credentials
insta_username = 'your username' # <- enter username here
insta_password = 'yourpassword' # <- enter password here
# get an InstaPy session!
# set headless_browser=True to run InstaPy in the background
session = InstaPy(username=insta_username,
password=insta_password,
headless_browser=False)
with smart_run(session):
""" Activity flow """
# general settings
session.set_relationship_bounds(enabled=True,
delimit_by_numbers=True,
max_followers=1000,
min_followers=45,
min_following=77)
#find 10 profiles with these tags
session.like_by_tags(["programming", "#code"], amount=10)
#follow them all
session.set_do_follow(True, percentage=100)
运行脚本:打开相同的powershell然后运行
py instabot.py
然后它会启动一个火狐浏览器,它会自动找到匹配的个人资料和喜欢的图像并关注。
THE END
0
二维码
海报
如何使用 InstaPy 创建 Instagram 机器人
InstaPy 是一个 python 包,我们可以使用它来自动化我们的 Instagram 帐户,它会喜欢帖子、评论、关注人们、取消关注人们等等.