Skip to content

Commit

Permalink
Turn off verification based on relationship bounds by default, comple…
Browse files Browse the repository at this point in the history
…tely.
  • Loading branch information
uluQulu committed Feb 2, 2019
1 parent c69c1dc commit 757815f
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions instapy/instapy.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,13 +204,13 @@ def __init__(self,
self.clarifai_check_video = False
self.clarifai_proxy = None

self.potency_ratio = 1.3466
self.delimit_by_numbers = True
self.potency_ratio = None # 1.3466
self.delimit_by_numbers = None

self.max_followers = 90000
self.max_following = 66834
self.min_followers = 35
self.min_following = 27
self.max_followers = None # 90000
self.max_following = None # 66834
self.min_followers = None # 35
self.min_following = None # 27

self.delimit_liking = False
self.liking_approved = True
Expand Down Expand Up @@ -1087,6 +1087,7 @@ def set_relationship_bounds(self,
min_following=None):
"""Sets the potency ratio and limits to the provide an efficient
activity between the targeted masses"""

self.potency_ratio = potency_ratio if enabled is True else None
self.delimit_by_numbers = delimit_by_numbers if enabled is True else \
None
Expand Down

0 comments on commit 757815f

Please sign in to comment.