Posts

Showing posts from April, 2022

Send Message on Instagram Using Python

Code : from instabot import Bot bot=Bot() bot.login(username="your_username",password="your_password") bot.send_message("Hello",["receiver_username"]) Thank You