Câu hỏi được gắn thẻ «urllib»

Mô-đun Python cung cấp giao diện cấp cao để tìm nạp dữ liệu trên World Wide Web. Tiền thân của urllib2. Trong Python 3, urllib2 và urllib đã được tổ chức lại và hợp nhất thành urllib.





30
urllib và SSL SSL: CERTIFICATE_VERIFY_FAILED Lỗi lỗi
Tôi nhận được lỗi sau: Exception in thread Thread-3: Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 810, in __bootstrap_inner self.run() File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 763, in run self.__target(*self.__args, **self.__kwargs) File "/Users/Matthew/Desktop/Skypebot 2.0/bot.py", line 271, in process info = urllib2.urlopen(req).read() File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 154, in urlopen return opener.open(url, data, timeout) File …

6
Làm thế nào để gửi yêu cầu POST?
Tôi tìm thấy kịch bản này trực tuyến: import httplib, urllib params = urllib.urlencode({'number': 12524, 'type': 'issue', 'action': 'show'}) headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"} conn = httplib.HTTPConnection("bugs.python.org") conn.request("POST", "", params, headers) response = conn.getresponse() print response.status, response.reason 302 Found data = response.read() data 'Redirecting to <a href="http://bugs.python.org/issue12524">http://bugs.python.org/issue12524</a>' conn.close() Nhưng …
260 python  urllib  httplib 

6
UnicodeEncodeError: codec 'charmap' không thể mã hóa các ký tự
Tôi đang cố gắng để cạo một trang web, nhưng nó gây ra lỗi cho tôi. Tôi đang sử dụng mã sau đây: import urllib.request from bs4 import BeautifulSoup get = urllib.request.urlopen("https://www.website.com/") html = get.read() soup = BeautifulSoup(html) print(soup) Và tôi đang nhận được lỗi sau: File "C:\Python34\lib\encodings\cp1252.py", line 19, …

18
Tải ảnh qua urllib và python
Vì vậy, tôi đang cố gắng tạo một tập lệnh Python tải xuống webcomics và đặt chúng vào một thư mục trên máy tính để bàn của tôi. Tôi đã tìm thấy một vài chương trình tương tự ở đây để làm một cái gì đó tương tự, nhưng không …
183 python  urllib2  urllib 

12
AttributionError: đối tượng 'module' không có thuộc tính 'urlopen'
Tôi đang cố gắng sử dụng Python để tải xuống mã nguồn HTML của một trang web nhưng tôi nhận được lỗi này. Traceback (most recent call last): File "C:\Users\Sergio.Tapia\Documents\NetBeansProjects\DICParser\src\WebDownload.py", line 3, in <module> file = urllib.urlopen("http://www.python.org") AttributeError: 'module' object has no attribute 'urlopen' Tôi đang làm theo hướng dẫn …



4
Python: Nhập urllib.quote
Tôi muốn sử dụng urllib.quote(). Nhưng python (python3) không tìm thấy mô-đun. Giả sử, tôi có dòng mã này: print(urllib.quote("châteu", safe='')) Làm cách nào để nhập urllib.quote? import urllibhoặc import urllib.quotecả hai đều cho AttributeError: 'module' object has no attribute 'quote' Điều làm tôi bối rối urllib.requestlà có thể truy …

3
'mô-đun' không có thuộc tính 'urlencode'
Khi tôi cố gắng làm theo ví dụ của Python Wiki liên quan đến mã hóa URL: >>> import urllib >>> params = urllib.urlencode({'spam': 1, 'eggs': 2, 'bacon': 0}) >>> f = urllib.urlopen("http://www.musi-cal.com/cgi-bin/query", params) >>> print f.read() Một lỗi được nêu ra trên dòng thứ hai: Traceback (most recent call …

9
chúng ta có thể sử dụng xpath với BeautifulSoup không?
Tôi đang sử dụng BeautifulSoup để quét url và tôi có mã sau import urllib import urllib2 from BeautifulSoup import BeautifulSoup url = "http://www.example.com/servlet/av/ResultTemplate=AVResult.html" req = urllib2.Request(url) response = urllib2.urlopen(req) the_page = response.read() soup = BeautifulSoup(the_page) soup.findAll('td',attrs={'class':'empformbody'}) Bây giờ trong đoạn mã trên, chúng ta có thể sử dụng findAllđể …

3
urllib2.HTTPError: HTTP Error 403: Forbidden
Tôi đang cố gắng tự động tải xuống dữ liệu cổ phiếu lịch sử bằng python. URL tôi đang cố mở phản hồi bằng tệp CSV, nhưng tôi không thể mở bằng urllib2. Tôi đã thử thay đổi tác nhân người dùng như được chỉ định trong một vài câu …
102 python  http  urllib 

Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.