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
| import imaplib | |
| import getpass | |
| import re | |
| import webbrowser | |
| import sys | |
| mail = imaplib.IMAP4_SSL('imap.gmail.com', 993) | |
| pw = getpass.getpass() # get password | |
| mail.login('[email protected]',pw) |
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
| import re, datetime | |
| import twitter, PyRSS2Gen | |
| def getURLs(text): | |
| url=unicode(r"((http|ftp)://)?(((([\d]+\.)+){3}[\d]+(/[\w./]+)?)|([a-z]\w*((\.\w+)+){2,})([/][\w.~]*)*)") | |
| return [a.group() for a in re.finditer(url,text)] | |
| def mkFeedItem(url): | |
| return PyRSS2Gen.RSSItem( |