You will be able to get your follower counter for the social medias:
- Youtube
Use the package manager pip to install followercounter.
pip install followercounter
from followercounter import youtube, instagram, twitter
# Get your Youtube Key on https://console.developers.google.com on "Google Data Api v3"
youtube('<YOUR__KEY>', 'studiom4') # returns '205312'
instagram('<access_token>') # returns '1334'
twitter('novatics') # returns '130'
To get the access_token
first you need to register an application here and then follow the instructions here to authorize your application to access your profile data
To get the access_token
first you need to create an application here and then follow the instructions here.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python -m pytest tests/