Giter VIP home page Giter VIP logo

tinder_bot_edit's Introduction

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))

tinder_bot_edit's People

Contributors

acarter881 avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.