PyNest is a Python framework built on top of FastAPI that follows the modular architecture of NestJS
PyNest is designed to help structure your APIs in an intuitive, easy to understand, and enjoyable way.
With PyNest, you can build scalable and maintainable APIs with ease. The framework supports dependency injection, type annotations, decorators, and code generation, making it easy to write clean and testable code.
This framework is not a direct port of NestJS to Python but rather a re-imagining of the framework specifically for Python developers, including backend engineers and ML engineers. It aims to assist them in building better and faster APIs for their data applications.
To get started with PyNest, you'll need to install it using pip:
pip install pynest-api
pynest generate appplication -n my_app_name
this command will create a new project with the following structure:
βββ app.py
βββ main.py
βββ requirements.txt
βββ .gitignore
βββ README.md
βββ src
β βββ __init__.py
once you have created your app, get into the folder and run the following command:
cd my_app_name
run the server with the following command:
uvicorn "app:app" --host "0.0.0.0" --port "8000" --reload
Now you can visit OpenAPI in your browser to see the default API documentation.
To add a new module to your application, you can use the pynest generate module command:
pynest generate resource -n users
This will create a new resource called users
in your application with the following structure under the src
folder:
βββ users
β βββ __init__.py
β βββ users_controller.py
β βββ users_service.py
β βββ users_model.py
β βββ users_entity.py
β βββ users_module.py
The users module will immediately register itself with the application and will be available for use.
You can then start defining routes and other application components using decorators and other PyNest constructs.
For more information on how to use PyNest, check out the official documentation at https://pythonnest.github.io/PyNest/.
This document provides a guide on how to use the PyNest Command Line Interface (CLI). Below are the available commands and their descriptions:
- Description: The main command group for PyNest CLI.
- Description: Create a new nest app.
-
Options:
-
--app-name
/-n
: The name of the nest app (required). -
--db-type
/-db
: The type of the database (optional). You can specify PostgreSQL, MySQL, SQLite, or MongoDB. -
--is-async
: Whether the project should be asynchronous (optional, default is False).
-
- Description: Group command for generating boilerplate code.
- Description: Generate a new module (controller, service, entity, model, module).
-
Options:
-
--name
/-n
: The name of the module (required).
-
-
create a blank nest application -
pynest generate application -n my_app_name
-
create a nest application with postgres database and async connection -
pynest generate application -n my_app_name -db postgresql --is-async
-
create new module -
pynest generate resource -n users
PyNest follows the modular architecture of NestJS, which allows for easy separation of concerns and code organization. Each module contains a collection of related controllers, services, and providers.
PyNest supports dependency injection, which makes it easy to manage dependencies and write testable code. You can easily inject services and providers into your controllers using decorators.
PyNest makes extensive use of decorators to define routes, middleware, and other application components. This helps keep the code concise and easy to read.
PyNest leverages Python's type annotations to provide better tooling and help prevent errors. You can annotate your controllers, services, and providers with types to make your code more robust.
PyNest includes a code generation tool that can create boilerplate code for modules, controllers, and other components. This saves you time and helps you focus on writing the code that matters.
- Create plugins Marketplace for modules where developers can share their modules and download modules created by others.
- Implement IOC mechanism and introduce Module decorator
- Add support for new databases
- Create out-of-the-box authentication module that can be easily integrated into any application.
- Add support for other testing frameworks and create testing templates.
- Add support for other web frameworks (Litestar, blackship, etc.) - Same Architecture, different engine.
Contributions are welcome! Please feel free to grab one of the open issues, or open a new one if you have an idea for a new feature or improvement.
This would bring a huge impact to the project and the community.
PyNest is MIT licensed.
PyNest is inspired by NestJS.