Ітерація через об'єкт 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

Цей код друкує інформацію лише раніше :. ( ігноруйте трек Джастіна Бібера :))

Відповіді:


79

Завантаження даних JSON трохи неміцне. Замість:

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

ви дійсно повинні просто зробити:

json_object = json.load(raw)

Не варто думати про те, що ви отримуєте як "об'єкт JSON". У вас є список. Список містить два дикти. Дікти містять різні пари ключ / значення, всі рядки. Коли ви це робите json_object[0], ви запитуєте про перший диктат у списку. Коли ви повторюєте це, for song in json_object[0]:ви перебираєте клавіші диктату. Тому що це те, що ти отримуєш, коли перебираєш дикт. Якщо ви хочете отримати доступ значення , пов'язане з ключем у цьому Словнику, можна використовувати, наприклад, json_object[0][song].

Ніщо з цього не є специфічним для JSON. Це просто основні типи Python, основні операції яких висвітлені в будь-якому навчальному посібнику.


я не розумію. я намагався повторити те, що говорить ваша межа поза межами. Я впевнений, що його питання про json
myusuf3,

7
Ні. Я кажу вам, що повторення над диктом дає вам ключі. Якщо ви хочете перебрати щось інше, вам доведеться перебрати щось інше. Ви не сказали, що хотіли повторити. Підручник з Python був би хорошим місцем, щоб дізнатися, що ви можете повторити, і що це робити.
Thomas Wouters

5
На жаль, трохи важко пояснити всі способи отримання даних зі списків та словників та рядків у 600 символів, які можна помістити в коментар. Я вже сказав, що вам слід проіндексувати дікт, щоб отримати значення, пов'язане з ключем. Я не впевнений, що ви хочете повторити. Дізнатися про вбудовані типи Python - наступний крок.
Thomas Wouters

Коли ви хочете отримати окремі речі, не так багато ітерацій. Можливо, те, що ви хочете повторити, - це json_objectні json_object[0], і тоді отримуйте окремі предмети з кожного диктату.
Томас Вутерс

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

Примітка: Ви можете використовувати song.iteritemsзамість, song.itemsякщо в Python 2.


для атрибута, значення в song.iteritems (): що означає кома в цьому рядку?
zakdances

Це те саме for (attribute, value) in song.iteritems():, що (var1, var2) = (1, 2)або var1, var2 = 1, 2. dict.iteritems()виробляє (key, value)пари (кортежі). Шукайте "розпакування кортежу пітона".
tzot

1
Для python 3 змініть song.iteritemsна song.items.
Великий гарбуз

44

Це питання вже давно не було, але я хотів зробити свій внесок у те, як я звичайно ітераюю через об'єкт JSON. У наведеному нижче прикладі я показав жорстко закодовану рядок, що містить JSON, але рядок JSON так само легко може надходити з веб-служби чи файлу.

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():.
цот

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 вам потрібно декодувати дані, які ви отримуєте з веб-сервера. Наприклад, я декодую дані як 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.

Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.