Skip to content

Commit

Permalink
Lazy to check new method
Browse files Browse the repository at this point in the history
  • Loading branch information
subinps authored Dec 16, 2021
1 parent a0cef8f commit 79b5c95
Showing 1 changed file with 0 additions and 78 deletions.
78 changes: 0 additions & 78 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,84 +46,6 @@ async def main():
bot.run(main())

bot.start()
bot.send(
functions.bots.SetBotCommands(
commands=[
types.BotCommand(
command="start",
description="Check if bot alive"
),
types.BotCommand(
command="help",
description="How to use"
),
types.BotCommand(
command="login",
description="login into your Instagram account"
),
types.BotCommand(
command="logout",
description="Logout from Instagram"
),
types.BotCommand(
command="account",
description="Shows details of logged in account"
),
types.BotCommand(
command="posts",
description="Download all posts from given username"
),
types.BotCommand(
command="feed",
description="Download posts in your feed"
),
types.BotCommand(
command="igtv",
description="Download IGTV videos of given username"
),
types.BotCommand(
command="saved",
description="Download specified number of posts from your saved posts "
),
types.BotCommand(
command="story",
description="Download stories of given username"
),
types.BotCommand(
command="stories",
description="Downloads stories off all your followees"
),
types.BotCommand(
command="followers",
description="Sends a list of followers of given username"
),
types.BotCommand(
command="followees",
description="Sends a list followees of given username"
),
types.BotCommand(
command="fans",
description="Get a list of followees who is following back."
),
types.BotCommand(
command="notfollowing",
description="Get a list of followees who is not following back."
),
types.BotCommand(
command="tagged",
description="Download all posts tagged with given username"
),
types.BotCommand(
command="highlights",
description="Downloads highlights from given username"
),
types.BotCommand(
command="restart",
description="Stop all processes and restart bot"
),
]
)
)

idle()
bot.stop()

0 comments on commit 79b5c95

Please sign in to comment.