Skip to content
View kopparamMotheeswar's full-sized avatar
  • Tirupati
  • 03:10 (UTC +05:30)

Block or report kopparamMotheeswar

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
kopparamMotheeswar/README.md

import feedparser

feed_url = input('Input the URL of the feed: ') fp = feedparser.parse(feed_url)

try: print(fp['feed']['title']) except KeyError as e: print('Error parsing feed title. Double check the feed URL')

try: for entry in fp.entries: print() print(f'** {entry.title} ') print(entry.description) print(entry.link) print('***') print() except KeyError as e: print('Error parsing entries. Double check the feed URL')

Popular repositories Loading

  1. kopparamMotheeswar kopparamMotheeswar Public