tinder_bot_edit
Editing a Tinder bot created by @frederikme
Table of Contents
Basic Swipe Bot
- Download the code as a zip or clone the repository from https://github.com/frederikme/TinderBotz
- Setup a virtual environment by writing
$ python -m venv \path\to\your\virtual\environment
- Move the folders and files inside the TinderBotz-Master folder to the venv folder
- Activate the virtual environment
$ ./my_venv/Scripts/Activate.ps1
Note: I'm using PowerShell on Windows - Change directory into the venv
$ cd .\my_venv\
- Download all required Python libraries by running
$ pip install -r requirements.txt
- Log in to Tinder on Google Chrome then exit Chrome
Note: The script will open Chrome for you - Run my modified version of
quickstart.py
for the easiest start
from tinderbotz.session import Session
if __name__ == "__main__":
session = Session() # Instance of the Session Class
session.like(amount=25, ratio="84.5%", sleep=3) # Edit these arguments to your liking
- Once the script has finished, the stats should appear on your terminal and Chrome will be closed
- To get out of the virtual environment, run
$ deactivate
- FYI - This function is called on exit of the script:
@atexit.register
def cleanup():
# End session duration
seconds = int(time.time() - start_session)
self.session_data["duration"] = seconds
# add session data into a list of messages
lines = []
for key in self.session_data:
message = "{}: {}".format(key, self.session_data[key])
lines.append(message)
# print out the statistics of the session
try:
box = self._get_msg_box(lines=lines, title="Tinderbotz")
print(box)
finally:
print("Started session: {}".format(self.started))
y = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
print("Ended session: {}".format(y))