Forum >> Programmazione Python >> Files e Directory >> Estrarre dato da file json

Pagina: 1

Salve a tutti, spiego il problema.Con grande difficoltà sono riuscito a generare un file json costituito da tutti i tweet del mio profilo. Ma sono interessato solo ad un attributo, ovvero text. Potete darmi qualche suggerimento per l'estrazione del dato ?.

La struttura del file json è questa(vedi allegato).



Grazie mille dell'aiuto
Allegati
centurione_agrippa said @ 2018-02-28 00:14:49:
Salve a tutti, spiego il problema.Con grande difficoltà sono riuscito a generare un file json costituito da tutti i tweet del mio profilo. Ma sono interessato solo ad un attributo, ovvero text. Potete darmi qualche suggerimento per l'estrazione del dato ?.
Quello allegato non è un json valido, ma si risolve facilmente con, ad esempio:

>>> import json
>>> valid = '[' + open('tweet.json').read().replace('}{', '},{') + ']'
>>> text = [tweet['text'] for tweet in json.loads(valid)]
>>> print(text)
['how I manage the access to a web site using the XACML policy with two types of roles (administrator, user)?', '@davidjbrossard Hello I need a great help. you can help me and follow me step?', '@davidjbrossard I should write the XACML policy for managing access to a resource a web site.I am using WSO2. can you give me any help', '@davidjbrossard hi david', "@davidjbrossard Hi, i'm italian student,can you help me with the XACML policy?", '@telegram_it Come faccio a trovare il link del mio pacchetto stickers ?', '@telegram_it Salve,come faccio a trovare il link del mio pacchetto di stickers ?', 'Che tempo di merda!', 'Bellissima gara. ...lunghezza ideale degli sci?  Forza azzurri #SkyOlimpiadi', '@WebPoste come faccio a controllare il saldo della mia postepay ?', '@PosteSpedizioni come faccio a controlare il saldo della mia postepay', '@Pontifex cià be', 'salve']



THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝
Ciao e grazie della risposta,perchè non è un file json corretto ?


Pagina: 1



Esegui il login per scrivere una risposta.