このページにある下記コードを実行するとこんなエラーが出てしまいます。
########### Python 3.2 ############# import http.client, urllib.request, urllib.parse, urllib.error, base64 import json #### Request headers #'Content-Type': APIに送るメディアのタイプ. # 'application/json'(URL指定の場合), 'application/octet-stream' (Local ファイル転送の場合) #'Ocp-Apim-Subscription-Key': APIキーを指定する headers = { # 'Content-Type': 'application/json', 'Content-Type': 'application/octet-stream', 'Ocp-Apim-Subscription-Key': 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX', } #### Request parameters # 取得したい情報について、パラメータを指定する # 'returnFaceId': 入力した顔画像に付与されるIDを返すかどうか # 'returnFaceLandmarks' : 目や口などの特徴となる部分の座標を返すかどうか # 'returnFaceAttributes' : 認識した顔からわかる属性を返す # 指定できるパラメータは以下で、コンマで分けて複数指定可能 # age, gender, headPose, smile, facialHair, # glasses, emotion, hair, makeup, occlusion, # accessories, blur, exposure and noise params = urllib.parse.urlencode({ 'returnFaceId': 'true', # 'returnFaceLandmarks': 'true', 'returnFaceAttributes': 'age,gender,smile,facialHair,emotion' }) #### Request body # 入力したい画像の指定をする. 画像URLの指定, local ファイルの指定から選択 # 画像はJPEG, PNG, GIF, BMPに対応 # サイズの上限は4MB # 認識可能な顔のサイズは 36x36 - 4096x4096 pixelsの範囲 # 最大64個の顔を認識可能 ## URL 指定の場合以下のコメントアウトを外すし、image_urlを指定する #image_url = 'https://XXXXX' #body = { 'url': image_url } #body = json.dumps(body) ## Local file指定の場合 # 以下の image_file_path に読み込むファイルのパスを指定する image_file_path = 'c:/temp/Lenna.jpg' image_file = open(image_file_path,'rb') body = image_file.read() image_file.close() #### API request # 接続先リージョンによっては, 以下HTTPSConnection の "westus.api.cognitive.microsoft.com" 部分は変更する. # この場合は「westus」なので北米西部リージョン # なお "/face/v1.0/detect?%s" の部分が接続先APIの機能を指定している try: conn = http.client.HTTPSConnection('https://shotaaa.cognitiveservices.azure.com/') conn.request("POST", "/face/v1.0/detect?%s" % params, body, headers) response = conn.getresponse() data = json.loads(response.read()) print(json.dumps(data, indent=4)) conn.close() except Exception as e: print("[Errno {0}] {1}".format(e.errno, e.strerror)) ####################################
--------------------------------------------------------------------------- ValueError Traceback (most recent call last) ~\Anaconda3\lib\http\client.py in _get_hostport(self, host, port) 886 try: --> 887 port = int(host[i+1:]) 888 except ValueError: ValueError: invalid literal for int() with base 10: '//shotaaa.cognitiveservices.azure.com/' During handling of the above exception, another exception occurred: InvalidURL Traceback (most recent call last) <ipython-input-2-f0904f9e9afa> in <module> 53 try: ---> 54 conn = http.client.HTTPSConnection('https://shotaaa.cognitiveservices.azure.com/') 55 conn.request("POST", "/face/v1.0/detect?%s" % params, body, headers) ~\Anaconda3\lib\http\client.py in __init__(self, host, port, key_file, cert_file, timeout, source_address, context, check_hostname, blocksize) 1380 source_address, -> 1381 blocksize=blocksize) 1382 if (key_file is not None or cert_file is not None or ~\Anaconda3\lib\http\client.py in __init__(self, host, port, timeout, source_address, blocksize) 850 --> 851 (self.host, self.port) = self._get_hostport(host, port) 852 ~\Anaconda3\lib\http\client.py in _get_hostport(self, host, port) 891 else: --> 892 raise InvalidURL("nonnumeric port: '%s'" % host[i+1:]) 893 host = host[:i] InvalidURL: nonnumeric port: '//shotaaa.cognitiveservices.azure.com/' During handling of the above exception, another exception occurred: AttributeError Traceback (most recent call last) <ipython-input-2-f0904f9e9afa> in <module> 59 conn.close() 60 except Exception as e: ---> 61 print("[Errno {0}] {1}".format(e.errno, e.strerror)) 62 63 #################################### AttributeError: 'InvalidURL' object has no attribute 'errno'
どこから直せばいいのかわからず、一番最後のエラーも探しても見つかりませんでした。
教えてもらえますでしょうか。
e.Errnoはどう書き換えたら正常に動くようになるのでしょうか。