📜  从 pc python 代码示例发布到 Instagram

📅  最后修改于: 2022-03-11 14:45:24.385000             🧑  作者: Mango

代码示例1
from instapy_cli import client
 
username = "username"
password = "**********"
image = 'glitch.png'
text = 'Flask for Python' + '\r\n' + '#glitch #python #gif https://pythonprogramming.altervista.org/publish-app-or-blog-with-glitch-com-and-python-in-no-time/'
with client(username, password) as cli:
    cli.upload(image, text)