当前位置: 首页 > article >正文

【Python】endote参考文献格式获取,从PubMed

自己建立个csv文件,放文献

在这里插入图片描述

执行python代码

import csv
from time import sleep

from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import WebDriverWait

# 设置Chrome选项
options = webdriver.ChromeOptions()
options.add_experimental_option('useAutomationExtension', False)
options.add_experimental_option("excludeSwitches", ['enable-automation'])
options.add_argument('--start-maximized')
options.add_argument('disable-infobars')
# options.add_argument('--headless')  # 启用无头模式(可选)
options.add_argument('--window-size=1920x1080')  # 设置窗口大小(可选)
options.add_argument('--disable-gpu')  # 禁用GPU加速(可选)

# 读取CSV文件
with open("endnote.csv", newline='') as csvfile:
    reader = csv.reader(csvfile)
    headers = next(reader)
    column_name_1 = "v1"
    index_1 = headers.index(column_name_1)
    sci_list = [row[index_1] for row in reader]

print(sci_list)

for gonghao in sci_list:
    # 初始化WebDriver
    driver = webdriver.Chrome(service=Service(r'D:\chromedriver\chromedriver.exe'), options=options)
    driver.maximize_window()

    login_url = 'https://pubmed.ncbi.nlm.nih.gov/'
    driver.get(login_url)
    wait = WebDriverWait(driver, 10)  # 增加等待时间,确保页面完全加载

    # 文章
    username_input_xpath = "/html/body/div[2]/main/div[1]/div/form/div/div[1]/div/span/input"
    username_field = wait.until(EC.presence_of_element_located((By.XPATH, username_input_xpath)))
    username_field.clear()  # 清除之前的输入
    username_field.send_keys(gonghao)  # 替换为实际的用户名

    # 搜索
    login_button_xpath = "/html/body/div[2]/main/div[1]/div/form/div/div[1]/div/button"
    login_button = wait.until(EC.element_to_be_clickable((By.XPATH, login_button_xpath)))
    login_button.click()
    sleep(3)
#
    cite_button = wait.until(EC.element_to_be_clickable((By.CLASS_NAME, 'citation-button')))
    cite_button.click()
    # 切换到弹出窗口
    citation_dialog = wait.until(EC.visibility_of_element_located((By.CLASS_NAME, 'citation-dialog')))

    copy_button = citation_dialog.find_element(By.CLASS_NAME, 'download-title')
    copy_button.click()
    sleep(2)
    print(1)
    #input()
    #driver.quit()  # 确保每次循环结束后都正确关闭浏览器实例

查看下载的,可以直接导入endnote

在这里插入图片描述


http://www.kler.cn/a/510689.html

相关文章:

  • [JavaScript] 运算符详解
  • js: 区分后端返回数字是否为null、‘-’ 或正常number类型数字。
  • Amazon MSK 开启 Public 访问 SASL 配置的方法
  • 第十一章 图论
  • 解决 MySQL 服务无法启动:failed to restart mysql.service unit not found
  • 计算机网络-数据链路层
  • Next.js 实战 (八):使用 Lodash 打包构建产生的“坑”?
  • 【NLP高频面题】LSTM的前向计算如何进行加速?
  • 遥感应用论文精选
  • C++ 面向对象(继承)
  • 机器学习皮马印第安人糖尿病数据集预测报告
  • C#,入门教程(03)——Visual Studio 2022编写彩色Hello World与动画效果
  • # 爬楼梯问题:常见数列的解法总结
  • 冬季深圳小览
  • Pytorch深度学习指南 卷I --编程基础(A Beginner‘s Guide) 第0章
  • “深入浅出”系列之C++:(6)CMake构建项目
  • 蓝桥杯3525 公因数匹配 | 枚举+数学
  • DDD - 如何设计支持快速交付的DDD技术中台
  • 软工:第一部分(初识软工)
  • “深入浅出”系列之数通篇:(5)TCP的三次握手和四次挥手
  • JavaScript中提高效率的技巧一
  • A5.Springboot-LLama3.2服务自动化构建(二)——Jenkins流水线构建配置初始化设置
  • 解决QT中报错xxx.h:4:10: ‘QMainWindow‘ file not found
  • Electron 开发者的 Tauri 2.0 实战指南:安全实践
  • 深入Kafka KRaft模式:生产环境配置详解
  • docker中常用的镜像和容器命令