Python で URL からデータを取得し、そのデータを処理できるファイルに送信する方法。以下は、データを取得する方法です
from django.http import HttpResponse
import urllib
def indexx(request):
url ="http://##########/query?condition=%s&key=e25c7 &op=json"
condition ='aaaaa'
x = urllib.urlopen(url%condition)
y=HttpResponse(x.read())
return(y)