Install & Compatibility
Where this runs
tested against v2.6.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 68.9MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 3.6s · import 0.000s · 69MB
68MB installed
● package 68MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
Organization
✓ from organizations.models import Organization
Basic setup: add to INSTALLED_APPS, include URLs, use Organization model.
# settings.py
INSTALLED_APPS = [
...
'organizations',
]
# urls.py
from django.urls import include, path
urlpatterns = [
...
path('organizations/', include('organizations.urls')),
]
# models.py (using default abstract models)
from organizations.models import Organization, OrganizationUser
# Example creation:
from django.contrib.auth import get_user_model
User = get_user_model()
user = User.objects.create_user('alice', password='password')
org = Organization.objects.create(name='Acme Inc', slug='acme')
org_user = org.add_user(user, is_admin=True)
Upgrade
Version history
2.6.0latest on PyPI · released Mar 8, 2026
Audit
Dependencies
DjangorequiredRequired; version >=4.2