generated from mwc/lab_weather
15 lines
299 B
Python
15 lines
299 B
Python
#!/usr/bin/python
|
|
# coding: utf8
|
|
|
|
from __future__ import absolute_import
|
|
from geocoder.locationiq import LocationIQQuery
|
|
|
|
|
|
class LocationIQReverse(LocationIQQuery):
|
|
provider = 'locationiq'
|
|
method = 'reverse'
|
|
|
|
if __name__ == '__main__':
|
|
g = LocationIQReverse("45.3, -75.4")
|
|
g.debug()
|