I am trying to create a page that shows the user their zip code when they are on my page. (if any of you are familiar with GeoIP data, thats what I am using. )
I\'m trying to do some IP-lookup on Python Google Appengine like this: import pygeoip gi = pygeoip.GeoIP(\'GeoIP.dat\')
I tried geodjango recently, and worked just fine for me, even without installing that C library. But when I used the same project in the appengine sdk, it fails whenever it tries to import the GeoIP c
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a
im trying to locatethe location of a user using GeoIP for this i have Class register(models.Model): user = models.ForeignKey(\'auth.User\', unique = True)
my question is similar to this question em using geoip to find the latitide and longitude of a user through IP address. i am doing something like this in my views
I have some IP adress ($_SERVER[\'REMOTE_ADDR\']) and I must receive (learn) name of country and it would be nice if I can receive (learn) name of city too. And don\'t forget It\'s php-project, useful
i have in my views.py def status_set(request): ip_address= request.META[\'REMOTE_ADDR\'] if request.method == \"POST\":
i have this thing in my models.py file user = models.ForeignKey(\'auth.User\', unique = True) latitude = models.DecimalField(max_digits=8, decimal_places=6)
Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow.