我正在尝试通过我的网站使用 geopy 从用户位置坐标获取地址,该网站托管在 pythonanywhere 服务器上。
以下是我在烧瓶中用来完成这项工作的代码。
from geopy.geocoders import Nominatim
geolocator = Nominatim()
@app.route('/location', methods = ['POST'])
def location():
latitude = request.json['latitude']
longitude = request.json['longitude']
location = geolocator.reverse(str(latitude)+ "," + str(longitude))
send_email("myemail@example.com","Location:",str(location.address))