All Projects → CamTosh → Instagram Bot Dm

CamTosh / Instagram Bot Dm

Instagram bot to send direct messages

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Instagram Bot Dm

Instagram Bot
An Instagram bot developed using the Selenium Framework
Stars: ✭ 138 (+36.63%)
Mutual labels:  instagram-api, bot, instagram
Socialmanagertools Igbot
🤖 📷 Instagram Bot made with love and nodejs
Stars: ✭ 699 (+592.08%)
Mutual labels:  instagram-api, bot, instagram
Onegram
This repository is no longer maintained.
Stars: ✭ 137 (+35.64%)
Mutual labels:  instagram-api, bot, instagram
Mygf Instagram
Like posts of my girlfriend's Instagram using web api, don't need any api key and access tokens just login and password
Stars: ✭ 140 (+38.61%)
Mutual labels:  instagram-api, bot, instagram
Instauto
Simple to use wrapper around the private Instagram API, written in Python.
Stars: ✭ 52 (-48.51%)
Mutual labels:  instagram-api, bot, instagram
Instabot.rb
An instagram bot works without instagram api, only needs your username and password. written in ruby
Stars: ✭ 149 (+47.52%)
Mutual labels:  instagram-api, bot, instagram
Instagram Followers Bot
A bot for Instagram. You can follow users using a tag or in a specific location, unfollow those who dont follow-you-back, and follow-back those who follow you
Stars: ✭ 149 (+47.52%)
Mutual labels:  instagram-api, bot, instagram
Instabotai
Instagram AI bot with face detection. It works without instagram api, need only login and password.
Stars: ✭ 181 (+79.21%)
Mutual labels:  instagram-api, bot, instagram
Instagram4j
📷 Instagram private API in Java
Stars: ✭ 629 (+522.77%)
Mutual labels:  instagram-api, instagram
Goinsta
Unofficial Instagram API written in Golang
Stars: ✭ 733 (+625.74%)
Mutual labels:  instagram-api, instagram
Instagram api gem
A Ruby wrapper for the Instagram API
Stars: ✭ 100 (-0.99%)
Mutual labels:  instagram-api, instagram
Swiftinstagram
Instagram API client written in Swift
Stars: ✭ 570 (+464.36%)
Mutual labels:  instagram-api, instagram
Instagram Scraper
Scrapes an instagram user's photos and videos
Stars: ✭ 5,664 (+5507.92%)
Mutual labels:  instagram-api, instagram
Instapy Cli
✨ Python library and CLI to upload photo and video on Instagram. W/o a phone!
Stars: ✭ 498 (+393.07%)
Mutual labels:  instagram-api, instagram
Swiftagram
A modern Swift wrapper for Instagram Private API.
Stars: ✭ 100 (-0.99%)
Mutual labels:  instagram-api, instagram
Gatsby Source Instagram All
⚛️📸 Gatsby source plugin for fetching all your instagram posts
Stars: ✭ 42 (-58.42%)
Mutual labels:  instagram-api, instagram
Instagramapisharp
A complete Private Instagram API for .NET (C#, VB.NET).
Stars: ✭ 486 (+381.19%)
Mutual labels:  instagram-api, instagram
Instagramfirstcommenter
This bot will post a predefined comment as fast as possible to a new post on the target profile. I used this to successfully win tickets for a big music festival.
Stars: ✭ 26 (-74.26%)
Mutual labels:  bot, instagram
Instagram Api Toolkit
Instagram Private API generator toolkit - A single source of truth for generated SDKs
Stars: ✭ 48 (-52.48%)
Mutual labels:  instagram-api, instagram
Unfollow Plus
Automated Instagram Unfollower Bot
Stars: ✭ 79 (-21.78%)
Mutual labels:  bot, instagram

Instagram Direct Message Bot

Send direct and group message with Instagram bot. Work with Python 3.7.2 and Selenium.

Example :

from instadm import InstaDM

if __name__ == '__main__':
	# Auto login
	insta = InstaDM(username='your_username', password='your_password', headless=False)
	
	# Send message
	insta.sendMessage(user='username_target', message='Hey !')
	
	# Send message
	insta.sendGroupMessage(users=['user1', 'user2'], message='Hey !')

Work's with InstaPY

Use instapy_workspace param on constructor:

from instadm import InstaDM

if __name__ == '__main__':
	# Auto login
	insta = InstaDM(
		username='your_username',
		password='your_password',
		headless=False,
		instapy_workspace='workspace/'
	)

InstaDM create table message if not exists.

CREATE TABLE "message" (
	"username"	TEXT NOT NULL UNIQUE,
	"message"	TEXT DEFAULT NULL,
	"sent_message_at"	TIMESTAMP
);

Work's with InstaPY Dashboard

InstaDM works with an modified version of InstaPy Dashboard.

InstaPy Dashboard is an Open Source project developed by @converge to visualize Instagram accounts progress and real-time InstaPy logs on the browser.

Support

paypal.me/camtosh Buy me a 🍺
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].