Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 272 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 272 Bytes

Pyblog

Pyblog is a asynchronous web framework that base on aiohttp

Get Started

from pyblog import Route
from pyblog import Application


@Route.get("/")
def index_handler(app):
    app.render("index.html")

app = Application()
app.run()

Updating.....