I want to write a small program to automatically download the download link from the web page http://www.sse.com.cn/assortm... http://query.sse.com.cn/secur...
I used urllib to prompt 403, so I added user-agent to return 200, but then when using urlretrieve, it prompted a regular matching error. I couldn't find the answer online. How can you solve this problem?
code show as below:
from urllib import request
from datetime import datetime
url = 'http://query.sse.com.cn/secur...'
user_agent = 'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Mobile Safari/537.36'
myheaders = {'User - Agent': user_agent}
req = request.Request(url, headers=myheaders)
local = "/Users/Mty/Downloads/s_data/" str(datetime.now().date()) " .xls"
request.urlretrieve(req, local)
Error report:
Traceback (most recent call last):
File "/Users/Mty/PycharmProjects/get_data/date.py", line 20, in <module>
request.urlretrieve(req, local)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/urllib/request.py", line 186, in urlretrieve
url_type, path = splittype(url)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/urllib/parse.py", line 861, in splittype
match = _typeprog.match(url)
TypeError: expected string or bytes-like object
Use request.build_opener to add head to solve the problem