Reusable functionality
Project description
About
A reusable DRF library that provides reusable components.
Installation
pip install django-pycorpkit
Quick start
Add “django-pycorpkit” to your INSTALLED_APPS setting:
INSTALLED_APPS = [ ... "pycorpkit.common", "pycorpkit.accountx", "pycorpkit.org_structure", ]
Include the django_sample_lib URLconf in your project urls.py:
path('api/', include('pycorpkit.urls')),
Run migrations:
python manage.py migrate
Add exception handler and default backend filter:
REST_FRAMEWORK = { "EXCEPTION_HANDLER": "pycorpkit.common.utils.exception_handler.custom_exception_handler", "DEFAULT_PERMISSION_CLASSES": [ "pycorpkit.accountx.permissions.enforce.EnforceDRFViewPermission", ], "DEFAULT_FILTER_BACKENDS": ( "pycorpkit.common.filters.base.OrganisationFilterBackend", ), }
Add required variables in settings file:
PERMISSIONS_PATH = "testapp.perms" APP_NAME = "PyCorpKit" CLIENT_DOMAIN = "http://domain.com/" AUTH_USER_MODEL = "accountx.User" DEFAULT_FROM_EMAIL = "admin@example.com" SIMPLE_JWT = { "ACCESS_TOKEN_LIFETIME": timedelta(seconds=3600), "REFRESH_TOKEN_LIFETIME": timedelta(days=7), }
INCLUDE django_rest_passwordreset in installed apps
INSTALLED_APPS = ( 'django_rest_passwordreset', )
Add PhoneModelBackend to AUTHENTICATION_BACKENDS
AUTHENTICATION_BACKENDS = [ 'django.contrib.auth.backends.ModelBackend', # add the below after `ModelBackend` 'pycorpkit.common.utils.phone_backend.PhoneModelBackend', ]
Add organisation middleware
MIDDLEWARE = [ "pycorpkit.common.utils.middleware.OrganisationIDMiddleware", ]
Define DEFAULT_ROLES in settings
DEFAULT_ROLES = { "Organisation Admin": ORGANISATION_ADMIN, "Branch Admin": BRANCH_ADMIN, "Department Admin": DEPARTMENT_ADMIN, "User": PROFILE_ADMIN, }
Development
To set up the development environment:
Clone the repository
Create a virtual environment and activate it
Install development dependencies:
pip install -e ".[dev]"
Run tests:
python -m pytest tests # OR pytest tests/
Install test dependencies
pip install -e ".[test]"
Making migrations
python testapp/manage.py makemigrations
python testapp/manage.py makemigrations <app_name> --empty
Migrate
python testapp/manage.py migrate
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
Built Distribution
File details
Details for the file django_pycorpkit-1.0.4.tar.gz
.
File metadata
- Download URL: django_pycorpkit-1.0.4.tar.gz
- Upload date:
- Size: 70.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8079d83c17914e86feb6c49373c9b5bb8c1035500967dc620848db4ac57e672b |
|
MD5 | cea4da5105e0298d02cb502ee26a0cc1 |
|
BLAKE2b-256 | a08adacaeb97ed74ae1df17ac56be1fdcd58b973ecb9b53022afea40e074b6c4 |
File details
Details for the file django_pycorpkit-1.0.4-py2.py3-none-any.whl
.
File metadata
- Download URL: django_pycorpkit-1.0.4-py2.py3-none-any.whl
- Upload date:
- Size: 69.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1bdb7babb724cec2d60892271a78620e00baae91f24bdf7f75275d81d6eba2fe |
|
MD5 | 4c951d92c1c0a4fd7638e1d48e1e125c |
|
BLAKE2b-256 | 41e2da1a2bb220ea4c20a45ab4d78278297c000e9b657811919922a1639b0428 |