SL4A does what you want and is actively developed. You can install it on your droid easily from their site, and don't need root.
It supports a range of languages, Python support is currently for version 2.6, but the owner, Robbie, is personally working on Python3.
SL4A scripts have a library available for each supported language that gives you an interface to the Android API as a single Android object:
import android
droid = android.Android()
# say "hello world" using the text to speech facade
droid.ttsSpeak('hello world')
Each language has the pretty much the same API, and you can even access the device with JavaScript inside a webview or something:
var droid = new Android();
droid.ttsSpeak('hello from js');
SL4A URL:
http://code.google.com/p/android-scripting/
Update
- Python3 is out, but Python2.6 is the best supported version.
- You can also now do native Android user interfaces, but this stuff is especially experimental.