在 reverse 方法中引入 API 键(geocoder python 库)

Introducing API key in reverse method (geocoder python library)

我将不胜感激:我正在尝试使用地理编码器 python 库的反向方法对县和国家/地区进行地理定位。它要求我包含一个 API 键,一旦我从我的 mapbox 帐户中获得 token/key,我如何将它添加到我的查询中?

import geocoder

g = geocoder.mapbox([53.3887213, -2.732602113], method='reverse')
print(g.county)
print(g.country)

非常感谢您!

解决方案:

import geocoder

latlng = [45.3, -105.1]
g = geocoder.mapbox(latlng, 
                    key='ACCESS_MAPBOX_TOKEN', 
                    method='reverse')
g.json