diff --git a/builds/runtimes/python-3.3.0 b/builds/runtimes/python-3.3.0
new file mode 100755
index 0000000000000000000000000000000000000000..d1cde7eb7b77c84182ccaa1a559953a6135c448f
--- /dev/null
+++ b/builds/runtimes/python-3.3.0
@@ -0,0 +1,17 @@
+#!/usr/bin/env bash
+# Build Path: /app/.heroku/python/
+# Build Deps: libraries/sqlite
+
+OUT_PREFIX=$1
+
+echo "Building Python..."
+SOURCE_TARBALL='http://python.org/ftp/python/3.3/Python-3.3.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-3.3 src
+cd src
+
+./configure --prefix=$OUT_PREFIX --enable-shared
+make
+make install
+
+ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python
diff --git a/builds/runtimes/python-3.3.1 b/builds/runtimes/python-3.3.1
new file mode 100755
index 0000000000000000000000000000000000000000..fcf234e0f1dc4594ca9122b51804dca1dabd832f
--- /dev/null
+++ b/builds/runtimes/python-3.3.1
@@ -0,0 +1,17 @@
+#!/usr/bin/env bash
+# Build Path: /app/.heroku/python/
+# Build Deps: libraries/sqlite
+
+OUT_PREFIX=$1
+
+echo "Building Python..."
+SOURCE_TARBALL='http://python.org/ftp/python/3.3.1/Python-3.3.1.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-3.3.1 src
+cd src
+
+./configure --prefix=$OUT_PREFIX --enable-shared
+make
+make install
+
+ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python
diff --git a/builds/runtimes/python-3.3.2 b/builds/runtimes/python-3.3.2
new file mode 100755
index 0000000000000000000000000000000000000000..076bf757b8aaae0c47d0fd0228e59182249da531
--- /dev/null
+++ b/builds/runtimes/python-3.3.2
@@ -0,0 +1,17 @@
+#!/usr/bin/env bash
+# Build Path: /app/.heroku/python/
+# Build Deps: libraries/sqlite
+
+OUT_PREFIX=$1
+
+echo "Building Python..."
+SOURCE_TARBALL='http://python.org/ftp/python/3.3.2/Python-3.3.2.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-3.3.2 src
+cd src
+
+./configure --prefix=$OUT_PREFIX --enable-shared
+make
+make install
+
+ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python
diff --git a/builds/runtimes/python-3.3.3 b/builds/runtimes/python-3.3.3
new file mode 100755
index 0000000000000000000000000000000000000000..50fe9b8788d07cc863ae36ac531883a3960c89fc
--- /dev/null
+++ b/builds/runtimes/python-3.3.3
@@ -0,0 +1,17 @@
+#!/usr/bin/env bash
+# Build Path: /app/.heroku/python/
+# Build Deps: libraries/sqlite
+
+OUT_PREFIX=$1
+
+echo "Building Python..."
+SOURCE_TARBALL='http://python.org/ftp/python/3.3.3/Python-3.3.3.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-3.3.3 src
+cd src
+
+./configure --prefix=$OUT_PREFIX --enable-shared
+make
+make install
+
+ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python
diff --git a/builds/runtimes/python-3.3.4 b/builds/runtimes/python-3.3.4
new file mode 100755
index 0000000000000000000000000000000000000000..d07a5c6b36884fb37022326439614fbceb7d7ed0
--- /dev/null
+++ b/builds/runtimes/python-3.3.4
@@ -0,0 +1,17 @@
+#!/usr/bin/env bash
+# Build Path: /app/.heroku/python/
+# Build Deps: libraries/sqlite
+
+OUT_PREFIX=$1
+
+echo "Building Python..."
+SOURCE_TARBALL='http://python.org/ftp/python/3.3.4/Python-3.3.4.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-3.3.4 src
+cd src
+
+./configure --prefix=$OUT_PREFIX --enable-shared
+make
+make install
+
+ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python