我用這個字符串模塊 '的urllib' 有沒有屬性 '請求'
thepage = urllib.request.urlopen(theurl)
與此
import urllib.request
試過,我不斷收到以下錯誤
Traceback (most recent call last):
File ".\email.py", line 2, in <module>
import urllib.request
File "C:\Users\Alonzo\AppData\Local\Programs\Python\Python35-32\lib\urllib\request.py", line 86, in <module>
import email
File "C:\Users\Alonzo\programming\Email Bot\email.py", line 6, in <module>
thepage = urllib.request.urlopen(theurl)
AttributeError: module 'urllib' has no attribute 'request'
我米不知道這個問題可能是什麼。
你確定你不只是'輸入urllib',然後'thepage = urllib.request.urlopen(theurl)'?因爲這會導致你看到的錯誤。否則,我無法複製。請顯示所有相關代碼。 – elethan
進口urllib.request裏 從BS4進口BeautifulSoup theurl = 'https://twitter.com/Imaqtpielol' 拖到繪圖頁= urllib.request.urlopen(theurl) 湯= BeautifulSoup(拖到繪圖頁, 'html.parser') print(soup.title) – oso9817
如果您執行'import urllib.request; urllib.request.urlopen'在Python 3解釋器中?您的確切代碼適合我。 – elethan