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
| #!/usr/bin/env python | |
| # encoding: utf-8 | |
| import tweepy #https://github.com/tweepy/tweepy | |
| import csv | |
| #Twitter API credentials | |
| consumer_key = "" | |
| consumer_secret = "" | |
| access_key = "" |
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
| #!/usr/bin/python | |
| # -*- coding: iso-8859-1 -*- | |
| # Hello, this program is written in Python - http://python.org | |
| programname = 'html2csv - version 2002-09-20 - http://sebsauvage.net' | |
| import sys, getopt, os.path, glob, HTMLParser, re | |
| try: import psyco ; psyco.jit() # If present, use psyco to accelerate the program | |
| except: pass |