Install Python
$ brew install readline sqlite gdbm
$ brew install python --universal --framework
$ python --version
Python 2.7
Symlinks...
| ''' | |
| @author Michael J Bommarito II | |
| @date Feb 26, 2011 | |
| @license Simplified BSD, (C) 2011. | |
| This script demonstrates how to use Python to archive historical tweets. | |
| ''' | |
| import codecs | |
| import csv |
| # Enable tab completion | |
| import rlcompleter | |
| import pdb | |
| pdb.Pdb.complete = rlcompleter.Completer(locals()).complete | |
| # Sometimes when you do something funky, you may lose your terminal echo. This | |
| # should restore it when spanwning new pdb. | |
| import termios, sys | |
| termios_fd = sys.stdin.fileno() | |
| termios_echo = termios.tcgetattr(termios_fd) |
Install Python
$ brew install readline sqlite gdbm
$ brew install python --universal --framework
$ python --version
Python 2.7
Symlinks...