LoginSignup
3
3

More than 5 years have passed since last update.

シンプルにTinder

Posted at

はじめに

  • 自動スワイプ機能です。
  • seleniumを入れてください。

  • chrome driver を同じフォルダに配置してください。

  • スワイプ制限のある方は月500円払いましょう。缶ジュース我慢してください。

ソースコード

test.py
# coding: UTF-8
import os
import time
import random
import sys
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions
from selenium.webdriver.common.by import By
chrome = webdriver.Chrome('./chromedriver')
chrome.get("https://tinder.com/app/login")
val = input('ログイン後、0を押してください')
max_count = 500
if val == 0:
    for num in range(1,max_count):
        num=num+1
        chrome.find_element_by_tag_name("body").send_keys(Keys.RIGHT)
        time.sleep(0.3)
        print(str(num))
    print(str(max_count)+"人スワイプしました")
    chrome.close()
  • max_countに好きな数字を入れてください。
  • python test.py でどうぞ。
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3