Welcome to use AbleSci to get your papers. Our English Version is under development. You can temporarily use Google to translate AbleSci. Quite easy! Thank you!
SciHub
文献互助
期刊查询
一搜即达
科研导航
即时热点
交流社区
登录
注册
发布
文献
求助
首页
我的求助
捐赠本站
Y先生
Lv5
1549 积分
2021-06-28 加入
最近求助
最近应助
互助留言
Synthetic Singleplex-Image Generation in Multiplex-Brightfield Immunohistochemistry Digital Pathology Using Deep Generative Models
4天前
已完结
Performance improvement on a Web Geospatial service for the remote sensing flood-induced crop loss assessment web application using vector tiling
1个月前
已关闭
Interactive Image Segmentation Based on Label Pair Diffusion
1个月前
已完结
Attention-Based Generative Adversarial Network Model for RC Column Backbone Curve Identification
1个月前
已完结
Enhanced Diffusion-Based Analysis for Fast Defect Detection in ECPT Image
1个月前
已完结
An Identification Model of Sludge Bulking Based on Self-Organized Recurrent Fuzzy Neural Network
1个月前
已完结
MAE-MACD: The Masked Adversarial Contrastive Distillation Algorithm Grounded in Masked Autoencoders
1个月前
已完结
PoseDiffusion: A Coarse-to-Fine Framework for Unseen Object 6-DoF Pose Estimation
1个月前
已完结
Shared-Specific Feature Learning With Bottleneck Fusion Transformer for Multi-Modal Whole Slide Image Analysis
2个月前
已完结
Arbitrary-Oriented Object Detection with Circular Smooth Label
2个月前
已关闭
First-Line Therapy For Advanced Non–Clear Cell Renal Cell Carcinoma
1天前
已采纳
Using AI to predict future cardiac arrest
11天前
已采纳
A malaria drug could help treat polycystic ovary syndrome
11天前
已采纳
Ending the taboo on periods and period problems
11天前
已采纳
Updating the evidence on ultra-processed foods and health
11天前
已采纳
Updating the evidence on ultra-processed foods and health
11天前
已采纳
Janus liposozyme for the modulation of redox and immune homeostasis in infected diabetic wounds
11天前
已采纳
Sacituzumab tirumotecan in advanced non-small-cell lung cancer with or without EGFR mutations: phase 1/2 and phase 2 trials
11天前
已采纳
Tracking the infant immune response to SARS-CoV-2
11天前
已采纳
Tumour cells mimic erythroblasts to hijack iron from bone marrow macrophages
11天前
已采纳
该文件用edge打不开,用wps和acrobat可以打开
4天前
文件损坏
4天前
这个文章还没有补充材料
15天前
已经获得【积分已退回】
1个月前
上传错了
1个月前
速度真快
1个月前
帮大忙了,速度真快
1个月前
点赞,速度真快
1个月前
标题错误
1个月前
帮大忙了
2个月前
最近帖子
最近评论
综合讨论
一句话的翻译
4年前
好的,了解了,谢谢!!!
4年前
谢谢!!!😊感觉上很靠谱
4年前
Thanks♪(・ω・)ノ感谢. 但我还有一些小疑问, truncated within the interval [-1, 1]指的是"均值"和"标准差", 还是design variable😭
4年前
不客气,互相帮助. btw我觉得这个网站挺不错的😝
4年前
第一步,使用js代码把页面的url打印出来,代码是: let b = document.getElementsByTagName("tbody")[0].getElementsByTagName("a"); let sum = ""; for (var i = 0; i < b.length; i++) { if (b[i].innerText.length >= 6) { sum += b[i].href; sum += "\n" } } console.log(sum) 第二步,把打印出的网址复制保存在文件夹中,使用requests库依次访问,获取每个网页对应pdf的url python代码: import requests as req import time from bs4 import BeautifulSoup from tqdm import tqdm all_pdf = [] with open("./pdf_url.txt","r",encoding="utf-8") as f: web_url = [i.strip() for i in f.readlines()] header = {'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 Edg/91.0.864.54'} for url in tqdm(web_url): result = req.get(url,headers=header) bs_obj = BeautifulSoup(result.text, 'lxml') pdf_url = bs_obj.find_all(class_ ="pdf-link")[0].get("href") all_pdf.append(pdf_url) time.sleep(0.5) print(all_pdf) 这样就可以获取所有的pdf链接,使用requests库继续获取所有的pdf就可以了 python代码: import os if not os.path.exists("./pdf_results/"):os.mkdir("pdf_results") for index, pdf_url in tqdm(enumerate(all_pdf)): result = req.get(pdf_url, headers=header) with open(f"./pdf_results/{index}.pdf", "wb") as f: f.write(result.content) time.sleep(0.5) 最终结果我也保存在百度云里了,分享给你 链接:https://pan.baidu.com/s/16_QpPGWGpUvRwAiveQSO_g 提取码:0000
4年前