1. ホーム
  2. python

[解決済み] AttributeError: モジュール 'urllib' には 'urlopen' という属性がない [重複] 。

2022-03-02 09:51:58

質問

Pythonを学び始めたばかりです。私はコードを正しく書いたと確信しています。

import urllib
import re


stockname = input('Enter the stock name : ')

url = "https://www.nseindia.com/live_market/dynaContent/live_watch/get_quote/GetQuote.jsp?symbol="+stockname+"&illiquid=0&smeFlag=0&itpFlag=0"
htmlfile = urllib.urlopen(url)
htmltext = htmlfile.read()
regex = '<span id="lastPrice">'+stockname+'</span>'
pattern = re.compile(regex)
price = re.findall(pattern,htmltext)
print (price)

が、いくらやってもこのエラーが出ます。

Enter the stock name : tcs
Traceback (most recent call last):
  File "C:\Users\.....\Desktop\stockq.py", line 8, in <module>
    htmlfile = urllib.urlopen(url)
AttributeError: module 'urllib' has no attribute 'urlopen'

同様に`urllib.request'も試してみました。このようなエラーが発生します。

Traceback (most recent call last):
  File "C:\Users\HiMMi\Desktop\stockq.py", line 8, in <module>
    htmlfile = urllib.request.urlopen(url)
  File "C:\Users\HiMMi\AppData\Local\Programs\Python\Python36-32\lib\urllib\request.py", line 223, in urlopen
    return opener.open(url, data, timeout)
  File "C:\Users\HiMMi\AppData\Local\Programs\Python\Python36-32\lib\urllib\request.py", line 532, in open
    response = meth(req, response)
  File "C:\Users\HiMMi\AppData\Local\Programs\Python\Python36-32\lib\urllib\request.py", line 642, in http_response
    'http', request, response, code, msg, hdrs)
  File "C:\Users\HiMMi\AppData\Local\Programs\Python\Python36-32\lib\urllib\request.py", line 570, in error
    return self._call_chain(*args)
  File "C:\Users\HiMMi\AppData\Local\Programs\Python\Python36-32\lib\urllib\request.py", line 504, in _call_chain
    result = func(*args)
  File "C:\Users\HiMMi\AppData\Local\Programs\Python\Python36-32\lib\urllib\request.py", line 650, in http_error_default
    raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 403: Forbidden

解決方法は?

これはpy2には有効ですが、Python 3xには有効ではありません。Python 3xの場合。 urlopen が存在し urllib.request :

import urllib.request

urllib.request.urlopen(...)