Created
August 12, 2014 21:27
-
-
Save rosskarchner/3483112edda709f43da6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if 'result' in result: | |
cg, created = CachedGeodata.objects.get_or_create(key=key) | |
cg.lat=result['result'][1] | |
cg.lon=result['result'][2] | |
cg.expires = int(time.time()) + getattr(settings, 'DJANGO_HUD_GEODATA_EXPIRATION_INTERVAL', 1728000) | |
cg.save() | |
data = result |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment