The following command will open all .py files in the current directory or subdirectories in sublime.
find . -name "*.py" -exec sublime {} \;
It also assumes sublime is on your path. You may need to change sublime to /Applications/Sublime\ Text.app if you're on a Mac.