Questions tagged [instapy]

98 questions
0
votes
1 answer

How to post a picture on instagram using python

I want to post a picture on instagram using python but i don't know how to do it. Thanks in advance. i do this But this was a fail from instapy_cli import client def post_instagram(): capture() username = 's' password = '' image =…
0
votes
1 answer

How to make Instagram bot to like comments under post on feed?

I want to use the InstaPy package and the following code to like comments under a post on Instagram: from instapy import InstaPy from instapy import smart_run insta_username = '***' insta_password = '***' session =…
Toplasch
  • 13
  • 3
0
votes
1 answer

Problem with Interacting with comments on instagram

I was creating the following script using Instapy: #!/usr/bin/env python3 from instapy import InstaPy number = int(input("How many Number of people you want to follow: ")) user = [] for i in range(0,number): name = input("Enter Username to…
user12099710
-1
votes
0 answers

Trying to use instapy and get TypeError: WebDriver.__init__() got an unexpected keyword argument 'firefox_profile'

I'm trying to use Instapy to login to Instagram, however I'm getting the following error. "builtins.TypeError: WebDriver._init_() got an unexpected keyword argument 'firefox_profile'." when I use the code below. I have installed the latest…
-1
votes
2 answers

How can fix that error on poershell (py file)

when i want to run an py file, it doesn't opened look, it's a Instapy file, and when i already installed; py -3 -m pip install instapy and installed, buy when i want to run my file they told you have an error on " from instapy import InstaPy " wait,…
reblox
  • 1
  • 2
-1
votes
1 answer

Instapy does not install

When trying to install Instapy on a Mac, it runs fine until I get this error. It also brings up a call box saying The "gcc" command requires the command line developer tools. Would you like to install the tools now? I click yes, the program runs for…
-1
votes
1 answer

how i can use like_by_feed of instapy bot?

hello when i use like_by_feed it dosen't working and just return ---->> Total of links feched for analysis: 0 ---->> Total of links feched for analysis: 0 i think the problem of the xbath -->> //article/div[2]/div[2]/a this xpath use when the bot…
-2
votes
0 answers

Instapy Error WebDriver and Self Browser error mesage

File "c:\Users\gamin\Downloads\zuriosm\stfu.py", line 37, in session = InstaPy(username=insta_username, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File…
xsm
  • 1
-2
votes
1 answer

The problem with the code is that the code run once only for i=0 .It is not repeating for next index.Why?

The problem with the code is that the code run once only for i=0 .It is not repeating for next index.Why? list1=['shukla928','kavita_patel7'] list2=['7379561059','kavitapatel9ptl'] for i in range(0,1): …
1 2 3 4 5 6
7