Skip to content

acarter881/tinder_bot_edit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 

Repository files navigation

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 Imgur
  • Activate the virtual environment $ ./my_venv/Scripts/Activate.ps1 Imgur
    Note: I'm using PowerShell on Windows
  • Change directory into the venv $ cd .\my_venv\
    Imgur
  • Download all required Python libraries by running $ pip install -r requirements.txt Imgur
  • 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
    Imgur
  • To get out of the virtual environment, run $ deactivate
    Imgur
  • If successful, Chrome will open and go to tinder.com/app/recs and start swiping
    Imgur
  • 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))

Releases

No releases published

Packages

No packages published

Languages