I present to you getshitdone, or GSD for the prudish. GSD is a web framework for those of us that just don't have time for those other frameworks.
GSD Goals:
GSD also has its own templating language. It's called Python.
More documentation and examples to come on the project page.
GSD Goals:
- An implementation in about 50 lines of code.
- Minimal work, maximum flexibility.
- No dependencies outside the Python standard library.
- Performance.
- Standards compliance.
- Working with Apache, Lighttpd, whatever.
import gsd
class HelloWorld(gsd.App):
def GET_(self):
self.wfile.write('Hello World!')
app = HelloWorld()
app.Serve('localhost', 8080)
GSD also has its own templating language. It's called Python.
# Template helloworld.html
<?
self.wfile.write('Hello World!')
?>
# GSD App
class HelloWorld(gsd.App):
def GET_(self):
self.Render('helloworld.html', locals())
More documentation and examples to come on the project page.