JSONファイルを渡してデータを辞書に変換しようとしています。
これまでのところ、これは私がしたことです:
import json
json1_file = open('json1')
json1_str = json1_file.read()
json1_data = json.loads(json1_str)
私はjson1_data
がdict
型であることを期待していますが、実際にtype(json1_data)
でチェックするとlist
型として出てきます。
何が足りないの?キーの1つにアクセスできるように、これを辞書にする必要があります。
あなたのJSONは内部に単一のオブジェクトを持つ配列なので、あなたがそれを読むとあなたは内部に辞書を持つリストを取得します。以下に示すように、リストの項目0にアクセスして辞書にアクセスできます。
json1_data = json.loads(json1_str)[0]
期待通りに、datapointsに格納されているデータにアクセスできます。
datapoints = json1_data['datapoints']
誰かが噛むことができるのであれば、もう1つ質問があります。私はこれらのデータポイントの最初の要素の平均を取ることを試みています(すなわち、datapoints [0] [0])。それらを一覧表示するために、datapoints [0:5] [0]を試してみましたが、最初の要素だけを含む最初の5つのデータポイントを取得したいのではなく、両方の要素を持つ最初のデータポイントだけです。これを行う方法はありますか?
datapoints[0:5][0]
はあなたが期待していることをしません。 datapoints[0:5]
は最初の5つの要素だけを含む新しいリストスライスを返します。そして最後に[0]
を追加すると最初の要素その結果のリストスライスからだけが得られます。あなたが望む結果を得るためにあなたが使う必要があるのは リスト内包 - です:
[p[0] for p in datapoints[0:5]]
これは平均値を計算する簡単な方法です:
sum(p[0] for p in datapoints[0:5])/5. # Result is 35.8
NumPy をインストールしても構わない場合は、さらに簡単です。
import numpy
json1_file = open('json1')
json1_str = json1_file.read()
json1_data = json.loads(json1_str)[0]
datapoints = numpy.array(json1_data['datapoints'])
avg = datapoints[0:5,0].mean()
# avg is now 35.8
NumPyの配列のスライス構文で,
演算子を使用することは、リストスライスに元々期待されていた動作を持ちます。
これは辞書からjson
テキストファイルを読み込む簡単なスニペットです。 jsonファイルはjson標準に従う必要があるため、"
の一重引用符ではなく'
の二重引用符を使用する必要があります。
あなたのJSON dump.txtファイル:
{"test":"1", "test2":123}
Pythonスクリプト:
import json
with open('/your/path/to/a/dict/dump.txt') as handle:
dictdump = json.loads(handle.read())
JSONデータを辞書にロードするための最良の方法はあなたが作り付けのjsonローダーを使うことができることです。
以下は使用できるサンプルスニペットです。
import json
f = open("data.json")
data = json.load(f))
f.close()
type(data)
print(data[<keyFromTheJsonFile>])
次のものを使用できます。
import json
with open('<yourFile>.json', 'r') as JSON:
dict = json.load(JSON)
# Now you can use it like dictionary
# For example:
print(dict["username"])
getメソッドからjavascript ajaxを使ってデータを渡す
**//javascript function
function addnewcustomer(){
//This function run when button click
//get the value from input box using getElementById
var new_cust_name = document.getElementById("new_customer").value;
var new_cust_cont = document.getElementById("new_contact_number").value;
var new_cust_email = document.getElementById("new_email").value;
var new_cust_gender = document.getElementById("new_gender").value;
var new_cust_cityname = document.getElementById("new_cityname").value;
var new_cust_pincode = document.getElementById("new_pincode").value;
var new_cust_state = document.getElementById("new_state").value;
var new_cust_contry = document.getElementById("new_contry").value;
//create json or if we know python that is call dictionary.
var data = {"cust_name":new_cust_name, "cust_cont":new_cust_cont, "cust_email":new_cust_email, "cust_gender":new_cust_gender, "cust_cityname":new_cust_cityname, "cust_pincode":new_cust_pincode, "cust_state":new_cust_state, "cust_contry":new_cust_contry};
//apply stringfy method on json
data = JSON.stringify(data);
//insert data into database using javascript ajax
var send_data = new XMLHttpRequest();
send_data.open("GET", "http://localhost:8000/invoice_system/addnewcustomer/?customerinfo="+data,true);
send_data.send();
send_data.onreadystatechange = function(){
if(send_data.readyState==4 && send_data.status==200){
alert(send_data.responseText);
}
}
}
ジャンゴビュー
def addNewCustomer(request):
#if method is get then condition is true and controller check the further line
if request.method == "GET":
#this line catch the json from the javascript ajax.
cust_info = request.GET.get("customerinfo")
#fill the value in variable which is coming from ajax.
#it is a json so first we will get the value from using json.loads method.
#cust_name is a key which is pass by javascript json.
#as we know json is a key value pair. the cust_name is a key which pass by javascript json
cust_name = json.loads(cust_info)['cust_name']
cust_cont = json.loads(cust_info)['cust_cont']
cust_email = json.loads(cust_info)['cust_email']
cust_gender = json.loads(cust_info)['cust_gender']
cust_cityname = json.loads(cust_info)['cust_cityname']
cust_pincode = json.loads(cust_info)['cust_pincode']
cust_state = json.loads(cust_info)['cust_state']
cust_contry = json.loads(cust_info)['cust_contry']
#it print the value of cust_name variable on server
print(cust_name)
print(cust_cont)
print(cust_email)
print(cust_gender)
print(cust_cityname)
print(cust_pincode)
print(cust_state)
print(cust_contry)
return HttpResponse("Yes I am reach here.")**