JSONオブジェクトを反復する


109

JSONオブジェクトを反復処理して、データ(つまり、タイトルとリンク)をインポートしようとしています。過去のコンテンツにアクセスできないようです:

JSON:

[
    {
        "title": "Baby (Feat. Ludacris) - Justin Bieber",
        "description": "Baby (Feat. Ludacris) by Justin Bieber on Grooveshark",
        "link": "http://listen.grooveshark.com/s/Baby+Feat+Ludacris+/2Bqvdq",
        "pubDate": "Wed, 28 Apr 2010 02:37:53 -0400",
        "pubTime": 1272436673,
        "TinyLink": "http://tinysong.com/d3wI",
        "SongID": "24447862",
        "SongName": "Baby (Feat. Ludacris)",
        "ArtistID": "1118876",
        "ArtistName": "Justin Bieber",
        "AlbumID": "4104002",
        "AlbumName": "My World (Part II);\nhttp://tinysong.com/gQsw",
        "LongLink": "11578982",
        "GroovesharkLink": "11578982",
        "Link": "http://tinysong.com/d3wI"
    },
    {
        "title": "Feel Good Inc - Gorillaz",
        "description": "Feel Good Inc by Gorillaz on Grooveshark",
        "link": "http://listen.grooveshark.com/s/Feel+Good+Inc/1UksmI",
        "pubDate": "Wed, 28 Apr 2010 02:25:30 -0400",
        "pubTime": 1272435930
    }
]

辞書を使ってみました:

def getLastSong(user,limit):
    base_url = 'http://gsuser.com/lastSong/'
    user_url = base_url + str(user) + '/' + str(limit) + "/"
    raw = urllib.urlopen(user_url)
    json_raw= raw.readlines()
    json_object = json.loads(json_raw[0])

    #filtering and making it look good.
    gsongs = []
    print json_object
    for song in json_object[0]:   
        print song

このコードは、以前の情報のみを出力します:。(ジャスティンビーバートラックを無視 :))

回答:


78

JSONデータのロードは少し脆弱です。の代わりに:

json_raw= raw.readlines()
json_object = json.loads(json_raw[0])

あなたは本当にただやるべきです:

json_object = json.load(raw)

取得したものを「JSONオブジェクト」と考えるべきではありません。あなたが持っているのはリストです。リストには2つの辞書が含まれています。辞書には、さまざまなキーと値のペア、すべて文字列が含まれています。するとjson_object[0]、リストの最初の辞書を要求します。それを反復するときはfor song in json_object[0]:、を使用して、dictのキーを反復します。それは、dictを反復するときに得られるものだからです。その辞書のキーに関連付けられた値にアクセスする場合は、たとえばを使用しますjson_object[0][song]

これはJSONに固有のものではありません。これは、基本的なPythonタイプであり、チュートリアルで説明されている基本的な操作です。


わかりません。私はあなたのことわざが言うことを超えて反復しようとしました。私はjsonについての質問だと確信しています
myusuf3

7
いいえ。私は、dictを繰り返し処理することでキーが得られると言っています。他のものを反復処理したい場合は、他のものを反復処理する必要があります。繰り返したいことは何も言わなかった。Pythonチュートリアルは、何を反復できるか、何ができるかを調べるのに適した場所です。
Thomas Wouters

5
残念ながら、リストや辞書、コメントに入力できる600文字の文字列からデータを抽出する方法をすべて説明するのは少し難しいです。キーに関連付けられた値を取得するには、dictにインデックスを付ける必要があることをすでに述べました。何を反復したいのかわかりません。次のステップは、組み込みのPython型について学ぶことです。
Thomas Wouters、2010

個別のアイテムを取得したい場合、それほど多くの反復は必要ありません。おそらく、繰り返し処理したいのはjson_objectではなくjson_object[0]であり、次に各辞書から個別のアイテムを取得します。
Thomas Wouters、2010

101

私はあなたがおそらく意味したと信じています:

from __future__ import print_function

for song in json_object:
    # now song is a dictionary
    for attribute, value in song.items():
        print(attribute, value) # example usage

注:Python 2 song.iteritemsではsong.itemsifの代わりに使用できます。


属性の場合、song.iteritems()の値:この行のカンマは何を意味していますか?
zakdances 2012

それは同じだfor (attribute, value) in song.iteritems():、または(var1, var2) = (1, 2)またはvar1, var2 = 1, 2。ペア(タプル)をdict.iteritems()生成し(key, value)ます。「python tuple unpacking」を検索します。
tzot

1
Python 3の場合、に変更song.iteritemssong.itemsます。
ビッグパンプキン

44

この質問は長い間出されていましたが、私は通常、JSONオブジェクトを繰り返し処理する方法に貢献したいと思いました。以下の例では、JSONを含むハードコードされた文字列を示しましたが、JSON文字列は、Webサービスやファイルからも簡単に取得できます。

import json

def main():

    # create a simple JSON array
    jsonString = '{"key1":"value1","key2":"value2","key3":"value3"}'

    # change the JSON string into a JSON object
    jsonObject = json.loads(jsonString)

    # print the keys and values
    for key in jsonObject:
        value = jsonObject[key]
        print("The key and value are ({}) = ({})".format(key, value))

    pass

if __name__ == '__main__':
    main()

2
上記のコードには文字列の添え字はありません。jsonObjectですdict。上記のコードでは、私が好みfor key, value in jsonObject.items():ます。
tzot

22

JSONを逆シリアル化すると、Pythonオブジェクトができます。通常のオブジェクトメソッドを使用します。

この場合、辞書で構成されたリストがあります。

json_object[0].items()

json_object[0]["title"]


8

私はこのようにこの問題を解決します

import json
import urllib2

def last_song(user, limit):
    # Assembling strings with "foo" + str(bar) + "baz" + ... generally isn't 
    # as nice as using real string formatting. It can seem simpler at first, 
    # but leaves you less happy in the long run.
    url = 'http://gsuser.com/lastSong/%s/%d/' % (user, limit)

    # urllib.urlopen is deprecated in favour of urllib2.urlopen
    site = urllib2.urlopen(url)

    # The json module has a function load for loading from file-like objects, 
    # like the one you get from `urllib2.urlopen`. You don't need to turn 
    # your data into a string and use loads and you definitely don't need to 
    # use readlines or readline (there is seldom if ever reason to use a 
    # file-like object's readline(s) methods.)
    songs = json.load(site)

    # I don't know why "lastSong" stuff returns something like this, but 
    # your json thing was a JSON array of two JSON objects. This will 
    # deserialise as a list of two dicts, with each item representing 
    # each of those two songs.
    #
    # Since each of the songs is represented by a dict, it will iterate 
    # over its keys (like any other Python dict). 
    baby, feel_good = songs

    # Rather than printing in a function, it's usually better to 
    # return the string then let the caller do whatever with it. 
    # You said you wanted to make the output pretty but you didn't 
    # mention *how*, so here's an example of a prettyish representation
    # from the song information given.
    return "%(SongName)s by %(ArtistName)s - listen at %(link)s" % baby

3

JSONを反復する場合は、次のように使用できます。

json_object = json.loads(json_file)
for element in json_object: 
    for value in json_object['Name_OF_YOUR_KEY/ELEMENT']:
        print(json_object['Name_OF_YOUR_KEY/ELEMENT']['INDEX_OF_VALUE']['VALUE'])

2

Python 3の場合、Webサーバーから取得したデータをデコードする必要があります。たとえば、私はデータをutf8としてデコードし、それを処理します。

 # example of json data object group with two values of key id
jsonstufftest = '{'group':{'id':'2','id':'3'}}
 # always set your headers
headers = {'User-Agent': 'Moz & Woz'}
 # the url you are trying to load and get json from
url = 'http://www.cooljson.com/cooljson.json'
 # in python 3 you can build the request using request.Request
req = urllib.request.Request(url,None,headers)
 # try to connect or fail gracefully
try:
    response = urllib.request.urlopen(req) # new python 3 code -jc
except:
    exit('could not load page, check connection')
 # read the response and DECODE
html=response.read().decode('utf8') # new python3 code
 # now convert the decoded string into real JSON
loadedjson = json.loads(html)
 # print to make sure it worked
print (loadedjson) # works like a charm
 # iterate through each key value
for testdata in loadedjson['group']:
    print (accesscount['id']) # should print 2 then 3 if using test json

デコードしないと、Python 3でバイトvs文字列エラーが発生します。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.