Modular Django-based data management framework with ORM, GraphQL, fine-grained permissions, rule validation, calculations and caching.
Project description
GeneralManager
GeneralManager is a typed, declarative framework for building data-rich Django applications. Define domain objects once, then use the same model through the Django ORM, generated GraphQL, permission policies, validation, calculations, search, and workflows.
GeneralManager is pre-1.0. The main branch and latest PyPI release can differ;
use the release history
to distinguish published behavior from current development.
What GeneralManager provides
Domain models and interfaces
- Generate Django-backed models from typed manager definitions.
- Wrap existing Django models or expose calculated, request-backed, and remote data through the same manager API.
Start with the architecture overview and interface concepts.
APIs, permissions, and validation
- Generate GraphQL queries, mutations, subscriptions, filters, and pagination.
- Apply manager-, operation-, object-, and field-level permission policies.
- Keep business validation close to the domain with declarative rules.
Data and operations
- Work with unit- and currency-aware measurements and dataframe conversion helpers.
- Coordinate derived values with dependency-aware caching, search, workflows, audit logging, and metrics.
Development and optional integrations
- Seed realistic data with generated factories and manager-landscape helpers.
- Opt into secure GraphQL file uploads and provider-based LLM chat when those subsystems fit the application.
Compatibility
- Python 3.12 or later
- Django 5.2.15 or later
CI tests Python 3.12, 3.13, and 3.14 against SQLite, PostgreSQL and MariaDB.
Other database backends supported by Django may also work, but are not officially supported unless covered by GeneralManager’s test suite or maintained examples.
Five-minute setup
Start in an empty directory. On macOS or Linux:
mkdir general-manager-demo
cd general-manager-demo
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install GeneralManager
django-admin startproject gm_demo .
python manage.py startapp projects
Append the following to gm_demo/settings.py:
INSTALLED_APPS += [
"general_manager",
"projects.apps.ProjectsConfig",
]
AUTOCREATE_GRAPHQL = True
GRAPHQL_URL = "graphql/"
ALLOWED_HOSTS = ["127.0.0.1", "localhost", "testserver"]
Create projects/managers.py:
from typing import ClassVar
from django.db.models import CharField
from general_manager import GeneralManager
from general_manager.interface import DatabaseInterface
from general_manager.permission import AdditiveManagerPermission
class Project(GeneralManager):
name: str
class Interface(DatabaseInterface):
name = CharField(max_length=100)
class Permission(AdditiveManagerPermission):
__read__: ClassVar[list[str]] = ["public"]
__create__: ClassVar[list[str]] = ["isAuthenticated"]
__update__: ClassVar[list[str]] = ["isAuthenticated"]
__delete__: ClassVar[list[str]] = ["isAuthenticated"]
GeneralManager discovers managers.py modules in installed Django applications
during startup, so no manual import in AppConfig.ready() is needed. Create the
generated model's migration, initialize the database, and seed one demo record:
python manage.py makemigrations projects
python manage.py migrate
python manage.py shell -c 'from projects.managers import Project; Project.Factory.create(name="Apollo")'
python manage.py runserver
Project.Factory.create(...) is intended here for demo seeding. Application
writes should run through an authenticated permission context.
In another terminal, retrieve the record through generated GraphQL. This GET request is copyable without a CSRF token:
curl --get 'http://127.0.0.1:8000/graphql/' \
--data-urlencode 'query=query { projectList { items { name } } }'
Expected response:
{"data":{"projectList":{"items":[{"name":"Apollo"}]}}}
You now have a typed manager, generated Django model, migration, persisted record, permission policy, and generated GraphQL query. Continue with the annotated quickstart for Windows activation, framework behavior, and troubleshooting.
Documentation
- Documentation home
- Quickstart
- Installation and optional extras
- Concept guides
- API reference
- Examples and recipes
Project links
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 generalmanager-0.66.0.tar.gz.
File metadata
- Download URL: generalmanager-0.66.0.tar.gz
- Upload date:
- Size: 725.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9494094adb320db5f7fe66b6058539df998b609db0125a054185014861770210
|
|
| MD5 |
5ad0574ad23663b9e1c37d0a34abd6c7
|
|
| BLAKE2b-256 |
e4c2933c226dc30d294ef94f7188ec6ac41ceecb25f5b3e85fb8eeceb716a4a3
|
File details
Details for the file generalmanager-0.66.0-py3-none-any.whl.
File metadata
- Download URL: generalmanager-0.66.0-py3-none-any.whl
- Upload date:
- Size: 865.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02bc5ce1bb3a68c2a5ab20761622e56dcfcdd15230716ce39dfab9d22f291c48
|
|
| MD5 |
6c45070b9eed8f3f1bf1396eb249d45b
|
|
| BLAKE2b-256 |
696dd50cd77fdba28b2300741e4e5838f8bb4b371041892594633dfce5cda37a
|