{"id":26694,"library":"aa-killtracker","title":"aa-killtracker","description":"An app for running killmail trackers with Alliance Auth and Discord. Current version: 1.4.0. Release cadence: irregular, minor updates.","status":"active","version":"1.4.0","language":"python","source_language":"en","source_url":"https://github.com/ppfeufer/aa-killtracker","tags":["allianceauth","eve-online","killmail","discord","django"],"install":[{"cmd":"pip install aa-killtracker","lang":"bash","label":"PyPI install"},{"cmd":"pip install aa-killtracker[discord]","lang":"bash","label":"Install with Discord extras"}],"dependencies":[{"reason":"Required for running as Alliance Auth plugin","package":"allianceauth","optional":false},{"reason":"Required for Discord bot functionality (installed via extras)","package":"discord.py","optional":true}],"imports":[{"note":"Old import path used underscore. Use 'killtracker' (no aa_ prefix).","wrong":"from aa_killtracker.models import Killtracker","symbol":"Killtracker","correct":"from killtracker.models import Killtracker"},{"note":"Model name is 'Killmail', not 'KillMail' (camelcase vs lowercase).","wrong":"from killtracker.models import KillMail","symbol":"Killmail","correct":"from killtracker.models import Killmail"}],"quickstart":{"code":"from django.conf import settings\nINSTALLED_APPS = settings.INSTALLED_APPS + ['killtracker', 'django_celery_beat']","lang":"python","description":"Add to Django settings INSTALLED_APPS. Requires Alliance Auth >= 3.0. Run migrations and collectstatic after."},"warnings":[{"fix":"Replace 'aa_killtracker' with 'killtracker' in INSTALLED_APPS.","message":"In version 1.x, the app name changed from 'aa_killtracker' to 'killtracker'. If you still have 'aa_killtracker' in INSTALLED_APPS, it will break.","severity":"breaking","affected_versions":">=1.0.0"},{"fix":"Enable 'Server Members Intent' and 'Message Content Intent' in Discord Developer Portal.","message":"The Discord bot requires specific intents to be enabled in your Discord Developer Portal. Missing intents cause silent failures.","severity":"gotcha","affected_versions":"all"},{"fix":"Replace with 'from killtracker.tasks import update_killmails_batch'.","message":"Function 'killtracker.tasks.update_killmails()' is deprecated in 1.4.0. Use 'killtracker.tasks.update_killmails_batch()' instead.","severity":"deprecated","affected_versions":">=1.4.0"}],"env_vars":null,"last_verified":"2026-04-27T00:00:00.000Z","next_check":"2026-07-26T00:00:00.000Z","problems":[{"fix":"Use 'import killtracker' or 'from killtracker import ...' (without 'aa_' prefix).","cause":"The package renamed its app to 'killtracker' in version 1.0.0.","error":"ModuleNotFoundError: No module named 'aa_killtracker'"},{"fix":"Remove duplicate or rename the conflicting app's label in its AppConfig.","cause":"Another app with same label 'killtracker' is installed (e.g., killtracker from another package).","error":"django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: killtracker"},{"fix":"Update Alliance Auth to >=3.0 and ensure ESI client is using latest version.","cause":"The ESI endpoint used by older versions changed. The library expects updated ESI client.","error":"AttributeError: 'ESIClient' object has no attribute 'get_killmails'"}],"ecosystem":"pypi","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}