skillfed

aa-inactivity

An app for monitoring game activity of members with Member Audit and Alliance Auth.

aa-inactivity v3.0.2 237.1K downloads/30d#8,964 on PyPI0
License unclear Active released

What it is and what it does

AA Inactivity is a Django app that integrates with Alliance Auth and Member Audit to track and report on member inactivity. It pulls last-login data from Member Audit, compares it against configurable inactivity policies, and automatically notifies both inactive users and managers when thresholds are crossed. The app also provides a leave-of-absence request workflow, allowing members to request temporary exemptions from inactivity checks and managers to approve or deny those requests.

The package runs as a scheduled Celery task (typically daily) and can send notifications through Alliance Auth's built-in system or forward them to Discord via webhooks. It is purpose-built for EVE Online alliance management and requires an existing Alliance Auth installation with Member Audit already deployed.

Use it for:

  • Automatically flag and notify members who have not logged in for a configurable number of days.
  • Alert managers to inactive members so they can take retention or removal actions.
  • Allow members to request leave of absence and have managers approve or deny those requests.
  • Send Discord webhook alerts to management channels when members become inactive.
  • Maintain a dashboard view of currently inactive and notified members for audit purposes.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Monitors member activity in Alliance Auth using Member Audit data and sends notifications to users and managers when inactivity thresholds are exceeded.

Yes, if you run Alliance Auth with Member Audit and need automated inactivity monitoring. The package is actively maintained, has low install friction, and solves a specific operational need for alliance management. However, verify the license terms before production deployment, as the license status is currently unclear. No known security vulnerabilities.

Install

aa-inactivity on PyPI

pip

pip install aa-inactivity

uv

uv add aa-inactivity

poetry

poetry add aa-inactivity

Installing aa-inactivity

Before you install

Low install friction with a pure-Python wheel distribution. Actively maintained with a recent release; last commit 2026-07-16. Requires Alliance Auth and Member Audit to be pre-installed and configured.

License in practice

License status is unclear—no SPDX identifier or raw license text is declared. Verify the actual license terms before deploying in a production environment.

Quickstart

pip install aa-inactivity

# In Django settings, add to INSTALLED_APPS:
INSTALLED_APPS = [
    ...,
    'inactivity',
]

# Add to CELERYBEAT_SCHEDULE:
CELERYBEAT_SCHEDULE['inactivity_check_inactivity'] = {
    'task': 'inactivity.tasks.check_inactivity',
    'schedule': crontab(minute=0, hour=0),
}

# Run migrations:
python manage.py migrate

Requires Alliance Auth and Member Audit to be already installed and configured; requires Python 3.10 or later; requires Django 4.2 or 5.2 and a Celery Beat scheduler.

Verify before relying

  • Whether the package works with all versions of py-cord listed as a dependency or only specific versions.
  • Whether Discord webhook configuration is documented or requires manual setup beyond the app installation.
  • Whether leave-of-absence approval workflows support custom notification templates.

Package facts

License not declared (unclear)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 6 — aa-memberaudit, allianceauth-app-utils, django-multiselectfield, py-cord, pytz, humanize
Maintenance actively maintained — 29 days since the last release
Last repo commit
First released
Downloads 237,125/month — #8,964 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: aa_inactivity-3.0.2-py3-none-any.whl

Environment :: Web EnvironmentFramework :: DjangoFramework :: Django :: 4.2Framework :: Django :: 5.2Intended Audience :: End Users/DesktopOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Topic :: Internet :: WWW/HTTPTopic :: Internet :: WWW/HTTP :: Dynamic Content

Tags

alliance auth member activity monitoringinactive user notificationsleave of absence requestsmember audit integrationdiscord webhook notificationsalliance auth inactivity trackingmember management automation
alliance-authmember-managementdiscord-integration

More WWW/HTTP packages