The Python Oracle

using GeoIP with django on appengine

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Ocean Floor

--

Chapters
00:00 Using Geoip With Django On Appengine
00:53 Accepted Answer Score 3
01:20 Thank you

--

Full question
https://stackoverflow.com/questions/4601...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#python #django #googleappengine #geoip

#avk47



ACCEPTED ANSWER

Score 3


The GeoIP class is a wrapper around the GeoIP C API. Unfortunately, you can't use C extensions in appengine, so you can't use the GeoIP support that comes with Django.

pygeoip is a GeoIP library implemented in pure Python, you can try to integrate that.