[Python] How to Handle Static Files (js, css, images, etc.) in web.py

Tadashi Shigeoka ·  Tue, January 17, 2012

I’ll introduce how to handle static files like js, css, and images in web.py, a lightweight framework for Python.

Python

It seems you can use them by creating a directory named “static” and placing js, css, images, etc. inside it.

That’s all from the Gemba.