Metadata-Version: 2.1
Name: sleekify
Version: 0.0.14
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.

Installation:
```
pip install sleekfiy
```

Usage:
```
from sleekfiy import App

app = App()

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