Questions tagged [instapy]

98 questions
1
vote
0 answers

Add get request before Instapy session execution

Note -> I'm javascript developer, don't had experience with Python In quickstart.py script, I added request to pull profile from some API response = requests.get("http://127.0.0.1:3333/api/v1/internal/profiles/1") profile =…
makiTurbo
  • 79
  • 3
  • 6
1
vote
0 answers

how to add mozilla firefox in heroku

>heroku logs -n 10 2021-02-06T18:25:04.446002+00:00 app[worker.1]: File "/app/.heroku/python/lib/python3.6/site-packages/selenium/webdriver/remote/webdriver.py", line 252, in start_session 2021-02-06T18:25:04.446187+00:00 app[worker.1]: response =…
1
vote
3 answers

InstaPy login , python

I started learning the InstaPy module. I tried to learn how to login on to my Instagram account, but it won't work. Here is the code. from instapy import InstaPy session = InstaPy(username='' ,password='') session.login() And this is the error I…
Mangi
  • 23
  • 6
1
vote
1 answer

django and instapy integration

I want to build a tool like hootsuide for my own stuff. As you know, Instagram only allows instagram partners to publish a content via api. I use instapy as a single python file but I've never used with django before. I'm having some troubles with…
Oxibital
  • 135
  • 1
  • 2
  • 10
1
vote
1 answer

cant get InstaPy to start

hey everyone im trying to code a instabot and just started but from the start i couldnt get it to work heres the problem everytime i try to run my quickstart it gives me this error: InstaPy Version: 0.6.10 ._. ._. ._. ._. ._. ._. ._. ._. …
Ties113
  • 37
  • 1
  • 6
1
vote
0 answers

"Error, unable to determine correct filename for 64bit linux" when trying to deploy InstaPy in Heroku

I am trying to deploy a InstaPy Bot (https://github.com/timgrossmann/InstaPy) Heroku. My code looks as follows from instapy import InstaPy from instapy import smart_run import time from datetime import datetime import schedule # login…
Samuel Mariña
  • 109
  • 3
  • 15
1
vote
0 answers

Raspberry Debian run on boot fails but manuel run works perfectly

Run on boot fails but script works perfeclt well on manuel. SO THIS QUESTION IS NOT A DUPLICATE Im trying to automate an instapy script with raspberry but when i try the run on boot options all of them fail with the error code ; InstaPy Version:…
Furkan
  • 11
  • 2
1
vote
2 answers

How to use InstaPy to like all the posts by a user?

I am a newbie to Python, PIP and InstaPy. I am trying to create a program that will like all the posts belonging to a specific user. This is what I have written so far: """ Quickstart script for InstaPy usage """ # imports from instapy import…
Samyak Jain
  • 29
  • 2
  • 6
1
vote
1 answer

getting "selenium.common.exceptions.SessionNotCreatedExceptionSelenium" error using InstaPy

[SETUP: Windows 10 x64 PyCharm 2019.3.3 (Community Edition)] I'm trying to create a simple Insta bot with InstaPy but I keep running into the same error CODE: from instapy import InstaPy InstaPy(username='username', password='password').login() I…
Karanvir.S.G
  • 70
  • 1
  • 11
0
votes
0 answers

AttributeError: 'NoneType' object has no attribute 'get'` with invalid literal for int() with base 10

While creating an Instagram bot I ran into these problems within the source code, I think. As I understood the program stops while trying to read the follower number of my account which provides the get error. The message from the power sell is as…
0
votes
0 answers

how to resolve request error in this code

I need a way to not be see as a boot by instagram in order to avoid the 401 error by the intagram server this code is a leed generator that looks for posts with a certain hashtag and collects the user, follow details the code below. import…
0
votes
1 answer

WebDriver.__init__() got an unexpected keyword argument 'firefox_profile'

I'm trying to create a instagram bot using instapy however I keep runnning into this error. This is my code: from instapy import InstaPy session = InstaPy(username = "username", password =…
0
votes
0 answers

how to fix firefox problems creating a bot with instapy that follows other people followers on ig

I was searching for someone to solve this issue but no one knows anything if you know how to fix it pls tell me. I was working on auto follow other people bot and I know nothing about selenium and instapy so if you can help I appreciate it. I tried…
0
votes
0 answers

Instapy doesn't see post when searching for tags

i'm trying to make a bot for instagram and i have started to use instapy so i am looking if it is all okay. The library is very buggy, i have already commented two lines of code to execute the login(shared_data null problem:…
Alex Longo
  • 11
  • 3
0
votes
0 answers

InstaPy2 fork: example for like by hashtag

InstaPy (https://github.com/InstaPy/InstaPy) doesn't work anymore and there is a recommendation to use the fork InstaPy2 (https://github.com/InstaPy2/InstaPy2). Unfortunately, the documentation does not have an example of how to like posts of a…
Manni
  • 11,108
  • 15
  • 49
  • 67