1 Star 0 Fork 61

junmark/TDXPystock

forked from 金诺/TDXPystock 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
爱问财.py 1.47 KB
一键复制 编辑 原始数据 按行查看 历史
金诺 提交于 2021-02-18 17:56 . 优化
import requests
from selenium import webdriver
class aiwencai():
def __init__(self):
self.chrome_option = webdriver.ChromeOptions()
self.chrome_option.add_experimental_option('excludeSwitches', ['enable-automation']) # 允许开发者模式
# headers={'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36',
# }
# #self.chrome_option.add_argument('--headless')
# self.chrome_option.add_argument(headers)
#self.chrome_option.add_argument('--disable-gpu')
self.brow=webdriver.Chrome(executable_path='../chromedriver.exe', options=self.chrome_option)
# self.brow.execute_script(
# 'Object.defineProperties(navigator,{ webdriver:{ get: () => false } }) ') # 将属性设置为非webdriver 方式,(淘宝针对这个有反爬机制)
pass
def questions(self,question):
url='http://www.iwencai.com/stockpick/search?typed=1&preParams=&ts=1&f=1&qs=f10stock_query&selfsectsn=&querytype=&searchfilter=&tid=stockpick&w='+question
# self.brow.get(url)
# q=self.brow.find_element_by_class_name('search-input').send_keys(question)
# click=self.brow.find_element_by_class_name('search-icon').click()
request=requests.get(url)
print(request.text)
def format(self):
pass
if __name__ == '__main__':
awencai=aiwencai()
awencai.questions('高瓴资本持股')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/junmark/TDXPystock.git
[email protected]:junmark/TDXPystock.git
junmark
TDXPystock
TDXPystock
master

搜索帮助