STATIC.PY

static.py is (yet another) static page generator for python. But I think it has quite a few nice features to make you up and running out of the box. The most handy is IMHO that you can comment static post with twitter. The next time you generate the blog the comments are collected and rendered automatically.

POW 2018 IS OUT NOW!!

PythonOnWheels is a generative web framework for python, following the ruby on rails principles. The goal is to give you the most easy path to develop web applications simple, quick and easy and does not stand in your way. All you need is on board (Batteries included).

INLINE CODE TEST

a code example:

@requires_authorization
def somefunc(param1='', param2=0):
    r'''A docstring'''
    if param1 > param2: # interesting
        print ("Greater")
    return (param2 - param1 + 1 + 0b10l) or None

class SomeClass:
    pass

>>> message = '''interpreter
... prompt'''

Just to see if inline code in posts works well. I like it.