Skip to main content

Vaul

Vaul is a nano-framework for deploying Python functions as APIs on AWS Lambda using Function URLs. It provides seamless integration with OpenAPI Schema and allows for monitoring and managing microservices with ease.

Table of Contents

Introduction

Vaul is designed to help developers quickly deploy Python functions as serverless APIs on AWS Lambda. With a focus on simplicity and efficiency, Vaul leverages AWS Lambda's Function URLs to provide scalable and cost-effective API endpoints.

Features

  • Nano-framework: Lightweight and easy to use.
  • OpenAPI Integration: Automatically generate OpenAPI schema for your APIs.
  • AWS Lambda Support: Seamlessly deploy functions to AWS Lambda using Function URLs.
  • Request Validation: Built-in request validation using Pydantic.
  • CORS Support: Pre-configured Cross-Origin Resource Sharing (CORS) support.
  • Custom Actions: Define and manage custom actions with ease.

Installation

To install Vaul, you can use pip:

pip install vaul

Usage

Defining Actions

Vaul allows you to define actions (API endpoints) using simple decorators. Here is an example of how to define a GET and POST endpoint:

from vaul import Vaul

app = Vaul()

@app.action(path='/hello', method="GET")
def hello(name: str) -> str:
    return f"Hello, {name}!"

@app.action(path='/echo', method="POST")
def echo(data: dict) -> dict:
    return data

def handler(event, context):
    return app.handler(event)

Deploying to AWS Lambda

To deploy your Vaul application to AWS Lambda, use the AWS CLI or AWS Management Console. Ensure that your Lambda function's handler is set to the appropriate entry point (e.g., handler).

Using OpenAPI Schema

Vaul automatically generates an OpenAPI schema for your API based on the defined actions. You can access the schema by visiting the /openapi endpoint.

curl -X GET https://your-function-url/openapi.json

Accessing Request Data

You can access the request data (e.g., query parameters, headers, body) using the get_request function:

from vaul import Vaul, get_request

app = Vaul()

@app.action(path='/hello', method="GET")
def hello() -> str:
    request = get_request()
    user_agent = request.headers.get('User-Agent')
    return f"Hello, {user_agent}!"
    
def handler(event, context):
    return app.handler(event)

Handling Requests

Vaul's middleware automatically handles incoming requests, validates them, and routes them to the appropriate action based on the request path and method.

Contributing

We welcome contributions from the community! If you would like to contribute to Vaul, please follow these steps:

  1. Fork the repository.
  2. Create a new branch for your feature or bug fix.
  3. Make your changes and commit them to your branch.
  4. Push your changes to your fork.
  5. Create a pull request to the main repository.
  6. We will review your changes and merge them if they meet our guidelines.
  7. Thank you for contributing to Vaul!

License

Vaul is licensed under the GNU General Public License v3.0. See the LICENSE file for more information.

Download files

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

Source Distribution

oveya-0.1.27.tar.gz (22.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

oveya-0.1.27-py3-none-any.whl (22.6 kB view details)

Uploaded Python 3

File details

Details for the file oveya-0.1.27.tar.gz.

File metadata

  • Download URL: oveya-0.1.27.tar.gz
  • Upload date:
  • Size: 22.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.6

File hashes

Hashes for oveya-0.1.27.tar.gz
Algorithm Hash digest
SHA256 6874bed5a15a2cc67be8825e9707bc49cd4311f9c272baeebb2160677bb4069f
MD5 7254e66ce5f49ad13733ccf59927f1f9
BLAKE2b-256 4d09e476186c5fe7119e643e00502299a2ed556c61daee076fbaafa7dcf5e230

See more details on using hashes here.

File details

Details for the file oveya-0.1.27-py3-none-any.whl.

File metadata

  • Download URL: oveya-0.1.27-py3-none-any.whl
  • Upload date:
  • Size: 22.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.6

File hashes

Hashes for oveya-0.1.27-py3-none-any.whl
Algorithm Hash digest
SHA256 367dd163cde31ae5166a85314daa24b514fb02f97271c8f8ad70e0c4f8eca5c2
MD5 dfb645fba23d8fa98f18877d40a610d6
BLAKE2b-256 725c4a08ea01dc7f1f5c01a7af6043300a404c0fdb907d577c7816b1777b45b1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page