Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
worker: python main.py
worker: python index.py
4 changes: 2 additions & 2 deletions main.py → index.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
#Logger Setup
logger = logging.getLogger(__name__)

TOKEN = "YOUR_TOKEN_HERE"
TOKEN = "7024280142:AAE6mIYG0B_n5RMRCip1G0M9aMvTdht98Wg"

def download(bot, update):
message = update.effective_message
instagram_post = message.text
if instagram_post=="/start":
bot.send_chat_action(chat_id=update.message.chat_id, action="typing")
update.message.reply_text("❤️ Thanks For Using Me Just Send Me The Link In Below Format \n🔥 Format :- https://www.instagram.com/p/B4zvXCIlNTw/ \nVideos Must Be Less Then 20MB, For Now It Cannot Support Long IGTV Videos \n\n<b>Support Group :-</b> @Technology_Arena \n<b>🌀 Source</b> \nhttps://github.com/TheDarkW3b/instagram", parse_mode=ParseMode.HTML, disable_web_page_preview=True)
update.message.reply_text("❤️ Thanks For Using Me Just Send Me The Link In Below Format \n🔥 Format :- https://www.instagram.com/p/B4zvXCIlNTw/ \nVideos Must Be Less Then 20MB, For Now It Cannot Support Long IGTV Videos \n\n<b>Support Group :-</b> @SalomovAsliddin_2004 \n<b>🌀 ", parse_mode=ParseMode.HTML, disable_web_page_preview=True)
else:
pass
if "instagram.com" in instagram_post:
Expand Down