Reusable Django building blocks for multi-app deployments
Project description
django-infra-core
Reusable package for shared Django architecture across multiple services.
What this package provides
- Abstract base models for institution and student domains
- Admin mixin for institution scoped access
- Settings helpers for env driven configuration
- Auth utilities and middleware to attach institution context
Installation
pip install django-infra-core==0.1.1
Quick usage
# settings.py
INSTALLED_APPS = [
# ...
"infra_core",
]
# models.py
from infra_core.models import BaseInstitution, BaseStudent
from infra_core.admin import InstitutionScopedAdminMixin, ImportExportAdminMixin, BaseModelResource
class Institution(BaseInstitution):
pass
class Student(BaseStudent):
institution = models.ForeignKey(
Institution,
on_delete=models.CASCADE,
related_name="students",
)
## Included Institution fields (BaseInstitution)
- name (Kurum Adı)
- code (Kurum Kodu)
- address (Adres)
- location (Konum)
- phone (Telefon)
- email (E-posta)
- gender (Cinsiyet)
- institution_type (Kurum Türü)
- manager (Kurum Yöneticisi)
- is_active (Aktif)
- created_at / updated_at (Oluşturulma/Güncellenme Tarihi)
## Included Student fields (BaseStudent)
- first_name (Öğrenci Adı)
- last_name (Öğrenci Soyadı)
- grade (Sınıf)
- level (Seviye)
- status (Aktif)
- created_at / updated_at (Oluşturulma/Güncellenme Tarihi)
`BaseStudent.clean()` metodu, `institution.institution_type` değerine göre `grade` ve `level` alanlarını doğrular.
## Import/Export shared classes
- `BaseModelResource`: Ortak import/export resource ayarları
- `ImportExportAdminMixin`: Ortak import/export admin mixin
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_infra_core-0.1.3.tar.gz.
File metadata
- Download URL: django_infra_core-0.1.3.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd5efc92a12d0db74c2430865d4285065581635769e2ef04954105f2bc5fd654
|
|
| MD5 |
5ecc48403996cec06d840d1161430212
|
|
| BLAKE2b-256 |
c829354c2a7a4e80e9d1ccdfb42aeb481e85bcc03f509577f91b12c29c9bf565
|
File details
Details for the file django_infra_core-0.1.3-py3-none-any.whl.
File metadata
- Download URL: django_infra_core-0.1.3-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c87a5dc0c331580e20c616e86f73bd2ac4291e7faa4d4dc07fae200f9572afc1
|
|
| MD5 |
739f51a7f0a2cef64a2f7d4fd16ae86e
|
|
| BLAKE2b-256 |
9d164327b5f923580eefaef63dc3c47c228e386d74b83f64725b59ff4cbe79e9
|