Metadata-Version: 2.4
Name: primate-run
Version: 0.2.0
Summary: Primate Python integration
Project-URL: Homepage, https://primate.run
Project-URL: Documentation, https://primate.run/docs/backend/python
Project-URL: Repository, https://github.com/primate-run/python
Project-URL: Issues, https://github.com/primate-run/python/issues
Author-email: Terrablue <terrablue@proton.me>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Primate Python Package

Python integration for the Primate web framework.

## Installation

```sh
pip install primate-run
```

## Quickstart

```py
from primate import Route

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