One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| import qrcode | |
| from qrcode.util import * | |
| def hack_put(self, num, length): | |
| if num == 0: | |
| num = 233 # make a fake length | |
| for i in range(length): | |
| self.put_bit(((num >> (length - i - 1)) & 1) == 1) | |
| qrcode.util.BitBuffer.put = hack_put |
| #@yasinkuyu 08/09/2017 | |
| # install luminati (https://luminati.io) proxy manager & run | |
| from selenium import webdriver | |
| from selenium.webdriver.common.proxy import Proxy, ProxyType | |
| from selenium.webdriver.chrome.options import Options | |
| from selenium.webdriver.common.proxy import * | |
| PROXY = '127.0.0.1:24000' |
| boost::asio::io_service io_service; | |
| boost::asio::deadline_timer timer(io_service); |