Initial commit

This commit is contained in:
Fergal Moran
2015-04-30 23:17:58 +01:00
commit 6f9f29f5fc
193 changed files with 23428 additions and 0 deletions

5
pip_upgrade.py Executable file
View File

@@ -0,0 +1,5 @@
import pip
from subprocess import call
for dist in pip.get_installed_distributions():
call("pip install --upgrade " + dist.project_name, shell=True)