Skip to content

Instantly share code, notes, and snippets.

@kmandana
kmandana / Instagrambot.py
Last active July 12, 2025 06:13
Instagram Bot
class InstagramBot():
def __init__(self, username, password, url, msg):
self.username = username
self.password = password
self.url = url
self.msg = msg
self.browser = webdriver.Chrome()