Kesalahan impor: Tidak ada nama modul urllib2

468

Ini kode saya:

import urllib2.request

response = urllib2.urlopen("http://www.google.com")
html = response.read()
print(html)

Ada bantuan?

ivanleoncz
sumber
4
Saya melihat Anda mengedit jawaban Anda lagi, jadi saya mengedit jawaban saya lagi untuk menjawab: masalah Anda saat ini adalah yang Anda katakan urllib.urlopen("http://www.google.com/")bukan hanyaurlopen("http://www.google.com/")
Eli Courtwright

Jawaban:

631

Sebagaimana dinyatakan dalam urllib2dokumentasi :

The urllib2modul telah dibagi di beberapa modul Python 3 bernama urllib.requestdan urllib.error. The 2to3alat otomatis akan beradaptasi impor ketika mengkonversi sumber Anda untuk Python 3.

Jadi, Anda seharusnya mengatakan

from urllib.request import urlopen
html = urlopen("http://www.google.com/").read()
print(html)

Sampel kode Anda yang sekarang diedit saat ini salah karena Anda mengatakan urllib.urlopen("http://www.google.com/")alih-alih adil urlopen("http://www.google.com/").

Eli Courtwright
sumber
1
Masih mendapatkan kesalahan, silakan lihat edit. Sunting: Masih mendapatkan kesalahan saat menggunakan dari urllib.request
7
@Sergio: Ini urllib.requestdan tidak urllib2.request. The urllibdan urllib2modul dari Python 2.x telah digabungkan ke dalam urllibmodul Python 3.
Eli Courtwright
1
Ini berhasil untuk saya. Terima kasih Eli. Namun, saya mendapatkan kesalahan batas waktu ketika saya mencoba mengakses URL. Saya juga tidak bisa melakukan ping google.com. Sepertinya jaringan saya menggunakan proxy.
Vaibhav
Woo, mundur kompatibilitas!
user2589273
104

Untuk skrip yang berfungsi dengan Python 2 (versi yang diuji 2.7.3 dan 2.6.8) dan Python 3 (3.2.3 dan 3.3.2+) coba:

#! /usr/bin/env python

try:
    # For Python 3.0 and later
    from urllib.request import urlopen
except ImportError:
    # Fall back to Python 2's urllib2
    from urllib2 import urlopen

html = urlopen("http://www.google.com/")
print(html.read())
Uwe Kleine-König
sumber
65

Di atas tidak bekerja untuk saya dalam 3.3. Coba ini sebagai gantinya (YMMV, dll)

import urllib.request
url = "http://www.google.com/"
request = urllib.request.Request(url)
response = urllib.request.urlopen(request)
print (response.read().decode('utf-8'))
keithl8041
sumber
24

Beberapa penyelesaian tab untuk menampilkan konten paket di Python 2 vs Python 3.

Dengan Python 2:

In [1]: import urllib

In [2]: urllib.
urllib.ContentTooShortError      urllib.ftpwrapper                urllib.socket                    urllib.test1
urllib.FancyURLopener            urllib.getproxies                urllib.splitattr                 urllib.thishost
urllib.MAXFTPCACHE               urllib.getproxies_environment    urllib.splithost                 urllib.time
urllib.URLopener                 urllib.i                         urllib.splitnport                urllib.toBytes
urllib.addbase                   urllib.localhost                 urllib.splitpasswd               urllib.unquote
urllib.addclosehook              urllib.noheaders                 urllib.splitport                 urllib.unquote_plus
urllib.addinfo                   urllib.os                        urllib.splitquery                urllib.unwrap
urllib.addinfourl                urllib.pathname2url              urllib.splittag                  urllib.url2pathname
urllib.always_safe               urllib.proxy_bypass              urllib.splittype                 urllib.urlcleanup
urllib.base64                    urllib.proxy_bypass_environment  urllib.splituser                 urllib.urlencode
urllib.basejoin                  urllib.quote                     urllib.splitvalue                urllib.urlopen
urllib.c                         urllib.quote_plus                urllib.ssl                       urllib.urlretrieve
urllib.ftpcache                  urllib.re                        urllib.string                    
urllib.ftperrors                 urllib.reporthook                urllib.sys  

Dengan Python 3:

In [2]: import urllib.
urllib.error        urllib.parse        urllib.request      urllib.response     urllib.robotparser

In [2]: import urllib.error.
urllib.error.ContentTooShortError  urllib.error.HTTPError             urllib.error.URLError

In [2]: import urllib.parse.
urllib.parse.parse_qs          urllib.parse.quote_plus        urllib.parse.urldefrag         urllib.parse.urlsplit
urllib.parse.parse_qsl         urllib.parse.unquote           urllib.parse.urlencode         urllib.parse.urlunparse
urllib.parse.quote             urllib.parse.unquote_plus      urllib.parse.urljoin           urllib.parse.urlunsplit
urllib.parse.quote_from_bytes  urllib.parse.unquote_to_bytes  urllib.parse.urlparse

In [2]: import urllib.request.
urllib.request.AbstractBasicAuthHandler         urllib.request.HTTPSHandler
urllib.request.AbstractDigestAuthHandler        urllib.request.OpenerDirector
urllib.request.BaseHandler                      urllib.request.ProxyBasicAuthHandler
urllib.request.CacheFTPHandler                  urllib.request.ProxyDigestAuthHandler
urllib.request.DataHandler                      urllib.request.ProxyHandler
urllib.request.FTPHandler                       urllib.request.Request
urllib.request.FancyURLopener                   urllib.request.URLopener
urllib.request.FileHandler                      urllib.request.UnknownHandler
urllib.request.HTTPBasicAuthHandler             urllib.request.build_opener
urllib.request.HTTPCookieProcessor              urllib.request.getproxies
urllib.request.HTTPDefaultErrorHandler          urllib.request.install_opener
urllib.request.HTTPDigestAuthHandler            urllib.request.pathname2url
urllib.request.HTTPErrorProcessor               urllib.request.url2pathname
urllib.request.HTTPHandler                      urllib.request.urlcleanup
urllib.request.HTTPPasswordMgr                  urllib.request.urlopen
urllib.request.HTTPPasswordMgrWithDefaultRealm  urllib.request.urlretrieve
urllib.request.HTTPRedirectHandler     


In [2]: import urllib.response.
urllib.response.addbase       urllib.response.addclosehook  urllib.response.addinfo       urllib.response.addinfourl
cs01
sumber
21

Python 3:

import urllib.request

wp = urllib.request.urlopen("http://google.com")
pw = wp.read()
print(pw)

Python 2:

import urllib
import sys

wp = urllib.urlopen("http://google.com")
for line in wp:
    sys.stdout.write(line)

Sementara saya telah menguji kedua Kode di masing-masing versi.

Shivam Kotwalia
sumber
8

Sederhana dari semua solusi:

Dengan Python 3.x:

import urllib.request
url = "https://api.github.com/users?since=100"
request = urllib.request.Request(url)
response = urllib.request.urlopen(request)
data_content = response.read()
print(data_content)
Gil Baggio
sumber
6

Dalam python 3, untuk mendapatkan output teks:

import io
import urllib.request

response = urllib.request.urlopen("http://google.com")
text = io.TextIOWrapper(response)
James Wierzba
sumber
5

Itu bekerja untuk saya di python3:

import urllib.request
htmlfile = urllib.request.urlopen("http://google.com")
htmltext = htmlfile.read()
print(htmltext)

sumber