This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from bs4 import BeautifulSoup as bs | |
| def remove_scripts(soup): | |
| [s.extract() for s in soup('script')] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from gdata import service | |
| import gdata | |
| import atom | |
| import feedparser | |
| from time import * | |
| banner = """ | |
| Blogger Automatic Content Generation and Publication | |
| Coded by Ricky L. Wilson | |
| Post entries from RSS feeds to a blogger blog using Googles Blogger API. |
NewerOlder