aa-shop
An Alliance Auth plugin that lets auth members run a public shop stocked automatically from their own EVE assets.
Features
A public storefront, stocked from your assets. Publish a shop and anyone gets a clean, searchable storefront — no login required to browse. Stock and prices fill in automatically from your allianceauth-corptools assets, so the shop stays current with no manual upkeep. Unpublished shops stay private to you as a preview until you're ready to share the link.
Sell what you actually have:
- Ships — hulls listed straight from your hangars, unlimited (build-to-order) or capped at what's in stock.
- Modules, rigs, drones & implants — auto-listed from a dedicated container or hangar.
- Blueprint copies — every ME / TE / runs variant listed on its own, each with its own price and stock.
- Fitted ships — mark an assembled ship in-game and it lists automatically with its fit reconstructed from your assets. The storefront shows the full fitting and everything that transfers with the ship (drones, fighters, fuel, ships in the maintenance bay), and shoppers copy an EFT export in one click.
Pricing on your terms. A fixed price, "Ask" (negotiate / contract in-game), or a live percentage of Jita that refreshes on a schedule.
Real orders, not just a catalogue. Shoppers build a cart and send a request — logging in with their EVE character only at checkout. You get an Alliance Auth notification (and an optional Discord ping), then work the order from a back-office queue with a status workflow and click-to-copy buyer contact.
Personal and corporation shops. Run a shop from your own characters, or a corp shop sourced from corp hangar divisions (with the relevant corptools access).
Curate the shopfront. Feature items to pin them up top, hide what you don't want shown, and give each shop a Markdown description.
Screenshots
Every listing gets a detail page — and a fitted ship's page reconstructs the whole fit from your assets, lists everything that transfers with it, and exports EFT in one click:
Featured items lead each section — from titans to officer modules:
And the back-office, where you manage each section's listings and work incoming orders:
Requirements
- Alliance Auth >= 5
- allianceauth-corptools >= 3.2.0, installed and syncing character (and, for corp shops, corporation) assets (3.2.0 adds the blueprint ME/TE/runs the BPC section reads)
Installation
-
Install into your Alliance Auth virtual environment:
pip install aa-shop
-
Add
"shop"toINSTALLED_APPSin your auth project'slocal.py:INSTALLED_APPS += ["shop"]
-
Let the storefront serve its public pages — required, or anonymous visitors are redirected to login:
APPS_WITH_PUBLIC_VIEWS = ["storefront"]
-
Run migrations and collect static files, then restart your AA services:
python manage.py migrate python manage.py collectstatic
-
EVE universe data: the ship and blueprint pickers read from django-eveuniverse, so make sure its data is populated (load the full EVE universe, or at least the Ship category, with eveuniverse's load tooling). Types that aren't loaded won't be selectable.
-
Grant the
shop.basic_accesspermission (Django admin, or via groups/states) to members who should be able to run shops. -
Selling blueprint copies additionally needs a
read_blueprintsESI token: the character'sesi-characters.read_blueprints.v1for personal shops, or a director'sesi-corporations.read_blueprints.v1for corporation shops. Registering the character with corptools already covers the character scope.
Scheduled tasks
Add these to your local.py so stock and prices stay current:
from celery.schedules import crontab
# Recompute stock for every shop, hourly (ships, modules, blueprint copies).
CELERYBEAT_SCHEDULE["shop_refresh_all_stock"] = {
"task": "shop.tasks.refresh_all_stock",
"schedule": crontab(minute=0),
}
# Re-price anything set to a percentage of Jita, every 6 hours.
CELERYBEAT_SCHEDULE["shop_refresh_pct_prices"] = {
"task": "shop.tasks.refresh_pct_prices",
"schedule": crontab(minute=0, hour="*/6"),
}
Stock is read from your corptools assets; the hourly task also nudges corptools to pull
fresh assets first, so you don't need to tune its update rings. ESI caches assets and
blueprints for about an hour, so hourly is as often as is useful. Optional settings:
SHOP_REFRESH_CORPTOOLS_ASSETS = False skips the asset nudge, and SHOP_TASKS_PRIORITY
(1 = urgent … 9 = idle, default 7) sets the priority of these background tasks.
Usage
Members with access get a Shop entry in the auth sidebar. From there you can create a personal or corporation shop, name it and give it a short link, choose what it sells (ships, modules, blueprint copies, fitted ships), and publish it. While a shop is unpublished only you can see it, as a preview; once published, share its link with anyone.
Stock and prices fill in automatically from your assets on the schedule above — you just set your pricing rules and pick which items to feature or hide.
Support
Feedback is very welcome — if you're running aa-shop, I'd love to hear how it's going.
- Bugs & feature requests: open an issue on GitLab.
- Questions & chat: find the community on the Alliance Auth Discord.
License
MIT
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 aa_shop-0.5.0.tar.gz.
File metadata
- Download URL: aa_shop-0.5.0.tar.gz
- Upload date:
- Size: 149.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4904f716bc6cc298dda025353624c53069c30a7af5524cfa7cb00b7be01c580d
|
|
| MD5 |
e5c94022be6d2d5f909aeda5afba562f
|
|
| BLAKE2b-256 |
4cb7d4229f7478e1bb7ab8a87dcbd309e84eb87a913bb25786e7028420a01f8d
|
File details
Details for the file aa_shop-0.5.0-py3-none-any.whl.
File metadata
- Download URL: aa_shop-0.5.0-py3-none-any.whl
- Upload date:
- Size: 216.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1b689c9a700e97cbf0618965ca30fd8c9cdaa5443aa842c8714a66248f967eb
|
|
| MD5 |
3aea0ffbd7c3f17cb6179779910eb057
|
|
| BLAKE2b-256 |
d0b2041b7fd75168217af9fd3db84abcd6c0fe20ba38092978f1be3568f66446
|