• 大小: 3KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-09
  • 语言: Python
  • 标签: sci-hub  百度学术  

资源简介

通过百度学术获得doi号,再通过sci-hub进行论文下载,使用selenium+(pyautogui)+(autoit)进行操作,方便根据自己的需求进行重新编写。。

资源截图

代码片段和文件信息

# coding = utf-8
import time
import selenium
from selenium import webdriver
import numpy as np
import os 
if __name__ == ‘__main__‘:
#首先读txt
#格式为 [1] Zhang W Wang H Hou D et al. “Reversible data hiding in encrypted images by reversible image transformation” IEEE Trans. Multimedia vol. 18 no. 8 pp. 1469-1479 Oct. 2016.
#改变test名称
file = open (“test.txt“encoding=“UTF-8“)
list = file.readlines()
chromeOptions = webdriver.ChromeOptions()
#设置是否每次确定下载位置 可以跟autoit结合 方便改文件名
#prefs = {“download.prompt_for_download“:True}
prefs = {“download.default_directory“: “e:\\allReferencesOfPaper“}
chromeOptions.add_experimental_option(“prefs“ prefs)
    # 启动带有自定义设置的Chrome浏览器
driver = webdriver.Chrome(chrome_options=chromeOptions)
for file in list:
#找到文件名
file = fi

评论

共有 条评论

相关资源