skillfed

django-eveonline-sde

Eve Online SDE Export in Django Model form

django-eveonline-sde v0.0.2 269.7K downloads/30d#8,254 on PyPI3
Copyleft license GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> Everyone is permitted to copy and distribute verbatim copies of this license… (full text in the JSON record) Active released

What it is and what it does

django-eveonline-sde is a Django app that imports EVE Online's Static Data Export into your database as Django models. It covers game geography (regions, constellations, solar systems, planets, moons, stargates), item catalogs (types, groups, categories, market groups), manufacturing blueprints with their materials and products, dogma attributes and effects, and freelance job schemas. The package includes a management command to perform the initial load and sets up periodic background tasks via celery to check for SDE updates, which typically occur after EVE's daily downtime.

The app is designed as a standalone Django plugin but integrates opportunistically with AllianceAuth when present, falling back gracefully when it isn't. All SDE models are registered in Django admin as read-only for browsing and searching. The import process is configurable via settings for batch size, memory usage, and task splitting, and uses Redis-backed task locking to prevent concurrent update runs.

Use it for:

  • Build an EVE Online companion app that needs to reference canonical game data without maintaining your own copy
  • Create a market analysis or trading tool that queries item types, categories, and manufacturing chains
  • Develop an alliance management dashboard that displays sovereignty upgrades, NPC stations, and regional data
  • Implement a blueprint calculator or industry planner by querying blueprints, materials, and products
  • Set up a freelance job board that uses job schemas and validates character, corporation, and alliance parameters

Worth the install?

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

Provides Django models for EVE Online's Static Data Export, importing game universe data like regions, solar systems, item types, and blueprints into your database with automatic periodic updates.

Yes, if you are building a Django app for the EVE Online community and need authoritative game universe data. The package is actively maintained, has low install friction, and handles periodic updates automatically. The GPLv3 license is a hard constraint if you need proprietary distribution. Requires Redis and celery infrastructure, so factor that into your deployment. No known security vulnerabilities.

Install

django-eveonline-sde on PyPI

pip

pip install django-eveonline-sde

uv

uv add django-eveonline-sde

poetry

poetry add django-eveonline-sde

Installing django-eveonline-sde

Before you install

Low friction install with a pure-Python wheel. Maintenance is active with recent commits. Requires Redis for task locking and depends on celery for background SDE update checks.

License in practice

GPLv3 copyleft license requires that any derivative work or distribution must also be licensed under GPLv3 and include source code. Acceptable for internal use and open-source projects, but incompatible with proprietary software.

Quickstart

pip install django-eveonline-sde

# In settings.py, add modeltranslation first:
INSTALLED_APPS = ["modeltranslation"] + INSTALLED_APPS
INSTALLED_APPS += ["django-eveonline-sde"]

# Then migrate and load:
python manage.py migrate
python manage.py esde_load_sde

Requires Redis running for celery-once task locking. Django 4.2+ and Python 3.10–3.14 required.

Verify before relying

  • Whether the SDE data import handles partial or incremental updates, or requires full reimport on each check
  • Performance characteristics when importing large SDE datasets into production databases
  • Whether the admin interface supports filtering and search across all imported model types

Package facts

License GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> Everyone is permitted to copy and distribute verbatim copies of this license… (full text in the JSON record) (copyleft)
Python support supports the current Python release (<3.15,>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 5 — celery-once, celery, django-modeltranslation, django-solo, httpx
Maintenance actively maintained — 9 days since the last release
Last repo commit
First released
Downloads 269,671/month — #8,254 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: django_eveonline_sde-0.0.2-py3-none-any.whl

Keywords: allianceauth, eve online

Environment :: Web EnvironmentFramework :: DjangoFramework :: Django :: 4.2Intended Audience :: DevelopersLicense :: OSI Approved :: GNU General Public License v3 (GPLv3)Operating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3 :: OnlyProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Topic :: Internet :: WWW/HTTPTopic :: Internet :: WWW/HTTP :: Dynamic Content

Tags

eve online sde django modelseve online game data djangoeve universe database modelseve online static data exporteve online django integration
eve-onlinegame-datadjango-plugin

More WWW/HTTP packages