Exemplo n.º 1
0
def configure(settings):
    instagram = InstagramFunctions(settings['username'], settings['password'])
    instagram.startMachine(settings['location'], settings['tags'],
                           settings['photo_prob'], settings['video_prob'],
                           settings['follow_names'],
                           settings['unfollow_delay'],
                           settings['unfollow_amount'], ["test", "data"])
 def setPods(session, topic, mode):
     InstagramFunctions.setPods(session, topic, mode)
 def unfollowNewFollowers(session, amount, unfollowDelay):
     InstagramFunctions.unfollowNewFollowers(session, amount,
                                             unfollowDelay)
 def likeVideosByTags(session, tagList, probability):
     InstagramFunctions.likeVideosByTags(session, tagList, probability)
 def followByTags(session, tagList):
     InstagramFunctions.followByTags(session, tagList)
 def followByLocation(session, location):
     InstagramFunctions.followByLocation(session, location)