Forums

is it possible to serve static python files here with py extension?

is this possible, ie. run a file like test.py with basic 'hello world' and '1+2=3'

save it as test.py and put it in static?

actually I've tried this and it doesn't work yet does work on a hosted website I use (by adding in the correct shebang line and cgi commands)

can this be done here, or must one use a framework at all times? thanks

We do not support CGI. Just WSGI. You do not need to use a framework - you can just create a bare WSGI app, but that can be pretty tedious, and frameworks can make it simpler.