knowsuchagency / djecorator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Djecorator

Write Django routes in the same style as Flask.

Installation

pip install djecorator

Usage

views.py

from django.shortcuts import render
from djecorator import Route

route = Route()

@route("/")
def index(request):
    return render(request, "index.html")

urls.py

import views

urlpatterns = [
    ...
]

urlpatterns += views.route.patterns

About

License:MIT License


Languages

Language:Python 100.0%