parameciofm/paramecio/examples/app.py

14 lines
306 B
Python

from paramecio.libraries.mtemplates import env_theme, PTemplate
from paramecio.libraries.urls import make_url
from bottle import request
from settings import config
from paramecio.wsgiapp import app
env=env_theme(__file__)
t=PTemplate(env)
@app.route('/example')
def home():
return "Hello World!!"