Skip to main content

Basic fundamentals features for Django projects.

Project description

django-tgb-basics

This is a collection of useful (basic) features that I usually use in my Django Projects. I realize that I never use every feature in other libraries, so I decide to put together the most important ones to easilly reuse.

Installation and setup

Install with your python package manager as usually you do. To install with pip:

pip install django-tgb-basics

Once the package is installed you should edit your settings.py file and add (or modify) the AUTHENTICATION_BACKENDS to use the EmailAuthBackend. It's not necessary add to installed apps if you only need the auth backend.

AUTHENTICATION_BACKENDS = [
    'django-tgb-basics.backends.EmailAuthBackend',
    # Other authentications backends
]

But if you need another features like MultiSerializerViewSet, you need to add django-tgb-basics to INSTALLED_APPS in the settings.py file of your project.

INSTALLED_APPS = [
    ...
    'django-tgb-basics',
    ...
]

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

django_tgb_basics-0.2.0-py3-none-any.whl (4.2 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