panther
panther copied to clipboard
Fast & Friendly Web Framework For Building Async APIs With Python 3.10+
fix: saving and using PyDict in Tree correctly
I'm working on a new feature for Panther, I port the webserver to Rust. with async support. to enhance the performance ... for this thing I use [Hyper](https://github.com/hyperium/hyper) crate +...
**Describe the feature you'd like** Similar to DRF having a startproject and startapp command for start projects of apps, it would be nice to have this functionality in Panther so...
### Sample 1: ```python # Model class User(SerializableModel, Base): __tablename__ = "user_account" id: Mapped[int] = mapped_column(primary_key=True) name: Mapped[str] = mapped_column(String(30)) ``` API Response: ``` [{"id":1,"name":"a"},{"id":2,"name":"b"}] ``` ### Sample 2: ```python...