Omnibus commited on
Commit
c9c037a
·
verified ·
1 Parent(s): f51e517

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -226,6 +226,10 @@ def find_rss():
226
  pass
227
  try:
228
  print(lod['rss']['channel'].keys())
 
 
 
 
229
  except Exception as e:
230
  print(f'Exception::{e}')
231
  out_box.append(lod)
 
226
  pass
227
  try:
228
  print(lod['rss']['channel'].keys())
229
+ r_link = lod['rss']['channel']['link']
230
+ r_title = lod['rss']['channel']['title']
231
+ r_description = lod['rss']['channel']['description']
232
+ print({"title":r_title, "description":r_description,"link":r_link})
233
  except Exception as e:
234
  print(f'Exception::{e}')
235
  out_box.append(lod)