# Find python file
alias pyfind='find . -name "*.py"'

# Remove python compiled byte-code
alias pycrm='rm `find . | grep -E "*.(pyc|pyo)$"`'