This file contains 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
CREATE OR REPLACE FUNCTION idojaras(lat float, lon float) | |
RETURNS float AS $$ | |
import sys | |
if sys.version_info[0] == 2: | |
from urllib2 import urlopen | |
else: # Python 3 | |
from urllib.request import urlopen | |
import json | |
def get_temp(lat, lon): |