如何找出我的确切地理位置(lat,lng或bssid),python3

时间:2018-06-09 16:10:35

标签: python python-3.x location python-3.6 userlocation

我需要知道运行脚本的设备的确切位置(窗口)

尝试过:

import googlemaps
gmaps = googlemaps.Client('Api KEY')
geocode_result = gmaps.geocode('Me')
print(geocode_result)

conclusion >>> []

同样如此:

from geopy import Nominatim
geolocator = Nominatim()
location = geolocator.geocode("Me")
print(location.latitude, location.longitude)
so tried

import geopy
g = geopy.ip('me')
print(g.latlng)

(不提供确切的位置)

0 个答案:

没有答案