I am trying to use geodis from here : https://github.com/doat/geodis
I downloaded redis as explained in their website and here : ImportError: No module named redis
Now when I do the following as explained in the geodis website I get the error: no module named redis.
dn525f4i:src hmi$ ./geodis.py -l 40.90732,-74.07514
Traceback (most recent call last):
File "./geodis.py", line 29, in <module>
import redis
ImportError: No module named redis
But when I do the following
dn525f4i:src hmi$ python geodis.py 40.90732,-74.07514
Success!
I get the above "Success!" but it should idea be like following :
$ ./geodis.py -l 40.90732,-74.07514
Location: {'name': 'Rochelle Park', 'country': 'United States', 'lon': '-74.07514', 'zipcode': '', 'state': 'New Jersey', 'key': 'loc:rochelle park:united states:new jersey:', 'lat': '40.90732'}
Any idea on what I am doing wrong? Thanks!