rmt38 posted this news:

Hi,

A usable version of Python 2.4.2 for the Nintendo DS can be obtained from here. Along with the source code. It hooks in chishm's FAT code so that the CF card can be accessed from the Python programming language.

http://www.disinterest.org/NDS/Python24.html

e.g.

print ndsos.listdir("/")
print ndsos.stat("cf0:/python")
f = open("cf0:/python/lib/helloworld.py", "w")
f.write("def f(): return 'hello world'\n")
f.close()
import helloworld
print helloworld.f()