A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
| ''' | |
| Save this file and add the following line to your ~/.bashrc" | |
| export PYTHONSTARTUP="$HOME/.pythonrc" | |
| ''' | |
| import os | |
| import readline | |
| import rlcompleter | |
| import atexit |