![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
For generating Instagram followers/unfollowers of the user in a list & file (without using Instagram API)
For generating Instagram followers/unfollowers of the user in a list & file (without using Instagram API)
pip install unfollowery
Import the package and create Profile
class instance:
from unfollowery import Profile
# Obviously change USERNAME and
# PASSWORD with the real ones...
user = Profile(username='USERNAME', password='PASSWORD)
followers = user.followers()
unfollowers = user.unfollowers()
all_time_unfollowers = user.unfollowery()
unfollowers_by_date = user.unfollowery(datekey='yyyymmdd')
RECOMMENDED: Place your Instagram USERNAME and PASSWORD in the file (probably JSON) somewhere else and import it into your working file to not get displayed in the text editor.
Profile
Please see Examples for initializing Instagram user's Profile
class object.
username
(str) : User's Instagram usernamepassword
(str) : The user's password stringsleep_time
(float) - optional : Adjust waiting time (seconds) between some of the actions. It will still get randomized (~sleep_time). Default value = 5logs
(bool) - optional : If set to True, Selenium and Chromedriver logs will be displayed in the terminal. Default value = Falsefollowers()
VS unfollowers()
The method unfollowers()
WILL NOT return any usernames if [USERNAME]_latest_followers.csv
file does not exists.
If it exists unfollowers()
will compare the usernames from [USERNAME]_latest_followers.csv
to the current followers, updates (appends) [USERNAME]_unfollowery.csv
and updates (overwrites) [USERNAME]_latest_followers.csv
.
However, followers()
WILL ALWAYS return the list of the current Instagram followers.
Either one of them will create (IF THE FILES DO NOT EXIST) both [USERNAME]_latest_followers.csv
- the list of the current followers and [USERNAME]_unfollowery.csv
- the empty file to be filled (in the future) with the users that have unfollowed you.
NOTE: The more followers the user has, the more time followers()
and unfollowers()
methods take to work.
unfollowery()
This method is for getting a dict {[DATE]: [list(USERNAMES)}
object which contains all time (since the first check) unfollowers.
However, one can give it a date yyyymmdd
argument as written above in the Examples section.
These methods may fail due to the updates on Instagram’s website, since it is crawler-based (Selenium) package, so if you encounter any problems, please open an issue or contact me.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
FAQs
For generating Instagram followers/unfollowers of the user in a list & file (without using Instagram API)
We found that unfollowery demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.