Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 247 Bytes

File metadata and controls

19 lines (13 loc) · 247 Bytes

Primate Python Package

Python integration for the Primate web framework.

Installation

pip install primate-run

Quickstart

from primate import Route

   @Route.get
   def hello(request):
       return "Hello World!"