idly thinking about what a modern rendering api might look like for python.
you could do some cool things with the ast module to basically define shaders in python and then cross compile.
the rest of it would be a command queue thing written as a c module, and a nice data driven rendering api for setting up a compositing graph.
and some useful boilerplate like 3d model importing etc.
This is sort of a permutation of a more ambitious version of the project wherein you'd have a similar API, but you'd be writing a scheme program that generates C code that implements the described rendering API.
The worth of the scheme one would have been being able to generate language bindings for every imaginable high level language and also be easy to embed into most existing projects.
Downside of the scheme one is that I worry I'll never finish writing it...