1. ホーム
  2. Python

Python3ダウンロードファイルです。AttributeError:モジュール 'urllib' には 'request' という属性がありません。

2022-02-11 11:52:14
<パス
  • Python3用のurllibパッケージがいくつかアップデートされているので、使用する際には注意が必要です

    import os
    import urllib
    url = ""
    file = "{}.pdf".format('download_file')
    save_path = os.path.join('/Users/Desktop/', file)
    urllib.request.urlretrieve(url, save_path)
    
    
    
  • この方法で使用すると、エラーが報告されます

    AttributeError: module 'urllib' has no attribute 'request'
    
    
    
  • なぜならpython3では urllib.request は別パッケージになるので、インポートするときは、これを

    import os
    import urllib.request as ur
    url = ""
    file = "{}.pdf".format('download_file')
    save_path = os.path.join('/Users/Desktop/', file)
    # Add headers
    headers = [
        ('Content-Type', 'application/x-www-form-urlencoded'),
        ("user-agent", "212313132131514654")
    ]
    opener = ur.build_opener()
    opener.addheaders = headers
    ur.install_opener(opener)
    # Download and save
    ur.urlretrieve(url, save_path)
    
    
    
  • その他のファイルダウンロード方法

    headers = {'Content-Type': "application/json"}
    r = requests.request("GET", url, headers=headers)
    with open("download_file.xls", "wb") as code:
        code.write(r.content)