Advertisement
daniilak

Untitled

Oct 28th, 2021
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.87 KB | None | 0 0
  1. SEARCH_HEAD = {
  2.     'Accept': 'application/json',
  3.     'Content-Type': 'application/json',
  4.     'DNT': '1',
  5.     'Referer': 'https://www.ozon.ru/',
  6.     'sec-ch-ua': '"Chromium";v="94", "Google Chrome";v="94", ";Not A Brand";v="99"',
  7.     'sec-ch-ua-mobile': '?0',
  8.     'sec-ch-ua-platform': '"Windows"',
  9.     'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36',
  10. }
  11. proxy_options = {
  12.     'proxy': {
  13.         'http': 'http://login:[email protected]:8000',
  14.         'https': 'https://login:[email protected]:8000',
  15.         'no_proxy': 'localhost,127.0.0.1'
  16.     }
  17. }
  18.  
  19. executable_chrome_path=r'C:\Users\biklu\chromedriver.exe'
  20.  
  21. cookies_file = "cookies2.pkl"
  22.  
  23. categories = [
  24.     '/category/bluzy-i-rubashki-zhenskie-7511/',
  25.     '/category/smartfony-15502/'
  26. ]
  27. anticaptcha = r'anitcaptcha_plugin.zip'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement