文獻(xiàn)批量下載器PyCNKi使用教程
PyCNKi下載器使用教程
PyCNKi下載器源碼
(百度鏈接里有.ipynb格式源碼)
一、導(dǎo)入庫(kù)
from selenium import webdriverfrom selenium.webdriver import ChromeOptionsfrom selenium.webdriver.chrome.options import Optionsimport openpyxlimport reimport timefrom selenium.webdriver.common.by import Byfrom selenium.webdriver.support.ui import WebDriverWaitfrom selenium.webdriver.support.select import Selectimport urllib.error
二、打開知網(wǎng)并進(jìn)行初始設(shè)置
#無可視化界面操作def wu_visual(): chrome_options = Options() chrome_options.a(chǎn)dd_argument('--h(huán)eadless') chrome_options.a(chǎn)dd_argument('--disable-gpu') return chrome_options
def fan_jiance(): option = ChromeOptions() option.a(chǎn)dd_experimental_option('excludeSwitches', ['enable-automation']) #option.a(chǎn)dd_argument('-kiosk') return optiondef url_error_test(url,bro): try: bro.get(url) print("OK") except urllib.error.HTTPError as e: print(e.code) print(e.reason) except urllib.error.URLError as e: print(e.reason) return e.reason
chrome_options=wu_visual()option=fan_jiance()chrome_path =r'./chromedriver.exe'bro = webdriver.Chrome(executable_path=chrome_path,chrome_options=chrome_options,options=option)
#用火狐的朋友可以把下一行代碼的“!比サ艏纯桑ro = webdriver.Firefox()
bro.maximize_window() #最大化url = r'http://kns.cnki.net' #知網(wǎng)網(wǎng)址bro.get(url)
三、關(guān)鍵詞搜索
#模擬輸入關(guān)鍵字查詢#請(qǐng)選擇您需要使用的查詢方式,本代碼只提供標(biāo)題查詢input_title = bro.find_element_by_id("txt_SearchText")input_title.click()time.sleep(2)key_value = input("請(qǐng)輸入你要下載的論文標(biāo)題:")
input_title.send_keys(key_value)#點(diǎn)擊搜索div_search = bro.find_element_by_xpath('/html/body/div[1]/div[2]/div/div[1]/input[2]')div_search.click()time.sleep(1)#點(diǎn)擊期刊論文default_1=20bro.find_element_by_xpath("/html/body/div[5]/div[1]/div/ul[1]/li[1]/a/span").click()time.sleep(10)total_num = bro.find_element_by_xpath("/html/body/div[5]/div[1]/div/ul[1]/li[1]/a/em")if int(total_num.text)<=default_1: print("一共搜索到"+total_num.text+"條結(jié)果") print("共一頁(yè)")else: print("一共搜索到" + total_num.text + "條結(jié)果") total_page =bro.find_element_by_xpath('/[@id="gridTable"]/div[2]/span[1]') print(total_page.text) num =int(total_page.text[1:-1])
四、選擇下載格式及批量下載到幾頁(yè)
print("1:PDF格式2:CAJ格式請(qǐng)輸入下載文件的格式對(duì)應(yīng)數(shù)字:")load_num = int(input("請(qǐng)輸入1 or 2:"))
print("請(qǐng)輸入您要下載到第幾頁(yè)碼:")
五、開始批量下載
load_page = int(input())while load_page>num or load_page<=0: print("輸入頁(yè)碼錯(cuò)誤,請(qǐng)重新輸入:") load_page = int(input("請(qǐng)輸入1 or 2:"))bro_new = webdriver.Chrome(executable_path=chrome_path, chrome_options=chrome_options,options=option)if int(total_num.text)<=default_1: url_link = bro.find_elements_by_xpath('/[@id="gridTable"]/table/tbody/tr/td[2]/a') for link_1 in url_link: count=1 link = url + r'/kcms/detail/detail.a(chǎn)spx?' + link_1.get_attribute("href")[20:] bro_new = webdriver.Chrome(executable_path=chrome_path,chrome_options=chrome_options,options=option) bro_new.get(link) bro_new.maximize_window() # print("編號(hào)為"+str(count)+"的論文:"+bro_new.find_element_by_xpath("/html/body/div[2]/div[1]/div[3]/div/div[1]/div[3]/div[1]/h1").text+"————正在下載") time.sleep(10) if bro_new.find_element_by_xpath('/html/body/div[2]/div').text == "URL參數(shù)錯(cuò)誤": print("編號(hào)為"+str(count)+"的論文:"+bro_new.find_element_by_xpath("/html/body/div[2]/div[1]/div[3]/div/div[1]/div[3]/div[1]/h1").text+"————論文下載失敗") bro_new.quit() count += 1 continue if load_num == 1: bro_new.find_element_by_id('pdfDown').click() time.sleep(10) print("編號(hào)為" + str(count) + "的論文:" + bro_new.find_element_by_xpath("/html/body/div[2]/div[1]/div[3]/div/div[1]/div[3]/div[1]/h1").text + "————下載成功") count += 1 bro_new.quit() if load_num == 2: bro_new.find_element_by_id('cajDown').click() time.sleep(10) print("編號(hào)為" + str(count) + "的論文:" + bro_new.find_element_by_xpath("/html/body/div[2]/div[1]/div[3]/div/div[1]/div[3]/div[1]/h1").text + "————下載成功") count += 1 bro_new.quit()else: for ii in range(0,load_page): count=1 url_link = bro.find_elements_by_xpath('/[@id="gridTable"]/table/tbody/tr/td[2]/a') for link_1 in url_link: link = url + r'/kcms/detail/detail.a(chǎn)spx?' + link_1.get_attribute("href")[20:] bro_new = webdriver.Chrome(executable_path=chrome_path,chrome_options=chrome_options,options=option) bro_new.get(link) bro_new.maximize_window() time.sleep(10) if bro_new.find_element_by_xpath('/html/body/div[2]/div').text == "URL參數(shù)錯(cuò)誤": bro_new.quit() print("編號(hào)為" + str(count) + "的論文:" + bro_new.find_element_by_xpath("/html/body/div[2]/div[1]/div[3]/div/div[1]/div[3]/div[1]/h1").text + "————論文下載失敗") bro_new.quit() count += 1 continue if load_num == 1: bro_new.find_element_by_name('pdfDown').click() time.sleep(10) print("編號(hào)為" + str(count) + "的論文:" + bro_new.find_element_by_xpath("/html/body/div[2]/div[1]/div[3]/div/div[1]/div[3]/div[1]/h1").text + "————下載成功") count += 1 bro_new.quit() if load_num == 2: bro_new.find_element_by_name('cajDown').click() time.sleep(5) print("編號(hào)為" + str(count) + "的論文:" + bro_new.find_element_by_xpath("/html/body/div[2]/div[1]/div[3]/div/div[1]/div[3]/div[1]/h1").text + "————下載成功") count += 1 bro_new.quit() bro.find_element_by_xpath('/[@id="PageNext"]').click() time.sleep(10)
發(fā)表評(píng)論
請(qǐng)輸入評(píng)論內(nèi)容...
請(qǐng)輸入評(píng)論/評(píng)論長(zhǎng)度6~500個(gè)字
最新活動(dòng)更多
-
11月20日火熱報(bào)名中>> 2024 智能家居出海論壇
-
11月28日立即報(bào)名>>> 2024工程師系列—工業(yè)電子技術(shù)在線會(huì)議
-
12月19日立即報(bào)名>> 【線下會(huì)議】OFweek 2024(第九屆)物聯(lián)網(wǎng)產(chǎn)業(yè)大會(huì)
-
即日-12.26火熱報(bào)名中>> OFweek2024中國(guó)智造CIO在線峰會(huì)
-
即日-2025.8.1立即下載>> 《2024智能制造產(chǎn)業(yè)高端化、智能化、綠色化發(fā)展藍(lán)皮書》
-
精彩回顧立即查看>> 【在線會(huì)議】多物理場(chǎng)仿真助跑新能源汽車
推薦專題
- 1 腦機(jī)接口芯片,華為出了新專利!
- 2 地平線開啟配售,阿里百度各砸5000萬(wàn)美金,市值最高超500億
- 3 小馬智行沖刺納斯達(dá)克:或成「全球Robotaxi第一股」,兩年半營(yíng)收約12億元
- 4 云從科技:營(yíng)收低迷與虧損加劇,2025年盈利目標(biāo)挑戰(zhàn)重重
- 5 AI奇跡:域名賣爆,無名小島意外賺2億
- 6 逆境求生,泄密風(fēng)波中的高精地圖
- 7 特斯拉無人駕駛來了,馬斯克的餅卻不香了
- 8 未來的大模型,或許都是A卡來算的?
- 9 2024量子計(jì)算發(fā)展態(tài)勢(shì)研究報(bào)告
- 10 科技巨頭加速破冰,京東物流將接入淘寶
- 高級(jí)軟件工程師 廣東省/深圳市
- 自動(dòng)化高級(jí)工程師 廣東省/深圳市
- 光器件研發(fā)工程師 福建省/福州市
- 銷售總監(jiān)(光器件) 北京市/海淀區(qū)
- 激光器高級(jí)銷售經(jīng)理 上海市/虹口區(qū)
- 光器件物理工程師 北京市/海淀區(qū)
- 激光研發(fā)工程師 北京市/昌平區(qū)
- 技術(shù)專家 廣東省/江門市
- 封裝工程師 北京市/海淀區(qū)
- 結(jié)構(gòu)工程師 廣東省/深圳市