摘要:
from selenium import webdriverimport time, randomdef gen_browser(btype='chrome'): return webdriver.Chrome()browser = webdriver.Chrome()url = 'https://www.wukong.com/'browser.get(url)browser.refre... 阅读全文
摘要:
一切的入口都是漏洞 都是数据的出口 阅读全文
摘要:
for tof in tofollow_uid_list: print(tof) js = 'window.location.href="https://www.toutiao.com/c/user/{}/"'.format(tof) browser.execute_script(js) time.sleep(random.randint(30, 60)) n... 阅读全文
摘要:
实例化一个新的浏览器,打开某个url from selenium import webdriverfrom selenium.webdriver.chrome.options import Optionsimport time, randomfrom selenium.webdriver.commo 阅读全文
摘要:
Python 集合set()添加删除、交集、并集、集合操作详解 - 玩蛇网 http://www.iplaypy.com/jichu/set.html 字典排序 按值 按键 求交集 差集 a-b 交集 并集 差集 对称差集 阅读全文