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