All Projects → ccozkan → Instagram Unfollowers

ccozkan / Instagram Unfollowers

Licence: gpl-3.0
Who unfollowed you, who followed you, who doesn't follow you back, who liked your pics the most and who never? Don't worry I got all the answers. Also this can used for non-private users too.

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Instagram Unfollowers

Gatsby Source Instagram All
⚛️📸 Gatsby source plugin for fetching all your instagram posts
Stars: ✭ 42 (-32.26%)
Mutual labels:  instagram
Instagram Api Toolkit
Instagram Private API generator toolkit - A single source of truth for generated SDKs
Stars: ✭ 48 (-22.58%)
Mutual labels:  instagram
Mediapickerinstagram
🔧 - Battlefield of an idea, how to make the same media picker than Instagram
Stars: ✭ 56 (-9.68%)
Mutual labels:  instagram
Public Instagram
Tool to fetch Instagram's public content.
Stars: ✭ 43 (-30.65%)
Mutual labels:  instagram
Social Scraper
Tổng hợp script crawl dữ liệu từ các mạng xã hội & website tiếng Việt
Stars: ✭ 47 (-24.19%)
Mutual labels:  instagram
Scrapstagram
An Instagram Scrapper
Stars: ✭ 50 (-19.35%)
Mutual labels:  instagram
Ig Follow Count
📈 A simple Instagram analytics tool that continuously logs and graphs your follower count.
Stars: ✭ 35 (-43.55%)
Mutual labels:  instagram
Instago
Download/access photos, videos, stories, story highlights, postlives, following and followers of Instagram
Stars: ✭ 59 (-4.84%)
Mutual labels:  instagram
Shellphish
Phishing Tool for 18 social media: Instagram, Facebook, Snapchat, Github, Twitter, Yahoo, Protonmail, Spotify, Netflix, Linkedin, Wordpress, Origin, Steam, Microsoft, InstaFollowers, Gitlab, Pinterest
Stars: ✭ 1,037 (+1572.58%)
Mutual labels:  instagram
Instauto
Simple to use wrapper around the private Instagram API, written in Python.
Stars: ✭ 52 (-16.13%)
Mutual labels:  instagram
Akgpushanimator
Easily Push and Pop viewcontroller like Instagram App with Interaction
Stars: ✭ 44 (-29.03%)
Mutual labels:  instagram
Instalator Telegram
Telegram Bot для автоматизации массфаловинга и управления Instagram аккаунтами
Stars: ✭ 46 (-25.81%)
Mutual labels:  instagram
Personal Influxdb
Import data from various APIs into InfluxDB
Stars: ✭ 51 (-17.74%)
Mutual labels:  instagram
Instarat
best tool for instagram followers increasing
Stars: ✭ 42 (-32.26%)
Mutual labels:  instagram
Hackphiles
BruteForce Tool For both Instagram and Facebook
Stars: ✭ 57 (-8.06%)
Mutual labels:  instagram
Instabyte
Clone of Instagram made with React Native
Stars: ✭ 36 (-41.94%)
Mutual labels:  instagram
Ohcubeview
A UIScrollView subclass inspired by the Instagram Stories cube animation
Stars: ✭ 48 (-22.58%)
Mutual labels:  instagram
Instapy Research
📄 Research repository for InstaPy
Stars: ✭ 60 (-3.23%)
Mutual labels:  instagram
Maskrcnn Modanet
A Mask R-CNN Keras implementation with Modanet annotations on the Paperdoll dataset
Stars: ✭ 59 (-4.84%)
Mutual labels:  instagram
Keyring
Keyring is an authentication framework for WordPress. It comes with definitions for a variety of HTTP Basic, OAuth1 and OAuth2 web services. Use it as a common foundation for working with other web services from within WordPress code.
Stars: ✭ 52 (-16.13%)
Mutual labels:  instagram

instagram-unfollowers

Who unfollowed you, who followed you, who doesn't follow you back, who liked your pics the most and who never? Don't worry I got all the answers. Also this can used for non-private users too.

i. information

This badboy creates a html file with information of:

  • New unfollowers
  • New followers
  • Who is not following back
  • Who liked your pics the most -- numerically of course :D
  • Who never liked your pics

Note: Lite version doesn't check like related stuff.

[TODO]: Make a even lighter version that only checks new "not followed backs".

Note: Ultralight version only checks "new not followed backs".

Also you can check other profiles too. Of course they need to be public or your following.

ii. install and run

This project is based and forked from ahmdrz/instagram-statistics.

In order to install the requirement packages and run the progam. Type following to the terminal.

git clone https://github.com/ozkc/instagram-unfollowers
pip2 install -r requirements.txt

In order to use you need to get instagram id. It is different than username and just contains numbers. It can be learn from various sites.

ex: http://www.ershad7.com/InstagramUserID/

Alt Text

We see that instagram user id for nasa is 528817151

In order to use it you need to edit main.py

 #modify here                                                                
 insta = Instagram('usernamefoo', 'passfordfoo')                                   
             

After writing down the username and password run the program

python2.7 main.py foouserid

Write whoever you want to check. You or your Ex or nasa. Lets say you're checking nasa's account.

python2.7 main.py 528817151

And check html file with any browser. Firefox or elinks if you're working on the terminal.

iii. some ideas

If you have Raspberry Pi up and running in your home or whatever. You can make it send you a email at every once a while.

In order to send html output email with Mutt, download and configure your .muttrc according to your email provider. hen create a instagramReportEmail.sh

#!/bin/bash 

/usr/bin/python2.7 /home/pi/instagram-unfollowers/main.py 528817151 
/usr/bin/mutt -e "my_hdr Content-Type: text/html" [email protected]  -s "instagram report" < instagram-unfollowers/output.html

Alternatively since strange usernames can mess up html view of email reader, its safer to use output.html as attachment.

#!/bin/bash 

/usr/bin/python2.7 /home/pi/instagram-unfollowers/main.py 528817151 
/bin/echo "brtyb github.com/ozkc" | /usr/bin/mutt -a "output.html" -s "instagram weekly follow report" -- [email protected] 

And make sure you make it executable

chmod +x instaReport.sh

Check if that works and make sure you get the email. Now lets make it periodical. In order to make the linuxbox do some periodical tasks write

crontab -e

to the terminal. Following example uses Mutt to send email. It send email at every sunday at 4:16 pm. This line is added to the crontab file.

16 16 * * SUN /home/pi/instaReport.sh

And it's all good now.

iv. license

See full license on this , Under GNU GENERAL PUBLIC LICENSE

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].