#!/bin/sh -e

for file in *.py; do
	/usr/bin/env python $file
done
