1

注意 -> 我是 javascript 开发人员,没有使用 Python 的经验

在 quickstart.py 脚本中,我添加了从某些 API 中提取配置文件的请求

response = requests.get("http://127.0.0.1:3333/api/v1/internal/profiles/1")
profile = response.text

print(profile)
set_workspace(path="fullpath" + insta_username)
session = InstaPy(username=insta_username,password=insta_password,headless_browser=True)

with smart_run(session):
     session.follow_user_followers(['xxxx'], amount=10, randomize=False)

我希望首先执行请求,然后运行 ​​Instapy 会话

当前的行为是首先运行带有 INFO 控制台信息的 Instapy 脚本,跟随配置文件关注者,然后打印来自 API 请求的响应,然后设置工作区

4

0 回答 0