Skip to content

Python Web Extras

Build and Publish

Official Documentation - https://tarsil.github.io/python-web-extras


Table of Contents


About Python Web Extras

Python Web Extras is a miscellaneous of common utilities for FastAPI, Quart and future integrations with other frameworks.

The aim is to make the life of developers simpler when it comes to some configurations.

Python Web Extras also brings extra integrations with Tortoise ORM.

Tortoise offers a way of integrating models into any application without a lot of configurations previously faced with others (SQLAlchemy, for instance) and for those familiar with Django, then Tortoise is a brise.

Tortoise ORM

When building an application that manages users, Django offers an out of the box built-in User models that can be very useful within the whole set of dependencies. Tortoise ORM is a bit less opinionated regarding those and therefore Python Web Extras offers a similar abstraction based Django where a create_user and create_super_user as well as password hashing are handled by simply inheriting from the base user model.

Overview

Supported Python Versions

Python
3.8
3.9
3.10

Installation

To install python-web-extras:

pip install python-web-extras

License

Copyright (c) 2022-present Tiago Silva and contributors under the MIT license.