Skip to main content

Find fake followers on instagram

unfollow the fake followers on instagram

INSTAHACKS

unfollow-instagram
[WITH PYTHON 2]


Wondered why the instagram follower following ratio decreases day by day! 
Main reason is that, there are certain strange people who follows you and most probably you will follow them back after a while these smartasses unfollows you, most probably using automated scripts on thousands of people globally. This shouldn't be entertained so here is simple and easy way to identify and unfollow them without using any api.

This technique is not purely automated, i will explain,

1. Sign in to your instagram account on your desktop.

2. Go to the followers tab(click on followers), now scroll down to the end of the followers list, it is very important that you scroll down to the the end of the list.

3. Inspect element on the current followers window and you may get a number of  lines of code
dont worry do a search (Cntrl+F) on the inspect element window for "data-reactroot"
you may end up with two results take the second result.

4. Right click on the data reactroot line and select "expand all" option. Right click again on the same line and select "copy element" from the "copy" option.

5. Paste it in a file and name it followers.txt and save it in the python directory.

6. Do the same with the following tab, once again make sure you scroll down to the end of the list before inspect element.

7. Save it as following.txt in the python directory.

8. Now download the python script instaweed.py from the link given below:

9. Go ahead and run the script from the directory the files are located, you will be provided with the list of non followers whom you are following in a file named nonfollowers.txt.
Also the list of followers and following in followerlist.txt and followinglist.txt respectively.

Dowload and install python 2.7 :https://www.python.org/downloads/ 

For video help: https://youtu.be/NCsG7WGBVzY

The easy way to download all the python modules is to install pip which is the python package installer.
There are many methods for getting Pip installed, but my preferred method is the following: 
Download get-pip.py to a folder on your computer. Open a command prompt window and navigate to the folder containing get-pip.py. Then run python get-pip.py.

How to download offline instagram images check out my python script:

Comments

Popular posts from this blog

Object Detection using opencv in python

Object Detection using Opencv in python What is object detection? Object detection is commonly referred to as a method that is responsible for discovering and identifying the existence of objects of a certain class. An extension of this can be considered as a method of image processing to identify objects from digital images. Aim of this project Our project aims at identifying real time object in a controlled environment and tracks its motion dynamically with hardware support. Requirements: 1. PYTHON 2.7  2. OPENCV  3. WEB CAMERA 4. CASCADES OF OBJECTS PRE-TRAINED OPEN CV ?? OpenCV (Open Source Computer Vision) is a library of programming functions mainly aimed at real-time computer vision. The goals of the project opencv were described as: Advance vision research by providing not only open but also optimized code for basic vision infrastructure. No more reinventing the wheel. Disseminate vision knowledge by providing a common in

Offline Instagram gallery

 Download photos & videos through Instagram Share raw content with your friends over any platform. Instagram copy urls are not raw image/video urls that you can access without instagram or a browser. The copy urls looks like this  https://www.instagram.com/p/B7yMq4Jpg2t/?igshid=1dbhlycdh88ic Here this link leads to a page where the actual image is hidden, where a simple search of the resource url associated with the page will return us with the actual image/video. Anyway if you are not bothered about how its done, enjoy what it has to offer. Download from Google Play  here . Then there is another thing, you can also download profile pictures of any user irrespective of the profile is public or not. So there is that. If you think it is kinda invading private users privacy please let me know. For downloading images from a particular user or tag read:  here

Instagram easy download with python

instagami         DOWNLOAD INSTAGRAM [PYTHON] Ever wondered how to download those wonderful instagram images you come across everyday, well there are ways .... Check out this option, just type in the username or tag from which you want to download images   then click download 20-30 recent images of that particular user or tag is downloaded. yes its that simple to download bulk images from an instagram account. Just make sure the profile is public, or else only the profile picture and details will be retrived. Install python 2.7 : https://www.python.org/downloads/  To use the gui version you need to install Tkinter, if you are good with the console one just run instagami.py. PythonSource:  https://github.com/techweed/instagami/ The easy way to download all the python modules is to install pip which is the python package installer. There are many methods for getting Pip installed, but my preferred method is the following:  Download  ge