KeyError 回溯(最近一次调用最后一次)

时间:2021-04-17 02:17:41

标签: python exif geopy

**from geopy.geocoders import Here
    exif = get_exif('earth_postcard_1599147372.jpg')
    geotags = get_geotagging(exif)
    coords = get_coordinates(geotags)
    geocoder = Here(apikey=os.environ['API_KEY'])
    print(geocoder.reverse("%s,%s" % coords))**



ERROR
KeyError                                  Traceback (most recent call last)
<ipython-input-13-baa26ae24e59> in <module>
      4 geotags = get_geotagging(exif)
      5 coords = get_coordinates(geotags)
----> 6 geocoder = Here(apikey=os.environ['API_KEY'])
      7 print(geocoder.reverse("%s,%s" % coords))

~\anaconda3\lib\os.py in __getitem__(self, key)
    677         except KeyError:
    678             # raise KeyError with the original key value
--> 679             raise KeyError(key) from None
    680         return self.decodevalue(value)
    681 

KeyError: 'API_KEY'

在这里,我尝试使用 geopy 库获取使用纬度和经度的位置,但我遇到了关键错误

1 个答案:

答案 0 :(得分:0)

你应该检查你是否设置了你的环境参数。你可以进入python命令行模式然后输入:

导入操作系统
os.environ.keys()

系统将输出所有环境参数。不应设置“API_KEY”。如果你在系统参数列表中设置了这个键,这个错误就会消失。

相关问题