-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
auto_swipe.py
28 lines (21 loc) · 897 Bytes
/
auto_swipe.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
'''
Created by Frederikme (TeetiFM)
This script is meant to be user friendly for beginning users.
Definitly take a look at quickstart.py for more features!
'''
from tinderbotz.session import Session
from tinderbotz.helpers.constants_helper import *
if __name__ == "__main__":
# creates instance of session
session = Session()
# replace this with your own email and password!
email = "[email protected]"
password = "password123"
# login using either your facebook account or google account (delete the line of code you don't need)
session.login_using_facebook(email, password)
session.login_using_google(email, password)
# spam likes
# amount -> amount of people you want to like
# ratio -> chance of liking/disliking
# sleep -> amount of seconds to wait before swiping again
session.like(amount=100, ratio="72.5%", sleep=1)