I Coded Instagram Influencers DataBase and Automated it with Python. YouTube tutorial — https://youtu.be/IKB0S5mF00s
python3 -m venv venv
. venv/bin/activate
pip3 install -r requirements.txt
cd webapp
./mange.py migrate
./mange.py runserver
cd scripts
You can change new_category
for whatever you want eg. Tech.
Same withbasic_hashtags
.
if __name__ == '__main__':
new_category = "Beauty"
basic_hashtags = ['fashion', 'beauty']
script = HashtagScript(new_category, basic_hashtags)
script()
python3 add_hashtags_to_categories.py
python3 discover_script.py
python3 update_script.py
discover_script.py
<-- Finds new influencers. You can run it every few hours.
update_script.py
<-- Updates current influencers in database. You can run it every 2 hours.