commit
a56b8578b3
|
@ -0,0 +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)
|
||||
|
||||
strDat = yaml.load(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'])
|
|
@ -10,16 +10,15 @@ def get_data_rss():
|
|||
|
||||
file = open('rss_univ.txt', 'a')
|
||||
|
||||
file.write(str(datCnn['Date']) + ';\n')
|
||||
# file.write(str(datCnn.headers['Date']) + ';\n')
|
||||
file.write(str(datCnn) + ';\n')
|
||||
file.write(str(datUniver.headers['Date']) + ';\n')
|
||||
# file.write(str(datUniver.headers['Date']) + ';\n')
|
||||
file.write(str(datUniver) + ';\n')
|
||||
file.write(str(datJorn.headers['Date']) + ';\n')
|
||||
# file.write(str(datJorn.headers['Date']) + ';\n')
|
||||
file.write(str(datJorn) + ';\n')
|
||||
|
||||
file.close()
|
||||
|
||||
get_data_rss()
|
||||
|
||||
# SOME COMMANDS OF FEEDPARSER
|
||||
|
||||
|
|
Loading…
Reference in New Issue