Metadata-Version: 2.1
Name: sleekify
Version: 0.0.17
Summary: Sleekify: A minimalistic, ASGI Python framework for building REST API's.
Home-page: https://github.com/0mjs/sleekify
Author: Matt J. Stevenson
Author-email: dev@mattjs.me
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: uvicorn
Requires-Dist: starlette
Requires-Dist: pydantic

# Sleekify
A minimalistic, ASGI Python framework for building REST API's. Heavily inspired by Express.js and FastAPI.

In it's absolute infancy, Sleekify already includes some common concepts of a REST API framework, such as routing, parameter resolution, serialisation, request handling, and response generation.

Installation:

```
pip install sleekify
```

Usage:

```

from sleekify import App

app = App()

app.post("/")
async def endpoint(name: str):
  return { "name": name }

```
  
