Ejemplo n.º 1
0
'''
Created by Frederikme (TeetiFM)
'''
import random, time
from tinderbotz.session import Session

if __name__ == "__main__":

    # creates instance of session
    session = Session()

    # set a custom location
    session.setCustomLocation("Leuven, Belgium")

    # login using your google account with a verified email! Alternatively, you can use Facebook login
    session.loginUsingGoogle(email="*****@*****.**", password="******")

    # start scraping as much geomatches as possible
    while True:
        # get data of user displayed
        geomatch = session.getGeomatch()

        # check if crucial data is not empty (This will rarely be the case tho, but we want a 'clean' dataset
        if geomatch.getName() is not None \
                and geomatch.getImageURLS() != []:

            # let's store the data of the geomatch locally (this includes all images!)
            session.storeLocal(geomatch)

            # display the saved data on your console
            print(geomatch.getDictionary())
Ejemplo n.º 2
0
'''
Created by Frederikme (TeetiFM)
'''

from tinderbotz.session import Session
from tinderbotz.helpers.constants_helper import *



if __name__ == "__main__":
    # creates instance of session
    session = Session()

    # set location (Don't need to be logged in for this)
    session.set_custom_location("London, United Kingdom")

    f = open("authentication/account.txt","r")
    lines = f.readlines()
    email, password = lines[0].strip(), lines[1].strip()
    f.close()
    
    # # login using your google account with a verified email!
    # session.login_using_google(email, password)

    # # Alternatively you can login using facebook with a connected profile!
    # session.login_using_facebook(email, password)

    # Alternatively, you can also use your phone number to login
    '''
    - country is needed to get the right prefix, in my case +32
    - phone_number is everything after the prefix (+32)
Ejemplo n.º 3
0
'''
Created by Frederikme (TeetiFM)
'''

from tinderbotz.session import Session
from tinderbotz.helpers.constants_helper import *

if __name__ == "__main__":
    # creates instance of session
    session = Session()

    # set location (Don't need to be logged in for this)
    session.setCustomLocation("Leuven, Belgium")

    # replace this with your own email and password!
    email = "*****@*****.**"
    password = "******"

    # login using your google account with a verified email!
    session.loginUsingGoogle(email, password)

    # Alternatively you can login using facebook with a connected profile!
    session.loginUsingFacebook(email, password)

    # Alternatively, you can also use your phone number to login
    '''
    - country is needed to get the right prefix, in my case +32
    - phone_number is everything after the prefix (+32)
    NOTE: this is not my phone number :)
    '''
    country = "Belgium"
Ejemplo n.º 4
0
'''
Created by Frederikme (TeetiFM)

This script is meant to be user friendly for beginning users.
Simply replace email and password with your private information.
'''

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 = "*****@*****.**"
    password = "******"

    # login using your google account with a verified email! You can also log in using Facebook.
    session.loginUsingGoogle(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)
Ejemplo n.º 5
0
'''
Created by Frederikme (TeetiFM)
'''
import random, time
from tinderbotz.session import Session

if __name__ == "__main__":

    # creates instance of session
    session = Session()

    # set a custom location
    session.set_custom_location("Leuven, Belgium")

    # replace this with your own email and password!
    email = "*****@*****.**"
    password = "******"

    # login using your google account with a verified email! Alternatively, you can use Facebook login
    session.login_using_google(email, password)

    # start scraping as much geomatches as possible
    while True:
        # When scraping we want ALL images and not just the first few.
        # If you want to scrape a lot quicker, I recommend putting quickload on True
        # But note that you'd only get 1-3 image urls instead of them all.
        geomatch = session.get_geomatch(quickload=False)

        # check if crucial data is not empty (This will rarely be the case tho, but we want a 'clean' dataset
        if geomatch.get_name() is not None \
                and geomatch.get_image_urls() != []:
Ejemplo n.º 6
0
'''
Created by Frederikme (TeetiFM)
'''

from tinderbotz.session import Session
from tinderbotz.helpers.constants_helper import *

if __name__ == "__main__":
    # creates instance of session
    session = Session()

    # set location (Don't need to be logged in for this)
    session.set_custom_location("Leuven, Belgium")

    # replace this with your own email and password!
    email = "*****@*****.**"
    password = "******"

    # login using your google account with a verified email!
    session.login_using_google(email, password)

    # Alternatively you can login using facebook with a connected profile!
    session.login_using_facebook(email, password)

    # Alternatively, you can also use your phone number to login
    '''
    - country is needed to get the right prefix, in my case +32
    - phone_number is everything after the prefix (+32)
    NOTE: this is not my phone number :)
    '''
    country = "Belgium"
Ejemplo n.º 7
0
'''
Created by Frederikme (TeetiFM)
'''
import random, time
from tinderbotz.session import Session
import constants

if __name__ == "__main__":

    # creates instance of session
    session = Session()

    # set a custom location
    session.setCustomLocation("Leuven, Belgium")

    # login using your google account with a verified email!
    session.loginUsingGoogle(email=constants.email_google,
                             password=constants.password_google)

    # Alternatively you can login using facebook with a connected profile!
    session.loginUsingFacebook(email=constants.email_facebook,
                               password=constants.password_facebook)

    # start scraping as much geomatches as possible
    while True:
        # get user
        geomatch = session.getGeomatch()

        # check if crucial data is not empty (This will rarely be the case tho, but we want a 'clean' dataset
        if geomatch.getName() is not None \
                and geomatch.getImageURLS() != []:
Ejemplo n.º 8
0
'''
Created by Frederikme (TeetiFM)
'''
import random, time
from tinderbotz.session import Session

if __name__ == "__main__":

    # creates instance of session
    session = Session()

    # set a custom location
    session.setCustomLocation("Leuven, Belgium")
    
    # replace this with your own email and password!
    email = "*****@*****.**"
    password = "******"
    
    # login using your google account with a verified email! Alternatively, you can use Facebook login
    session.loginUsingGoogle(email, password)

    # start scraping as much geomatches as possible
    while True:
        # get data of user displayed
        geomatch = session.getGeomatch()

        # check if crucial data is not empty (This will rarely be the case tho, but we want a 'clean' dataset
        if geomatch.getName() is not None \
                and geomatch.getImageURLS() != []:

            # let's store the data of the geomatch locally (this includes all images!)
Ejemplo n.º 9
0
'''
Created by Frederikme (TeetiFM)
'''
import random, time
from tinderbotz.session import Session

if __name__ == "__main__":

    # creates instance of session
    session = Session()

    # set a custom location
    session.set_custom_location(latitude=50.879829, longitude=4.700540)
    
    # replace this with your own email and password!
    email = "*****@*****.**"
    password = "******"
    
    # login using your google account with a verified email! Alternatively, you can use Facebook login
    session.login_using_facebook(email, password)

    # start scraping as much geomatches as possible
    while True:
        # When scraping we want ALL images and not just the first few.
        # If you want to scrape a lot quicker, I recommend putting quickload on True
        # But note that you'd only get 1-3 image urls instead of them all.
        geomatch = session.get_geomatch(quickload=False)

        # check if crucial data is not empty (This will rarely be the case tho, but we want a 'clean' dataset
        if geomatch.get_name() is not None \
                and geomatch.get_image_urls() != []:
Ejemplo n.º 10
0
'''
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 = "*****@*****.**"
    password = "******"

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