oafuncs 0.0.81__py2.py3-none-any.whl → 0.0.83__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- oafuncs/data_store/OAFuncs.png +0 -0
- oafuncs/oa_cmap.py +1 -0
- oafuncs/oa_data.py +107 -28
- oafuncs/oa_down/__init__.py +5 -4
- oafuncs/oa_down/hycom_3hourly.py +152 -35
- oafuncs/oa_down/user_agent.py +34 -0
- oafuncs/oa_draw.py +165 -103
- oafuncs/oa_file.py +66 -53
- oafuncs/oa_help.py +19 -16
- oafuncs/oa_nc.py +82 -114
- oafuncs-0.0.83.dist-info/METADATA +91 -0
- oafuncs-0.0.83.dist-info/RECORD +26 -0
- oafuncs/oa_down/test.py +0 -151
- oafuncs/oa_s/__init__.py +0 -23
- oafuncs/oa_s/oa_cmap.py +0 -163
- oafuncs/oa_s/oa_data.py +0 -187
- oafuncs/oa_s/oa_draw.py +0 -451
- oafuncs/oa_s/oa_file.py +0 -332
- oafuncs/oa_s/oa_help.py +0 -39
- oafuncs/oa_s/oa_nc.py +0 -410
- oafuncs/oa_s/oa_python.py +0 -107
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/__init__.py" +0 -26
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_cmap.py" +0 -163
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_data.py" +0 -187
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/__init__.py" +0 -20
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/hycom_3hourly.py" +0 -1176
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/literature.py" +0 -332
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_down/test_ua.py" +0 -151
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_draw.py" +0 -451
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_file.py" +0 -332
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_help.py" +0 -39
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_nc.py" +0 -410
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_python.py" +0 -107
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/__init__.py" +0 -21
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/meteorological.py" +0 -168
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/ocean.py" +0 -158
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_sign/scientific.py" +0 -139
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_tool/__init__.py" +0 -18
- oafuncs - /321/205/320/231/320/277/321/206/320/254/320/274/oa_tool/email.py" +0 -114
- oafuncs-0.0.81.dist-info/METADATA +0 -918
- oafuncs-0.0.81.dist-info/RECORD +0 -51
- {oafuncs-0.0.81.dist-info → oafuncs-0.0.83.dist-info}/LICENSE.txt +0 -0
- {oafuncs-0.0.81.dist-info → oafuncs-0.0.83.dist-info}/WHEEL +0 -0
- {oafuncs-0.0.81.dist-info → oafuncs-0.0.83.dist-info}/top_level.txt +0 -0
@@ -1,332 +0,0 @@
|
|
1
|
-
#!/usr/bin/env python
|
2
|
-
# coding=utf-8
|
3
|
-
'''
|
4
|
-
Author: Liu Kun && 16031215@qq.com
|
5
|
-
Date: 2024-11-28 10:42:56
|
6
|
-
LastEditors: Liu Kun && 16031215@qq.com
|
7
|
-
LastEditTime: 2024-11-28 10:43:18
|
8
|
-
FilePath: \\Python\\My_Funcs\\OAFuncs\\oafuncs\\oa_down\\literature.py
|
9
|
-
Description:
|
10
|
-
EditPlatform: vscode
|
11
|
-
ComputerInfo: XPS 15 9510
|
12
|
-
SystemInfo: Windows 11
|
13
|
-
Python Version: 3.12
|
14
|
-
'''
|
15
|
-
|
16
|
-
|
17
|
-
import os
|
18
|
-
import random
|
19
|
-
import re
|
20
|
-
import time
|
21
|
-
from pathlib import Path
|
22
|
-
|
23
|
-
import pandas as pd
|
24
|
-
import requests
|
25
|
-
from rich import print
|
26
|
-
from rich.progress import track
|
27
|
-
|
28
|
-
__all__ = ['download5doi']
|
29
|
-
|
30
|
-
|
31
|
-
def _get_file_size(file_path, unit='KB'):
|
32
|
-
# 检查文件是否存在
|
33
|
-
if not os.path.exists(file_path):
|
34
|
-
return "文件不存在"
|
35
|
-
|
36
|
-
# 获取文件大小(字节)
|
37
|
-
file_size = os.path.getsize(file_path)
|
38
|
-
|
39
|
-
# 单位转换字典
|
40
|
-
unit_dict = {
|
41
|
-
'PB': 1024**5,
|
42
|
-
'TB': 1024**4,
|
43
|
-
'GB': 1024**3,
|
44
|
-
'MB': 1024**2,
|
45
|
-
'KB': 1024,
|
46
|
-
}
|
47
|
-
|
48
|
-
# 检查传入的单位是否合法
|
49
|
-
if unit not in unit_dict:
|
50
|
-
return "单位不合法,请选择PB、TB、GB、MB、KB中的一个"
|
51
|
-
|
52
|
-
# 转换文件大小到指定单位
|
53
|
-
converted_size = file_size / unit_dict[unit]
|
54
|
-
|
55
|
-
return converted_size
|
56
|
-
|
57
|
-
|
58
|
-
class _Downloader:
|
59
|
-
'''
|
60
|
-
根据doi下载文献pdf
|
61
|
-
'''
|
62
|
-
|
63
|
-
def __init__(self, doi, store_path):
|
64
|
-
self.url_list = [r'https://sci-hub.se',
|
65
|
-
r'https://sci-hub.ren',
|
66
|
-
r'https://sci-hub.st',
|
67
|
-
r'https://sci-hub.ru',
|
68
|
-
]
|
69
|
-
self.base_url = None
|
70
|
-
self.url = None
|
71
|
-
self.doi = doi
|
72
|
-
self.pdf_url = None
|
73
|
-
self.pdf_path = None
|
74
|
-
self.headers = {'User-Agent': self.get_ua().encode('utf-8')}
|
75
|
-
# 10.1175/1520-0493(1997)125<0742:IODAOO>2.0.CO;2.pdf
|
76
|
-
# self.fname = doi.replace(r'/', '_') + '.pdf'
|
77
|
-
self.fname = re.sub(r'[/<>:"?*|]', '_', doi) + '.pdf'
|
78
|
-
self.store_path = Path(store_path)
|
79
|
-
self.fpath = self.store_path / self.fname
|
80
|
-
self.wrong_record_file = self.store_path / 'wrong_record.txt'
|
81
|
-
self.sleep = 5
|
82
|
-
self.cookies = None
|
83
|
-
self.check_size = 50
|
84
|
-
self.url_index = 0
|
85
|
-
self.try_times_each_url_max = 3
|
86
|
-
self.try_times = 0
|
87
|
-
|
88
|
-
def get_ua(self):
|
89
|
-
ua_list = [
|
90
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36 OPR/26.0.1656.60",
|
91
|
-
"Opera/8.0 (Windows NT 5.1; U; en)",
|
92
|
-
"Mozilla/5.0 (Windows NT 5.1; U; en; rv:1.8.1) Gecko/20061208 Firefox/2.0.0 Opera 9.50",
|
93
|
-
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 9.50",
|
94
|
-
"Opera/9.80 (Macintosh; Intel Mac OS X 10.6.8; U; en) Presto/2.8.131 Version/11.11",
|
95
|
-
"Opera/9.80 (Windows NT 6.1; U; en) Presto/2.8.131 Version/11.11",
|
96
|
-
"Opera/9.80 (Android 2.3.4; Linux; Opera Mobi/build-1107180945; U; en-GB) Presto/2.8.149 Version/11.10",
|
97
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0",
|
98
|
-
"Mozilla/5.0 (X11; U; Linux x86_64; zh-CN; rv:1.9.2.10) Gecko/20100922 Ubuntu/10.10 (maverick) Firefox/3.6.10",
|
99
|
-
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv,2.0.1) Gecko/20100101 Firefox/4.0.1",
|
100
|
-
"Mozilla/5.0 (Windows NT 6.1; rv,2.0.1) Gecko/20100101 Firefox/4.0.1",
|
101
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2",
|
102
|
-
"MAC:Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36",
|
103
|
-
"Windows:Mozilla/5.0 (Windows; U; Windows NT 6.1; en-us) AppleWebKit/534.50 (KHTML, like Gecko) Version/5.1 Safari/534.50",
|
104
|
-
"Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5",
|
105
|
-
"Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5",
|
106
|
-
"Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5",
|
107
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36",
|
108
|
-
"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11",
|
109
|
-
"Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16",
|
110
|
-
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11",
|
111
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36",
|
112
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko",
|
113
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; 360SE)",
|
114
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.11 TaoBrowser/2.0 Safari/536.11",
|
115
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.71 Safari/537.1 LBBROWSER",
|
116
|
-
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; LBBROWSER)",
|
117
|
-
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 732; .NET4.0C; .NET4.0E; LBBROWSER)"
|
118
|
-
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; QQBrowser/7.0.3698.400)",
|
119
|
-
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 732; .NET4.0C; .NET4.0E)",
|
120
|
-
"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.84 Safari/535.11 SE 2.X MetaSr 1.0",
|
121
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SV1; QQDownload 732; .NET4.0C; .NET4.0E; SE 2.X MetaSr 1.0)",
|
122
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SE 2.X MetaSr 1.0; SE 2.X MetaSr 1.0; .NET CLR 2.0.50727; SE 2.X MetaSr 1.0)",
|
123
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Maxthon/4.4.3.4000 Chrome/30.0.1599.101 Safari/537.36",
|
124
|
-
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11",
|
125
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 UBrowser/4.0.3214.0 Safari/537.36",
|
126
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/6.2.4094.1 Safari/537.36",
|
127
|
-
"Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5",
|
128
|
-
"Mozilla/5.0 (iPod; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5",
|
129
|
-
"Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; zh-cn) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5",
|
130
|
-
"Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5",
|
131
|
-
"Mozilla/5.0 (Linux; U; Android 2.2.1; zh-cn; HTC_Wildfire_A3333 Build/FRG83D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1",
|
132
|
-
"Mozilla/5.0 (Linux; U; Android 2.3.7; en-us; Nexus One Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1",
|
133
|
-
"MQQBrowser/26 Mozilla/5.0 (Linux; U; Android 2.3.7; zh-cn; MB200 Build/GRJ22; CyanogenMod-7) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1",
|
134
|
-
"Opera/9.80 (Android 2.3.4; Linux; Opera Mobi/build-1107180945; U; en-GB) Presto/2.8.149 Version/11.10",
|
135
|
-
"Mozilla/5.0 (Linux; U; Android 3.0; en-us; Xoom Build/HRI39) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13",
|
136
|
-
"Mozilla/5.0 (BlackBerry; U; BlackBerry 9800; en) AppleWebKit/534.1+ (KHTML, like Gecko) Version/6.0.0.337 Mobile Safari/534.1+",
|
137
|
-
"Mozilla/5.0 (hp-tablet; Linux; hpwOS/3.0.0; U; en-US) AppleWebKit/534.6 (KHTML, like Gecko) wOSBrowser/233.70 Safari/534.6 TouchPad/1.0",
|
138
|
-
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;",
|
139
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)",
|
140
|
-
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0)",
|
141
|
-
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)",
|
142
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)",
|
143
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; The World)",
|
144
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; TencentTraveler 4.0)",
|
145
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Avant Browser)",
|
146
|
-
"Mozilla/5.0 (Linux; U; Android 2.3.7; en-us; Nexus One Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1",
|
147
|
-
"Mozilla/5.0 (SymbianOS/9.4; Series60/5.0 NokiaN97-1/20.0.019; Profile/MIDP-2.1 Configuration/CLDC-1.1) AppleWebKit/525 (KHTML, like Gecko) BrowserNG/7.1.18124",
|
148
|
-
"Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HTC; Titan)",
|
149
|
-
"UCWEB7.0.2.37/28/999",
|
150
|
-
"NOKIA5700/UCWEB7.0.2.37/28/999",
|
151
|
-
"Openwave/UCWEB7.0.2.37/28/999",
|
152
|
-
"Openwave/UCWEB7.0.2.37/28/999",
|
153
|
-
]
|
154
|
-
ua_index = random.randint(0, len(ua_list)-1)
|
155
|
-
ua = ua_list[ua_index]
|
156
|
-
return ua
|
157
|
-
|
158
|
-
def get_pdf_url(self):
|
159
|
-
print('[bold #E6E6FA]-'*100)
|
160
|
-
print(f"DOI: {self.doi}")
|
161
|
-
print(f"Requesting: {self.url}...")
|
162
|
-
response = requests.get(self.url, headers=self.headers)
|
163
|
-
if response.status_code == 200:
|
164
|
-
self.cookies = response.cookies
|
165
|
-
text = response.text.replace('\\', '')
|
166
|
-
# text = text.replace(' ', '') # It is important to remove the space
|
167
|
-
# print(text)
|
168
|
-
pattern = re.compile(
|
169
|
-
r'onclick = "location.href=\'(.*?\.pdf\?download=true)\'"')
|
170
|
-
match = pattern.search(text)
|
171
|
-
if match:
|
172
|
-
got_url = match.group(1)
|
173
|
-
if r'http' not in got_url:
|
174
|
-
if got_url[:2] == '//':
|
175
|
-
self.pdf_url = 'https:' + got_url
|
176
|
-
else:
|
177
|
-
self.pdf_url = self.base_url + got_url
|
178
|
-
else:
|
179
|
-
self.pdf_url = got_url
|
180
|
-
print(f"URL: {self.pdf_url}")
|
181
|
-
else:
|
182
|
-
print(f'[bold #AFEEEE]The website {self.url_list[self.url_index]} do not inlcude the PDF file.')
|
183
|
-
self.try_times = self.try_times_each_url_max+1
|
184
|
-
else:
|
185
|
-
print(f"Failed to retrieve the webpage. Status code: {response.status_code}")
|
186
|
-
print(f'[bold #AFEEEE]The website {self.url_list[self.url_index]} do not inlcude the PDF file.')
|
187
|
-
self.try_times = self.try_times_each_url_max+1
|
188
|
-
|
189
|
-
def url_iterate(self):
|
190
|
-
if self.url_index >= len(self.url_list):
|
191
|
-
return
|
192
|
-
url = self.url_list[self.url_index]
|
193
|
-
self.base_url = url
|
194
|
-
self.url = url + '/' + self.doi
|
195
|
-
self.get_pdf_url()
|
196
|
-
# for url in self.url_list:
|
197
|
-
# self.url = url + self.doi
|
198
|
-
# self.get_pdf_url()
|
199
|
-
# if self.pdf_url:
|
200
|
-
# break
|
201
|
-
|
202
|
-
def write_wrong_record(self):
|
203
|
-
with open(self.wrong_record_file, 'a') as f:
|
204
|
-
f.write(self.doi + '\n')
|
205
|
-
|
206
|
-
def download_pdf(self):
|
207
|
-
if self.fpath.exists():
|
208
|
-
fsize = _get_file_size(self.fpath, unit='KB')
|
209
|
-
if fsize < self.check_size:
|
210
|
-
# delete the wrong file
|
211
|
-
os.remove(self.fpath)
|
212
|
-
print(f"[bold yellow]The PDF file {self.fpath} is only {fsize:.2f} KB. It will be deleted and retry.")
|
213
|
-
else:
|
214
|
-
print('[bold #E6E6FA]-'*100)
|
215
|
-
print(f"[bold purple]The PDF file {self.fpath} already exists.")
|
216
|
-
return
|
217
|
-
self.url_index = 0
|
218
|
-
already_downloaded = False
|
219
|
-
self.try_times = 0
|
220
|
-
while not already_downloaded:
|
221
|
-
self.url_iterate()
|
222
|
-
if not self.pdf_url:
|
223
|
-
self.url_index += 1
|
224
|
-
if self.url_index >= len(self.url_list):
|
225
|
-
print("Failed to download the PDF file.")
|
226
|
-
self.write_wrong_record()
|
227
|
-
return
|
228
|
-
else:
|
229
|
-
self.try_times = 0
|
230
|
-
continue
|
231
|
-
else:
|
232
|
-
self.try_times += 1
|
233
|
-
if self.try_times > self.try_times_each_url_max:
|
234
|
-
self.url_index += 1
|
235
|
-
if self.url_index >= len(self.url_list):
|
236
|
-
# print("Failed to download the PDF file.")
|
237
|
-
self.write_wrong_record()
|
238
|
-
return
|
239
|
-
print(f"Downloading: {self.fname}...")
|
240
|
-
try:
|
241
|
-
response = requests.get(self.pdf_url, headers=self.headers, cookies=self.cookies)
|
242
|
-
if response.status_code == 200:
|
243
|
-
with open(self.fpath, 'wb') as f:
|
244
|
-
f.write(response.content)
|
245
|
-
fsize = _get_file_size(self.fpath, unit='KB')
|
246
|
-
if fsize < self.check_size:
|
247
|
-
# delete the wrong file
|
248
|
-
os.remove(self.fpath)
|
249
|
-
print(f"[bold yellow]The PDF file {self.fpath} is only {fsize:.2f} KB. It will be deleted and retry.")
|
250
|
-
else:
|
251
|
-
print(f"[bold green]Sucessful to download {self.fpath}")
|
252
|
-
already_downloaded = True
|
253
|
-
else:
|
254
|
-
self.try_times = self.try_times_each_url_max+1
|
255
|
-
print(f"Failed to download the PDF file. Status code: {response.status_code}")
|
256
|
-
print(f'[bold #AFEEEE]The website {self.url_list[self.url_index]} do not inlcude the PDF file.')
|
257
|
-
except Exception as e:
|
258
|
-
print(f"Failed to download the PDF file. Error: {e}")
|
259
|
-
time.sleep(self.sleep)
|
260
|
-
if self.try_times >= self.try_times_each_url_max:
|
261
|
-
self.url_index += 1
|
262
|
-
if self.url_index >= len(self.url_list):
|
263
|
-
print("\n[bold #CD5C5C]Failed to download the PDF file.")
|
264
|
-
self.write_wrong_record()
|
265
|
-
return
|
266
|
-
if self.try_times == self.try_times_each_url_max:
|
267
|
-
print(f'Tried {self.try_times} times for {self.url_list[self.url_index-1]}.')
|
268
|
-
print("Try another URL...")
|
269
|
-
|
270
|
-
|
271
|
-
def read_excel(file, col_name=r'DOI'):
|
272
|
-
df = pd.read_excel(file)
|
273
|
-
df_list = df[col_name].tolist()
|
274
|
-
# 去掉nan
|
275
|
-
df_list = [doi for doi in df_list if str(doi) != 'nan']
|
276
|
-
return df_list
|
277
|
-
|
278
|
-
|
279
|
-
def read_txt(file):
|
280
|
-
with open(file, 'r') as f:
|
281
|
-
lines = f.readlines()
|
282
|
-
# 去掉换行符以及空行
|
283
|
-
lines = [line.strip() for line in lines if line.strip()]
|
284
|
-
return lines
|
285
|
-
|
286
|
-
|
287
|
-
def download5doi(store_path=None, doi_list=None, txt_file=None, excel_file=None, col_name=r'DOI'):
|
288
|
-
'''
|
289
|
-
Description: Download PDF files by DOI.
|
290
|
-
|
291
|
-
Args:
|
292
|
-
store_path: str, The path to store the PDF files.
|
293
|
-
doi_list: list or str, The list of DOIs.
|
294
|
-
txt_file: str, The path of the txt file that contains the DOIs.
|
295
|
-
excel_file: str, The path of the excel file that contains the DOIs.
|
296
|
-
col_name: str, The column name of the DOIs in the excel file. Default is 'DOI'.
|
297
|
-
|
298
|
-
Returns:
|
299
|
-
None
|
300
|
-
|
301
|
-
Example:
|
302
|
-
download5doi(doi_list='10.3389/feart.2021.698876')
|
303
|
-
download5doi(store_path=r'I:\Delete\ref_pdf', doi_list='10.3389/feart.2021.698876')
|
304
|
-
download5doi(store_path=r'I:\Delete\ref_pdf', doi_list=['10.3389/feart.2021.698876', '10.3389/feart.2021.698876'])
|
305
|
-
download5doi(store_path=r'I:\Delete\ref_pdf', txt_file=r'I:\Delete\ref_pdf\wrong_record.txt')
|
306
|
-
download5doi(store_path=r'I:\Delete\ref_pdf', excel_file=r'I:\Delete\ref_pdf\wrong_record.xlsx')
|
307
|
-
download5doi(store_path=r'I:\Delete\ref_pdf', excel_file=r'I:\Delete\ref_pdf\wrong_record.xlsx', col_name='DOI')
|
308
|
-
'''
|
309
|
-
if not store_path:
|
310
|
-
store_path = Path.cwd()
|
311
|
-
else:
|
312
|
-
store_path = Path(str(store_path))
|
313
|
-
store_path.mkdir(parents=True, exist_ok=True)
|
314
|
-
store_path = str(store_path)
|
315
|
-
|
316
|
-
# 如果doi_list是str,转换为list
|
317
|
-
if isinstance(doi_list, str) and doi_list:
|
318
|
-
doi_list = [doi_list]
|
319
|
-
if txt_file:
|
320
|
-
doi_list = read_txt(txt_file)
|
321
|
-
if excel_file:
|
322
|
-
doi_list = read_excel(excel_file, col_name)
|
323
|
-
print(f"Downloading {len(doi_list)} PDF files...")
|
324
|
-
for doi in track(doi_list, description='Downloading...'):
|
325
|
-
download = _Downloader(doi, store_path)
|
326
|
-
download.download_pdf()
|
327
|
-
|
328
|
-
|
329
|
-
if __name__ == '__main__':
|
330
|
-
store_path = r'I:\Delete\ref_pdf'
|
331
|
-
# download5doi(store_path, doi_list='10.1007/s00382-022-06260-x')
|
332
|
-
download5doi(store_path, excel_file=r'I:\Delete\ref_pdf\savedrecs.xls')
|
@@ -1,151 +0,0 @@
|
|
1
|
-
#!/usr/bin/env python
|
2
|
-
# coding=utf-8
|
3
|
-
"""
|
4
|
-
Author: Liu Kun && 16031215@qq.com
|
5
|
-
Date: 2024-12-01 19:32:25
|
6
|
-
LastEditors: Liu Kun && 16031215@qq.com
|
7
|
-
LastEditTime: 2024-12-10 11:16:36
|
8
|
-
FilePath: \\Python\\My_Funcs\\OAFuncs\\oafuncs\\oa_down\\test.py
|
9
|
-
Description:
|
10
|
-
EditPlatform: vscode
|
11
|
-
ComputerInfo: XPS 15 9510
|
12
|
-
SystemInfo: Windows 11
|
13
|
-
Python Version: 3.12
|
14
|
-
"""
|
15
|
-
|
16
|
-
import os
|
17
|
-
import random
|
18
|
-
import re
|
19
|
-
|
20
|
-
|
21
|
-
def is_valid_user_agent(user_agent):
|
22
|
-
# 简单的正则表达式来检查User Agent的格式
|
23
|
-
# 这个正则表达式检查User Agent是否包含常见的浏览器信息格式
|
24
|
-
pattern = re.compile(
|
25
|
-
r"^(?:(?:Mozilla|Opera|Chrome|Safari|Edg|OPR)/[\d.]+)"
|
26
|
-
r"(?:\s(?:\(.*?\)))?"
|
27
|
-
r"(?:\s(?:Gecko|AppleWebKit|KHTML, like Gecko|Version|Edge|OPR)/[\d.]+)?"
|
28
|
-
r"(?:\s.*?(?:rv:|Version/|Ubuntu|Macintosh|Windows|X11|Linux|CrOS|FreeBSD|OpenBSD|NetBSD|iPhone|iPad|iPod|Android|BlackBerry|BB10|Mobile|Symbian|Windows Phone|IEMobile|Opera Mini|Opera Mobi|UCBrowser|MQQBrowser|baiduboxapp|baidubrowser|Safari|Firefox|MSIE|Trident|Edge|EdgA|Chrome|CriOS|Vivaldi|Sleipnir|Midori|ELinks|Lynx|w3m|Arora|Epiphany|Konqueror|Dillo|Netscape|SeaMonkey|K-Meleon|Camino|Iceape|Galeon|GranParadiso|Iceweasel|Firefox|Fennec|Conkeror|PaleMoon|Uzbl|QupZilla|Otter|Waterfox|Basilisk|Cyberfox|PaleMoon|GNU IceCat|GNU IceWeasel|IceCat|IceWeasel|Seamonkey|Iceape|Firefox|Epiphany|Web|Safari|Android|Mobile|BlackBerry|BB10|Tablet|Silk|Kindle|FxiOS|Focus|SamsungBrowser|browser|AppleWebKit|Puffin|DuckDuckGo|YaBrowser|Yandex|Amigo|NokiaBrowser|OviBrowser|OneBrowser|Chrome|Firefox|Safari|OPR|Coast|Mercury|Silk|Skyfire|IEMobile|Bolt|Jasmine|NativeHost|Crosswalk|TizenBrowser|SailfishBrowser|SamsungBrowser|Silk-Accelerated|UCBrowser|Quark|XiaoMi|OnePlus|Vivo|Oppo|Realme|Meizu|Lenovo|Huawei|ZTE|Alcatel|Sony|Nokia|LG|HTC|Asus|Acer|Motorola|Samsung)/[\d.]+)?$"
|
29
|
-
)
|
30
|
-
|
31
|
-
# 使用正则表达式匹配User Agent字符串
|
32
|
-
if pattern.match(user_agent):
|
33
|
-
return True
|
34
|
-
else:
|
35
|
-
return False
|
36
|
-
|
37
|
-
|
38
|
-
def get_ua():
|
39
|
-
current_dir = os.path.dirname(os.path.abspath(__file__))
|
40
|
-
ua_file_txt = os.path.join(current_dir, "User_Agent-list.txt")
|
41
|
-
|
42
|
-
with open(ua_file_txt, "r") as f:
|
43
|
-
ua_list = f.readlines()
|
44
|
-
# 去掉换行符和空行
|
45
|
-
ua_list = [line.strip() for line in ua_list if line.strip()]
|
46
|
-
|
47
|
-
return random.choice(ua_list)
|
48
|
-
|
49
|
-
|
50
|
-
def get_ua_org():
|
51
|
-
ua_list = [
|
52
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36 OPR/26.0.1656.60",
|
53
|
-
"Opera/8.0 (Windows NT 5.1; U; en)",
|
54
|
-
"Mozilla/5.0 (Windows NT 5.1; U; en; rv:1.8.1) Gecko/20061208 Firefox/2.0.0 Opera 9.50",
|
55
|
-
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 9.50",
|
56
|
-
"Opera/9.80 (Macintosh; Intel Mac OS X 10.6.8; U; en) Presto/2.8.131 Version/11.11",
|
57
|
-
"Opera/9.80 (Windows NT 6.1; U; en) Presto/2.8.131 Version/11.11",
|
58
|
-
"Opera/9.80 (Android 2.3.4; Linux; Opera Mobi/build-1107180945; U; en-GB) Presto/2.8.149 Version/11.10",
|
59
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0",
|
60
|
-
"Mozilla/5.0 (X11; U; Linux x86_64; zh-CN; rv:1.9.2.10) Gecko/20100922 Ubuntu/10.10 (maverick) Firefox/3.6.10",
|
61
|
-
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv,2.0.1) Gecko/20100101 Firefox/4.0.1",
|
62
|
-
"Mozilla/5.0 (Windows NT 6.1; rv,2.0.1) Gecko/20100101 Firefox/4.0.1",
|
63
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2",
|
64
|
-
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36",
|
65
|
-
"Mozilla/5.0 (Windows; U; Windows NT 6.1; en-us) AppleWebKit/534.50 (KHTML, like Gecko) Version/5.1 Safari/534.50",
|
66
|
-
"Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5",
|
67
|
-
"Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5",
|
68
|
-
"Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5",
|
69
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36",
|
70
|
-
"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11",
|
71
|
-
"Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16",
|
72
|
-
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11",
|
73
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36",
|
74
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko",
|
75
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; 360SE)",
|
76
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.11 TaoBrowser/2.0 Safari/536.11",
|
77
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.71 Safari/537.1 LBBROWSER",
|
78
|
-
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; LBBROWSER)",
|
79
|
-
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 732; .NET4.0C; .NET4.0E; LBBROWSER)",
|
80
|
-
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; QQBrowser/7.0.3698.400)",
|
81
|
-
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 732; .NET4.0C; .NET4.0E)",
|
82
|
-
"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.84 Safari/535.11 SE 2.X MetaSr 1.0",
|
83
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SV1; QQDownload 732; .NET4.0C; .NET4.0E; SE 2.X MetaSr 1.0)",
|
84
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; SE 2.X MetaSr 1.0; SE 2.X MetaSr 1.0; .NET CLR 2.0.50727; SE 2.X MetaSr 1.0)",
|
85
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Maxthon/4.4.3.4000 Chrome/30.0.1599.101 Safari/537.36",
|
86
|
-
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11",
|
87
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 UBrowser/4.0.3214.0 Safari/537.36",
|
88
|
-
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/6.2.4094.1 Safari/537.36",
|
89
|
-
"Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5",
|
90
|
-
"Mozilla/5.0 (iPod; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5",
|
91
|
-
"Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; zh-cn) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5",
|
92
|
-
"Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5",
|
93
|
-
"Mozilla/5.0 (Linux; U; Android 2.2.1; zh-cn; HTC_Wildfire_A3333 Build/FRG83D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1",
|
94
|
-
"Mozilla/5.0 (Linux; U; Android 2.3.7; en-us; Nexus One Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1",
|
95
|
-
"MQQBrowser/26 Mozilla/5.0 (Linux; U; Android 2.3.7; zh-cn; MB200 Build/GRJ22; CyanogenMod-7) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1",
|
96
|
-
"Opera/9.80 (Android 2.3.4; Linux; Opera Mobi/build-1107180945; U; en-GB) Presto/2.8.149 Version/11.10",
|
97
|
-
"Mozilla/5.0 (Linux; U; Android 3.0; en-us; Xoom Build/HRI39) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13",
|
98
|
-
"Mozilla/5.0 (BlackBerry; U; BlackBerry 9800; en) AppleWebKit/534.1+ (KHTML, like Gecko) Version/6.0.0.337 Mobile Safari/534.1+",
|
99
|
-
"Mozilla/5.0 (hp-tablet; Linux; hpwOS/3.0.0; U; en-US) AppleWebKit/534.6 (KHTML, like Gecko) wOSBrowser/233.70 Safari/534.6 TouchPad/1.0",
|
100
|
-
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;",
|
101
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)",
|
102
|
-
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0)",
|
103
|
-
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)",
|
104
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)",
|
105
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; The World)",
|
106
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; TencentTraveler 4.0)",
|
107
|
-
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Avant Browser)",
|
108
|
-
"Mozilla/5.0 (Linux; U; Android 2.3.7; en-us; Nexus One Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1",
|
109
|
-
"Mozilla/5.0 (SymbianOS/9.4; Series60/5.0 NokiaN97-1/20.0.019; Profile/MIDP-2.1 Configuration/CLDC-1.1) AppleWebKit/525 (KHTML, like Gecko) BrowserNG/7.1.18124",
|
110
|
-
"Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HTC; Titan)",
|
111
|
-
"UCWEB7.0.2.37/28/999",
|
112
|
-
"NOKIA5700/UCWEB7.0.2.37/28/999",
|
113
|
-
"Openwave/UCWEB7.0.2.37/28/999",
|
114
|
-
"Openwave/UCWEB7.0.2.37/28/999",
|
115
|
-
]
|
116
|
-
with open(newtxtfile, "w") as f:
|
117
|
-
for line in ua_list:
|
118
|
-
f.write(line + "\n")
|
119
|
-
# print(f'Using User-Agent: {ua}')
|
120
|
-
ua = random.choice(ua_list)
|
121
|
-
return ua
|
122
|
-
|
123
|
-
|
124
|
-
# get_ua_org()
|
125
|
-
|
126
|
-
if __name__ == "__main__":
|
127
|
-
txtfile = r"E:\Code\Python\My_Funcs\OAFuncs\oafuncs\oa_down\User_Agent-list.txt"
|
128
|
-
|
129
|
-
with open(txtfile, "r") as f:
|
130
|
-
lines = f.readlines()
|
131
|
-
# 去掉换行符和空行
|
132
|
-
lines = [line.strip() for line in lines if line.strip()]
|
133
|
-
""" new_line = []
|
134
|
-
for i in range(len(lines)):
|
135
|
-
if '/' in lines[i]:
|
136
|
-
new_line.append(lines[i])
|
137
|
-
else:
|
138
|
-
print(lines[i]) """
|
139
|
-
|
140
|
-
new_line = []
|
141
|
-
for line in lines:
|
142
|
-
if is_valid_user_agent(line):
|
143
|
-
# print(line)
|
144
|
-
new_line.append(line)
|
145
|
-
else:
|
146
|
-
print(f"Invalid User-Agent: {line}")
|
147
|
-
|
148
|
-
newtxtfile = r"E:\Code\Python\My_Funcs\OAFuncs\oafuncs\oa_down\ua_list_new.txt"
|
149
|
-
with open(newtxtfile, "w") as f:
|
150
|
-
for line in new_line:
|
151
|
-
f.write(line + "\n")
|