Last active
July 12, 2025 06:13
-
-
Save krishnamandanapu/93e93b3af4776ecf13ee3d75eb5a213f to your computer and use it in GitHub Desktop.
Instagram Bot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment