Buy Yandex.ru - autoreg PACK 1000 pcs. *.pkl format (no password, only cookies), gender:MIX, tracking. instructions
1000 Yandex accounts in one archive in *.pkl format Accounts are registered automatically, gender mix, can be opened with any python scripts. Log in without a password, keep for 1 year, suitable for any Yandex applications.Instructions.Load cookies.Create a 2nd Python script:.from selenium import webdriver import pickle def get_webdriver (): option = webdriver.FirefoxOptions() option.set_preference('dom.webdriver.enabled',False) driver = webdriver.Firefox(options=option) return driver driver = get_webdriver() driver.get('https://scrap .tf') cookies = pickle.load(open("scrap_tf.pkl", "rb")) for cookies in cookies: driver.add_cookie(cookie).In the previous script we saved cookies, in this one we load.driver.get('https://scrap.tf').Go to https://scrap.tf, ( https://scrap.tf/) because it is for this url that we have saved cookies.cookies = pickle.load(open("scrap_tf.pkl", "rb")).Using pickle.load we get an array of values from the file scrap_tf.pkl.for cookie in cookies: driver.add_cookie(cookie).And add these cookies to the browser.That’s it, you are authorized