Skip to main content

Various Helper Tools to make working with azure functions easier

Project description

🎷 FuncTown 🎷

PyPI Version PyPI downloads Packaging Supported Python versions Code style: Black

FuncTown is a python library that is designed to make your life with Azure Functions easier.

The core features of FuncTown are:

  • Error handling - automatically handle errors and return a response to the user
  • Debugging - Set debug flags that automatically return logs and traces as part of error responses from your function
  • JWT token validation - automatically validate JWT tokens and provide the user information
  • Request argument parsing - automatically parse arguments from the HttpRequest and provide them to your function
  • Metrics - Handle connections to Application Insights and gives you easy to use metrics objects
  • Logging, Tracing & Events - Log your functions data directly into Application Insights

For detailed features see the docs.

Getting Started

You can install FuncTown using pip:

pip install functown

Note that some dependencies are hidden behind sub-packages (e.g. functown[jwt] for JWT token validation).

Almost all functionality of FuncTown is provided through decorators. If you want to add error handling to your function:

from logging import Logger
from functown import ErrorHandler

@ErrorHandler(debug=True, enable_logger=True)
def main(req: func.HttpRequest, logger: Logger, **kwargs) -> func.HttpResponse:
    logger.info('Python HTTP trigger function processed a request.')

    # ...
    # exception will be caught and handled by the decorator (returning a 500)
    raise ValueError("something went wrong")

    return func.HttpResponse("success", status_code=200)

Note: Decorators might pass down additional arguments to your function, so it is generally a good idea to modify your function signature to accept these arguments (see docs for more information) and add a **kwargs to the end.

Decorators are also stackable, so we could parse function arguments and handle a JWT Token in the same function:

from functown import ArgsHandler, RequestArgHandler, AuthHandler
from functown.auth import Token

@ArgsHandler()
@AuthHandler(scopes=["user.read"])
def main(
    req: func.HttpRequest, args: RequestArgHandler, token: Token
) -> func.HttpResponse:
    # retrieve some arguments
    data = args.get_body_query("data_name", required=True, allowed=["foo", "bar"])
    switch = args.get_body("bool_name", map_fct='bool')
    file = args.get_file('file_name', required=True)

    # check the user id
    user_id = token.user_id

    # ...

This would also directly fail with a 400 message if there is no token provided, or the token does not contain the required scopes.

Be sure to check out the docs for a full overview of all decorators.

If you want to test it on your own Azure Subscription, you can check out the example guide in the dev section of the docs.

🎷 Welcome to FuncTown! 🎷

Note

‼️ If you find this library helpful or have suggestions please let me know. Also any contributions are welcome! ‼️

"Buy Me A Coffee"

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

functown-2.3.0.tar.gz (32.0 kB view details)

Uploaded Source

Built Distribution

functown-2.3.0-py3-none-any.whl (43.6 kB view details)

Uploaded Python 3

File details

Details for the file functown-2.3.0.tar.gz.

File metadata

  • Download URL: functown-2.3.0.tar.gz
  • Upload date:
  • Size: 32.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for functown-2.3.0.tar.gz
Algorithm Hash digest
SHA256 621b8d485f59bdb1f4fce6fced0cdfe0c78b305b45a5b380689c93e4ffba9838
MD5 3d9c0b6351f67fcf38101973770f4ba1
BLAKE2b-256 8f803cd2d5b2f3ee42474bf71185b991ebcd770590fa5a55ccc2d0b6d1c5dee1

See more details on using hashes here.

File details

Details for the file functown-2.3.0-py3-none-any.whl.

File metadata

  • Download URL: functown-2.3.0-py3-none-any.whl
  • Upload date:
  • Size: 43.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for functown-2.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 53d44805feee64def140bed70ba380933547d296c8dc342e0837b2e640379c85
MD5 55588ea4c8e3038b8fe19809f943ce3f
BLAKE2b-256 d7e182def35688e31436af0be0ede3c929f99471f74c1c8e8a819e4ff3209a95

See more details on using hashes here.

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