infBack changes to portrait how to extract important data from the dictionaries
This commit is contained in:
parent
72c4cdd489
commit
824624df3a
11
infBack.py
11
infBack.py
|
@ -1,11 +1,18 @@
|
|||
import yaml
|
||||
import feedparser as fp
|
||||
|
||||
rawDat = open('rss_univ.txt', 'r')
|
||||
|
||||
strDat = rawDat.read()
|
||||
|
||||
rawDat = strDat.split(';\n')
|
||||
index = len(rawDat) - 1
|
||||
rawDat.pop(index)
|
||||
|
||||
# rawDat = yaml.load(rawDat[0])
|
||||
strDat = yaml.load(rawDat[0])
|
||||
|
||||
print(rawDat[0])
|
||||
# this section of the code show how to extract relevant data from the dictionaries
|
||||
print(len(rawDat))
|
||||
print(strDat['entries'][0]['title'])
|
||||
print(strDat['entries'][0]['links'][0]['href'])
|
||||
print(strDat['entries'][0]['summary'])
|
||||
|
|
Loading…
Reference in New Issue