yurilaaziz / neo-instabot

Neo-Instabot is a free project. Forked from instabot.py. It uses the Instagram Web/Mobile API.
Other
37 stars 22 forks source link

How to use own tags? Where to change setting? #18

Closed mbe9477 closed 5 years ago

mbe9477 commented 5 years ago

Check this or we will delete your issue. (fill in the checkbox with an X like so: [x])

Select one:

Environment

Operating System? (include version)

include the output of 'uname -a'
Darwin xxx-iMac-2.fritz.box 18.7.0 Darwin Kernel Version 18.7.0: Thu Jun 20 18:42:21 PDT 2019; root:xnu-4903.270.47~4/RELEASE_X86_64 x86_64

#### Python Version Requirement
- [X] I am using Python 3.6 or above

#### Exact Python Version?
3.7.3

Pip Version?

pip 19.2.3 from /usr/local/lib/python3.7/site-packages/pip (python 3.7)

Instabot Version?

Installed version 0.6.0

How you use the instabot

Description of your issue

I like to use my own tags etc. 
Have changed them in "default_config.py" already. But it still likes "cat" tagged pics... 
I find no other file on the directory where anywhere is "cat" inside!? 

I am running the bot with this command:
instabot-py --login LOGIN --password PASSWORD -vv

Config


> sample.instabot.config.yml

---
login : "XXX"
password : "XXX"
debug: 0
follow_time: 604800
like_per_day: 300
comments_per_day: 70
max_like_for_one_tag: 36
follow_per_day: 100
follow_time: 36000
unfollow_per_day: 0
unfollow_break_min: 3
unfollow_break_max: 17
unfollow_selebgram: false
unfollow_probably_fake: true
unfollow_inactive: true
unfollow_recent_feed: false
Boxer1990 commented 5 years ago

got the same issue

Orange06 commented 5 years ago

neo-instabot -c yourconfig.yml -vv set your login and pass in .yml file

mbe9477 commented 5 years ago

neo-instabot -c yourconfig.yml -vv set your login and pass in .yml file

This is my yml file:

sample.instabot.config.yml

login : "xxx" password : "xxx" debug: 0 follow_time: 604800 like_per_day: 300 comments_per_day: 70 max_like_for_one_tag: 36 follow_per_day: 100 follow_time: 36000 unfollow_per_day: 0 unfollow_break_min: 3 unfollow_break_max: 17 unfollow_selebgram: false unfollow_probably_fake: true unfollow_inactive: true unfollow_recent_feed: false

Of course login and password are set there. But there is no option to use own hashtags!?

soulpawa commented 5 years ago

of course you can use your own hashtags:

tag_list: [hashtag1,hasthag2,hashtag3,hashtag4....]

mbe9477 commented 5 years ago

That workes now well! Thanks for your help!