Repository URL to install this package:
|
Version:
1.38.1 ▾
|
geocoder
/
locationiq_reverse.py
|
|---|
#!/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()