Skip to main content

O Routerfy tem uma sintaxe similar ao FastAPI. Feito para ser leve e de fácil uso para serviços AWS Serverless.

Project description

License

Routerfy is an easy, fast and modern framework for building AWS Serverless applications with python 3.7+ using FastAPI for development and a lighter lambda layer on AWS Lambda execution.


Documentation: Docs

Source Code: GitHub


Key features are:

  • Light: Routerfy's lambda layer it's extremely light since it does not need any additional library to redirect routes.
  • Fast to test: Increase the speed to test new features by about 500%.
  • Fast to build templates: Building AWS templates never been that easy. Routerfy create all AWS templates with necessary properties but still customizable.
  • Familiar Syntax: Routerfy use same syntax of FastAPI for routes creation turning the experience of migration a lot easier.
  • Body Validation: Routerfy have an own route body validation like pydantic but lighter using no dependencies.

Requirements

Python 3.7+

For development serving, Routerfy uses the amazing ones:

Installation

For development:

pip install routerfy[dev]

For AWS Lambda layer:

pip install routerfy

Getting Started

To create your first Routerfy project you only need to use create command. Open CMD in the folder you want to create your project and insert:

routerfy create MyAwesomeRouterfyProject

If everything go well the project folder created will look like this:

.
├─ routes/
│  ├─ hello_world/
│  │  ├─ app.py
│  │  ├─ route.py
└─ routerfy.config.yaml

Example

Our first example file is the route.py inside the lambda folder hello_world. All lambda folders must have a route.py. this way routerfy can identify routers and make the magic happens.

from routerfy import APIRouter, Response

router = APIRouter(prefix="/hello")

@router.get("/")
def hello_world_get_request():
    return "Hello World!"

As you can see, the syntax is very similar to FastAPI.

Testing application

To test application you only need to use the dev command on your project terminal:

routerfy dev

The server will start and you will have your routerfy application served locally!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

routerfy-1.0.0b1.tar.gz (18.6 kB view hashes)

Uploaded Source

Built Distribution

routerfy-1.0.0b1-py3-none-any.whl (27.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page