aa-market-manager


Nameaa-market-manager JSON
Version 1.0.3 PyPI version JSON
download
home_pageNone
SummaryAllianceAuth Market Management Tool
upload_time2024-12-05 22:05:54
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords allianceauth eveonline
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Market Manager for Alliance Auth

Market Manager and Market Browser plugin for [Alliance Auth](https://gitlab.com/allianceauth/allianceauth/).

Inspired by [EveMarketer](https://evemarketer.com/), [Fuzzworks Market](https://market.fuzzwork.co.uk/browser/) and all those that came before them

![Screenshot](https://i.imgur.com/BBQ1kAM.png)

![Screenshot](https://i.imgur.com/XmY6BRp.png)
![Screenshot](https://i.imgur.com/vHLy3xP.png)

## Features

- Market Browser
  - Item Search with Autocomplete
  - Buy/Sell Orders
  - Region filtering
  - Order highlighting on Corporation and User ownership of Orders
  - Item Statistics, Medians and Percentiles
- Order Types
  - Public Orders
  - Character Orders
  - Corporation Orders
  - Private Structures Orders
- Configurable Alerts
  - Supply Alerts, Ensure adequate volume is on the market at a given price.
  - Price Alerts, Highlights orders that breach a given threshold to find Scalpers and market abuse.
  - Price Alerts (Bargains!), Flip the logic to find bargains like dreads in surrounding regions.
- Alert Destinations
  - Discord Webhooks
  - AA Discordbot channel messages

## Features - Technical

- Corporation Orders
  - A Title/Role checker, to find valid tokens to fetch orders.
- Private Structure Orders
  - Requires mapping tokens to their allowed Structures and/or Corporation's Structures.
- Structure ID Resolver
  - Resolves Stations via Django-EveUniverse EveEntity resolver
  - Resolves Citadels internally
    - Fetches Corporation Citadels from Corporation Tokens loaded with the appropriate EVE Roles ("Station_Manager")
    - get_universe_structures_structure_id requires docking ACL Access. As there is no way to tell who has docking (even the owner corporation is not a guarantee),
- Will detect and use any tokens loaded by other means, if you request the scopes as part of a wider scoped app (Such as an Audit tool etc.)
- Managed WatchConfigs, to allow external apps to manage and create their own configs.
  - Very basic currently
  - Supports Generating and maintaining WatchConfigs for a given fit.

## Planned Features

- Private Structure Orders
  - Failing to resolve will disable the token mapping to avoid error-bans.
- Configurable Alerts
  - Re-List detection, Highlight characters buying and relisting items past a configured threshold.

- Managed WatchConfigs, to allow external apps to manage and create their own configs.
  - Framework exists, need code.
  - Buybacks?!?

## Installation

### Step 1 - Django Eve Universe

Market Manager is an App for [Alliance Auth](https://gitlab.com/allianceauth/allianceauth/), Please make sure you have this installed. Market Manager is not a standalone Django Application

Market Manager needs the App [django-eveuniverse](https://gitlab.com/ErikKalkoken/django-eveuniverse) to function. Please make sure it is installed before continuing.

### Step 2 - Install app

```shell
pip install aa-market-manager
```

### Step 3 - Configure Auth settings

Configure your Auth settings (`local.py`) as follows:

- Add `'marketmanager'` to `INSTALLED_APPS`
- Add below lines to your settings file:

```python
## Settings for AA-MarketManager
# Market Orders
CELERYBEAT_SCHEDULE['marketmanager_fetch_public_market_orders'] = {
    'task': 'marketmanager.tasks.fetch_public_market_orders',
    'schedule': crontab(minute=0, hour='*/3'),
}
CELERYBEAT_SCHEDULE['marketmanager_fetch_all_character_orders'] = {
    'task': 'marketmanager.tasks.fetch_all_character_orders',
    'schedule': crontab(minute=0, hour='*/3'),
}
CELERYBEAT_SCHEDULE['marketmanager_fetch_all_corporation_orders'] = {
    'task': 'marketmanager.tasks.fetch_all_corporation_orders',
    'schedule': crontab(minute=0, hour='*/3'),
}
CELERYBEAT_SCHEDULE['marketmanager_fetch_all_structure_orders'] = {
    'task': 'marketmanager.tasks.fetch_all_structure_orders',
    'schedule': crontab(minute=0, hour='*/3'),
}
# Structure Information
CELERYBEAT_SCHEDULE['marketmanager_fetch_public_structures'] = {
    'task': 'marketmanager.tasks.fetch_public_structures',
    'schedule': crontab(minute=0, hour=4),
}
CELERYBEAT_SCHEDULE['marketmanager_update_private_structures'] = {
    'task': 'marketmanager.tasks.update_private_structures',
    'schedule': crontab(minute=0, hour=5),
}
CELERYBEAT_SCHEDULE['marketmanager_fetch_all_corporations_structures'] = {
    'task': 'marketmanager.tasks.fetch_all_corporations_structures',
    'schedule': crontab(minute=0, hour=6),
}
# Watch Configs
CELERYBEAT_SCHEDULE['marketmanager_update_managed_supply_configs'] = {
    'task': 'marketmanager.tasks.update_managed_supply_configs',
    'schedule': crontab(minute='0', hour='2'),
}
CELERYBEAT_SCHEDULE['marketmanager_run_all_watch_configs'] = {
    'task': 'marketmanager.tasks.run_all_watch_configs',
    'schedule': crontab(minute=0, hour='*/3'),
}
# Background Tasks
CELERYBEAT_SCHEDULE['marketmanager_update_all_type_statistics'] = {
    'task': 'marketmanager.tasks.update_all_type_statistics',
    'schedule': crontab(minute='0', hour='7'),
}
# Cleanup
CELERYBEAT_SCHEDULE['marketmanager_garbage_collection'] = {
    'task': 'marketmanager.tasks.garbage_collection',
    'schedule': crontab(minute='0', hour=0),
}
```

### Step 4 - Maintain Alliance Auth

- Run migrations `python manage.py migrate`
- Gather your staticfiles `python manage.py collectstatic`
- Restart your project `supervisorctl restart myauth:`

### Step 5 - Pre-Load Django-EveUniverse

- `python manage.py eveuniverse_load_data map` This will load Regions, Constellations and Solar Systems

### Step 6 (Optional) - Further Pre-Load Django-EveUniverse

This is less required the more you have used eveuniverse in the past

- `python manage.py eveuniverse_load_data ships --types-enabled-sections market_groups` This will load Ships, which are nearly universally on the market
- `python manage.py eveuniverse_load_data structures`, this will load Structures for use in Filters
- `python manage.py marketmanager_preload_common_eve_types` This will preload a series of Types using Groups and Categories I've analyzed to be popular on the market, please note this currently will not import MarketGroups until a market update is run for the first time, this may impact your ability to make SupplyConfigs immediately.

### Step 7 - Configuration

In the Admin interface, visit `marketmanager` or `<AUTH-URL>/admin/marketmanager`

### Public Market Configuration

Select the Regions you would like to pull Public Market Data for

- Please note Jita (The Forge) is not trivial and will take several minutes to pull and process depending on your hardware.

### TypeStatistics Calculation Configurations

Select the Regions you would like to calculate Percentiles, Medians and Weighted Averages for

- We always calculate these stats across New Eden, but these will likely match Public Market Configuration or the regions where your Private Structures are located.
- Supply Configs require The Forge selected to use The Forge(Jita) Relative Pricing.
- An item must have a minimum amount of orders to be calculated (see settings)

### Private Configs

Map the appropriate tokens with Access to Docking and Market (this cant be assumed), to the right Structures And/Or Corps.

## WatchConfig Types

Configure some supply alerts

### Supply Check

- Highlight Types (Items), that fail to meet a defined config
- Volume of Items at given price in location
Example. Warn if there is less than 1,000,000 Units of Oxygen Isotopes under 1,000 ISK/Unit, in 9KOE-A.

### Bargain Finder WIP

- Highlights Orders that meet a defined config.
Example. Notify if Naglfars under 3,000,000,000 ISK/Unit are on sale in Curse NPC Stations

### Scalp Checker WIP

- Highlights Orders, that breach Jita/Universe price.
Example. Notify Leadership that Ariel Rin is selling Nanite Repair Paste at over 500% Jita price in Staging.

### Margin Check

- Compares the lowest/highest orders in a source location to a destination.
- Either Importing a market or Exporting with Buy/Sell order choices for both source and destination
- Optionally can include a freight cost in calculations

## Managed Watch Configs

### Fittings

- Managed By App = `fittings`
- Managed App-Identifier = `fittings.fit.<FIT_ID>`
- Managed App Reason = A user facing reason
- ... a slightly limited subset of WatchConfig settings that will be replicated on each WatchConfig created.

## Permissions

| Perm | Admin Site  | Perm | Description |
| --- | --- | --- | --- |
| basic_market_browser | nill | Can access the Standard Market Browser | Can access the normal user facing market browser|
| advanced_market_browser | nill | Can access the Advanced Market Browser | Can access the more advanced management browser with private details|
| order_highlight_user | nill | Can access other character's data for own alliance. | Enables Highlighting a users own Orders in the Market Browser|
| order_highlight_corporation | nill | Can access other character's data for own corp. | Enables Highlighting the orders of a users corporation in the Market Browser|
| can_add_token_character | nill | Can add a Character Token with required scopes | Enables the "Add Character Token" button to request the needed scopes from a user|
| can_add_token_corporation | nill | Can add a Corporation Token with required scopes | Enables the "Add Corporation Token" button to request the needed scopes from a user|

## Settings

| Name | Description | Default |
| --- | --- | --- |
|`MARKETMANAGER_CLEANUP_DAYS_STRUCTURE`| Number of days without an update, before considering a Structure stale and to be deleted | 30 |
|`MARKETMANAGER_CLEANUP_DAYS_ORDER`| Number of days without an update, before considering an Order stale and to be deleted | 30|
|`MARKETMANAGER_TASK_PRIORITY_ORDERS`| Celery task priority for Order tasks | 5|
|`MARKETMANAGER_TASK_PRIORITY_STRUCTURES`| Celery task priority for Structure tasks | 4|
|`MARKETMANAGER_TASK_PRIORITY_BACKGROUND`| Celery task priority for Background tasks | 7|
|`MARKETMANAGER_TASK_PRIORITY_SUPPLY_CONFIGS`| Celery task priority for SupplyConfig tasks, This is Lower than Orders to ensure it runs while Orders are all up to date | 6|
|`MARKETMANAGER_TASK_PRIORITY_PRICE_CONFIGS`| Celery task priority for PriceConfig tasks, This is Lower than Orders to ensure it runs while Orders are all up to date | 6|
|`MARKETMANAGER_WEBHOOK_COLOUR_ERROR`| Webhook colour for Errors | 16711710|
|`MARKETMANAGER_WEBHOOK_COLOUR_WARNING`| Webhook colour for Errors | 14177041|
|`MARKETMANAGER_WEBHOOK_COLOUR_INFO`| Webhook colour for Errors  | 42751|
|`MARKETMANAGER_WEBHOOK_COLOUR_SUCCESS`| Webhook colour for Success | 6684416|
|`MARKETMANAGER_TYPESTATISTICS_MINIMUM_ORDER_COUNT` | Minimum number of Orders to exist before calculating Medians, Averages and Percentiles | 10 |

## Third Party Integrations

Creating Watch Configs from external applications is relatively straight forward and Market Manager provides an Optional Model for keeping track of these Watch Configs.

How an app maintains these Watch Configs is left to the developer, but Fittings provides a decent starting point using App Signals and referencing the Managed Watch Config model.

managed_app should follow python referencing convention. `fittings`, `projectname.modulename`
managed_app_identifier is up to the app, but i would suggest following from Fittings, `fittings.fit.{fit.id}`
managed_app_reason is presented to users as to_why_ a managed config exists, `Standard MWD Eagle x50`

```python
def marketmanager_active() -> bool:
    return apps.is_installed("marketmanager")

if marketmanager_active():
    from marketmanager.models import WatchConfig, ManagedAppConfig

    # ...
    # Maintain your Watch Configs here
    # ...
```

- Fittings (Currently from Market Manager)
  - Create and Maintain Watch Configs for x number of a Fit or Fits.

## Contributing

Make sure you have signed the [License Agreement](https://developers.eveonline.com/resource/license-agreement) by logging in at <https://developers.eveonline.com> before submitting any pull requests. All bug fixes or features must not include extra superfluous formatting changes.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "aa-market-manager",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "allianceauth, eveonline",
    "author": null,
    "author_email": "Joel Falknau <joel.falknau@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/3f/f0/bfab220adb47500cb56022cdbdd8aad781cd3814545c476056c97111ce61/aa_market_manager-1.0.3.tar.gz",
    "platform": null,
    "description": "# Market Manager for Alliance Auth\n\nMarket Manager and Market Browser plugin for [Alliance Auth](https://gitlab.com/allianceauth/allianceauth/).\n\nInspired by [EveMarketer](https://evemarketer.com/), [Fuzzworks Market](https://market.fuzzwork.co.uk/browser/) and all those that came before them\n\n![Screenshot](https://i.imgur.com/BBQ1kAM.png)\n\n![Screenshot](https://i.imgur.com/XmY6BRp.png)\n![Screenshot](https://i.imgur.com/vHLy3xP.png)\n\n## Features\n\n- Market Browser\n  - Item Search with Autocomplete\n  - Buy/Sell Orders\n  - Region filtering\n  - Order highlighting on Corporation and User ownership of Orders\n  - Item Statistics, Medians and Percentiles\n- Order Types\n  - Public Orders\n  - Character Orders\n  - Corporation Orders\n  - Private Structures Orders\n- Configurable Alerts\n  - Supply Alerts, Ensure adequate volume is on the market at a given price.\n  - Price Alerts, Highlights orders that breach a given threshold to find Scalpers and market abuse.\n  - Price Alerts (Bargains!), Flip the logic to find bargains like dreads in surrounding regions.\n- Alert Destinations\n  - Discord Webhooks\n  - AA Discordbot channel messages\n\n## Features - Technical\n\n- Corporation Orders\n  - A Title/Role checker, to find valid tokens to fetch orders.\n- Private Structure Orders\n  - Requires mapping tokens to their allowed Structures and/or Corporation's Structures.\n- Structure ID Resolver\n  - Resolves Stations via Django-EveUniverse EveEntity resolver\n  - Resolves Citadels internally\n    - Fetches Corporation Citadels from Corporation Tokens loaded with the appropriate EVE Roles (\"Station_Manager\")\n    - get_universe_structures_structure_id requires docking ACL Access. As there is no way to tell who has docking (even the owner corporation is not a guarantee),\n- Will detect and use any tokens loaded by other means, if you request the scopes as part of a wider scoped app (Such as an Audit tool etc.)\n- Managed WatchConfigs, to allow external apps to manage and create their own configs.\n  - Very basic currently\n  - Supports Generating and maintaining WatchConfigs for a given fit.\n\n## Planned Features\n\n- Private Structure Orders\n  - Failing to resolve will disable the token mapping to avoid error-bans.\n- Configurable Alerts\n  - Re-List detection, Highlight characters buying and relisting items past a configured threshold.\n\n- Managed WatchConfigs, to allow external apps to manage and create their own configs.\n  - Framework exists, need code.\n  - Buybacks?!?\n\n## Installation\n\n### Step 1 - Django Eve Universe\n\nMarket Manager is an App for [Alliance Auth](https://gitlab.com/allianceauth/allianceauth/), Please make sure you have this installed. Market Manager is not a standalone Django Application\n\nMarket Manager needs the App [django-eveuniverse](https://gitlab.com/ErikKalkoken/django-eveuniverse) to function. Please make sure it is installed before continuing.\n\n### Step 2 - Install app\n\n```shell\npip install aa-market-manager\n```\n\n### Step 3 - Configure Auth settings\n\nConfigure your Auth settings (`local.py`) as follows:\n\n- Add `'marketmanager'` to `INSTALLED_APPS`\n- Add below lines to your settings file:\n\n```python\n## Settings for AA-MarketManager\n# Market Orders\nCELERYBEAT_SCHEDULE['marketmanager_fetch_public_market_orders'] = {\n    'task': 'marketmanager.tasks.fetch_public_market_orders',\n    'schedule': crontab(minute=0, hour='*/3'),\n}\nCELERYBEAT_SCHEDULE['marketmanager_fetch_all_character_orders'] = {\n    'task': 'marketmanager.tasks.fetch_all_character_orders',\n    'schedule': crontab(minute=0, hour='*/3'),\n}\nCELERYBEAT_SCHEDULE['marketmanager_fetch_all_corporation_orders'] = {\n    'task': 'marketmanager.tasks.fetch_all_corporation_orders',\n    'schedule': crontab(minute=0, hour='*/3'),\n}\nCELERYBEAT_SCHEDULE['marketmanager_fetch_all_structure_orders'] = {\n    'task': 'marketmanager.tasks.fetch_all_structure_orders',\n    'schedule': crontab(minute=0, hour='*/3'),\n}\n# Structure Information\nCELERYBEAT_SCHEDULE['marketmanager_fetch_public_structures'] = {\n    'task': 'marketmanager.tasks.fetch_public_structures',\n    'schedule': crontab(minute=0, hour=4),\n}\nCELERYBEAT_SCHEDULE['marketmanager_update_private_structures'] = {\n    'task': 'marketmanager.tasks.update_private_structures',\n    'schedule': crontab(minute=0, hour=5),\n}\nCELERYBEAT_SCHEDULE['marketmanager_fetch_all_corporations_structures'] = {\n    'task': 'marketmanager.tasks.fetch_all_corporations_structures',\n    'schedule': crontab(minute=0, hour=6),\n}\n# Watch Configs\nCELERYBEAT_SCHEDULE['marketmanager_update_managed_supply_configs'] = {\n    'task': 'marketmanager.tasks.update_managed_supply_configs',\n    'schedule': crontab(minute='0', hour='2'),\n}\nCELERYBEAT_SCHEDULE['marketmanager_run_all_watch_configs'] = {\n    'task': 'marketmanager.tasks.run_all_watch_configs',\n    'schedule': crontab(minute=0, hour='*/3'),\n}\n# Background Tasks\nCELERYBEAT_SCHEDULE['marketmanager_update_all_type_statistics'] = {\n    'task': 'marketmanager.tasks.update_all_type_statistics',\n    'schedule': crontab(minute='0', hour='7'),\n}\n# Cleanup\nCELERYBEAT_SCHEDULE['marketmanager_garbage_collection'] = {\n    'task': 'marketmanager.tasks.garbage_collection',\n    'schedule': crontab(minute='0', hour=0),\n}\n```\n\n### Step 4 - Maintain Alliance Auth\n\n- Run migrations `python manage.py migrate`\n- Gather your staticfiles `python manage.py collectstatic`\n- Restart your project `supervisorctl restart myauth:`\n\n### Step 5 - Pre-Load Django-EveUniverse\n\n- `python manage.py eveuniverse_load_data map` This will load Regions, Constellations and Solar Systems\n\n### Step 6 (Optional) - Further Pre-Load Django-EveUniverse\n\nThis is less required the more you have used eveuniverse in the past\n\n- `python manage.py eveuniverse_load_data ships --types-enabled-sections market_groups` This will load Ships, which are nearly universally on the market\n- `python manage.py eveuniverse_load_data structures`, this will load Structures for use in Filters\n- `python manage.py marketmanager_preload_common_eve_types` This will preload a series of Types using Groups and Categories I've analyzed to be popular on the market, please note this currently will not import MarketGroups until a market update is run for the first time, this may impact your ability to make SupplyConfigs immediately.\n\n### Step 7 - Configuration\n\nIn the Admin interface, visit `marketmanager` or `<AUTH-URL>/admin/marketmanager`\n\n### Public Market Configuration\n\nSelect the Regions you would like to pull Public Market Data for\n\n- Please note Jita (The Forge) is not trivial and will take several minutes to pull and process depending on your hardware.\n\n### TypeStatistics Calculation Configurations\n\nSelect the Regions you would like to calculate Percentiles, Medians and Weighted Averages for\n\n- We always calculate these stats across New Eden, but these will likely match Public Market Configuration or the regions where your Private Structures are located.\n- Supply Configs require The Forge selected to use The Forge(Jita) Relative Pricing.\n- An item must have a minimum amount of orders to be calculated (see settings)\n\n### Private Configs\n\nMap the appropriate tokens with Access to Docking and Market (this cant be assumed), to the right Structures And/Or Corps.\n\n## WatchConfig Types\n\nConfigure some supply alerts\n\n### Supply Check\n\n- Highlight Types (Items), that fail to meet a defined config\n- Volume of Items at given price in location\nExample. Warn if there is less than 1,000,000 Units of Oxygen Isotopes under 1,000 ISK/Unit, in 9KOE-A.\n\n### Bargain Finder WIP\n\n- Highlights Orders that meet a defined config.\nExample. Notify if Naglfars under 3,000,000,000 ISK/Unit are on sale in Curse NPC Stations\n\n### Scalp Checker WIP\n\n- Highlights Orders, that breach Jita/Universe price.\nExample. Notify Leadership that Ariel Rin is selling Nanite Repair Paste at over 500% Jita price in Staging.\n\n### Margin Check\n\n- Compares the lowest/highest orders in a source location to a destination.\n- Either Importing a market or Exporting with Buy/Sell order choices for both source and destination\n- Optionally can include a freight cost in calculations\n\n## Managed Watch Configs\n\n### Fittings\n\n- Managed By App = `fittings`\n- Managed App-Identifier = `fittings.fit.<FIT_ID>`\n- Managed App Reason = A user facing reason\n- ... a slightly limited subset of WatchConfig settings that will be replicated on each WatchConfig created.\n\n## Permissions\n\n| Perm | Admin Site  | Perm | Description |\n| --- | --- | --- | --- |\n| basic_market_browser | nill | Can access the Standard Market Browser | Can access the normal user facing market browser|\n| advanced_market_browser | nill | Can access the Advanced Market Browser | Can access the more advanced management browser with private details|\n| order_highlight_user | nill | Can access other character's data for own alliance. | Enables Highlighting a users own Orders in the Market Browser|\n| order_highlight_corporation | nill | Can access other character's data for own corp. | Enables Highlighting the orders of a users corporation in the Market Browser|\n| can_add_token_character | nill | Can add a Character Token with required scopes | Enables the \"Add Character Token\" button to request the needed scopes from a user|\n| can_add_token_corporation | nill | Can add a Corporation Token with required scopes | Enables the \"Add Corporation Token\" button to request the needed scopes from a user|\n\n## Settings\n\n| Name | Description | Default |\n| --- | --- | --- |\n|`MARKETMANAGER_CLEANUP_DAYS_STRUCTURE`| Number of days without an update, before considering a Structure stale and to be deleted | 30 |\n|`MARKETMANAGER_CLEANUP_DAYS_ORDER`| Number of days without an update, before considering an Order stale and to be deleted | 30|\n|`MARKETMANAGER_TASK_PRIORITY_ORDERS`| Celery task priority for Order tasks | 5|\n|`MARKETMANAGER_TASK_PRIORITY_STRUCTURES`| Celery task priority for Structure tasks | 4|\n|`MARKETMANAGER_TASK_PRIORITY_BACKGROUND`| Celery task priority for Background tasks | 7|\n|`MARKETMANAGER_TASK_PRIORITY_SUPPLY_CONFIGS`| Celery task priority for SupplyConfig tasks, This is Lower than Orders to ensure it runs while Orders are all up to date | 6|\n|`MARKETMANAGER_TASK_PRIORITY_PRICE_CONFIGS`| Celery task priority for PriceConfig tasks, This is Lower than Orders to ensure it runs while Orders are all up to date | 6|\n|`MARKETMANAGER_WEBHOOK_COLOUR_ERROR`| Webhook colour for Errors | 16711710|\n|`MARKETMANAGER_WEBHOOK_COLOUR_WARNING`| Webhook colour for Errors | 14177041|\n|`MARKETMANAGER_WEBHOOK_COLOUR_INFO`| Webhook colour for Errors  | 42751|\n|`MARKETMANAGER_WEBHOOK_COLOUR_SUCCESS`| Webhook colour for Success | 6684416|\n|`MARKETMANAGER_TYPESTATISTICS_MINIMUM_ORDER_COUNT` | Minimum number of Orders to exist before calculating Medians, Averages and Percentiles | 10 |\n\n## Third Party Integrations\n\nCreating Watch Configs from external applications is relatively straight forward and Market Manager provides an Optional Model for keeping track of these Watch Configs.\n\nHow an app maintains these Watch Configs is left to the developer, but Fittings provides a decent starting point using App Signals and referencing the Managed Watch Config model.\n\nmanaged_app should follow python referencing convention. `fittings`, `projectname.modulename`\nmanaged_app_identifier is up to the app, but i would suggest following from Fittings, `fittings.fit.{fit.id}`\nmanaged_app_reason is presented to users as to_why_ a managed config exists, `Standard MWD Eagle x50`\n\n```python\ndef marketmanager_active() -> bool:\n    return apps.is_installed(\"marketmanager\")\n\nif marketmanager_active():\n    from marketmanager.models import WatchConfig, ManagedAppConfig\n\n    # ...\n    # Maintain your Watch Configs here\n    # ...\n```\n\n- Fittings (Currently from Market Manager)\n  - Create and Maintain Watch Configs for x number of a Fit or Fits.\n\n## Contributing\n\nMake sure you have signed the [License Agreement](https://developers.eveonline.com/resource/license-agreement) by logging in at <https://developers.eveonline.com> before submitting any pull requests. All bug fixes or features must not include extra superfluous formatting changes.\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "AllianceAuth Market Management Tool",
    "version": "1.0.3",
    "project_urls": {
        "Homepage": "https://gitlab.com/tactical-supremacy/aa-market-manager",
        "Source": "https://gitlab.com/tactical-supremacy/aa-market-manager",
        "Tracker": "https://gitlab.com/tactical-supremacy/aa-market-manager/-/issues"
    },
    "split_keywords": [
        "allianceauth",
        " eveonline"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "738ea29fd70da6febc99e0613fb29c773456b5c78c895df87b4f6d28b0a090ff",
                "md5": "e7d8dd2adac0d587027743860b941669",
                "sha256": "57dcc052966fbe3122079d2b3f7459a903e863e1934afe85eb63b36d291e5d6f"
            },
            "downloads": -1,
            "filename": "aa_market_manager-1.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e7d8dd2adac0d587027743860b941669",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 160873,
            "upload_time": "2024-12-05T22:05:52",
            "upload_time_iso_8601": "2024-12-05T22:05:52.315188Z",
            "url": "https://files.pythonhosted.org/packages/73/8e/a29fd70da6febc99e0613fb29c773456b5c78c895df87b4f6d28b0a090ff/aa_market_manager-1.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ff0bfab220adb47500cb56022cdbdd8aad781cd3814545c476056c97111ce61",
                "md5": "2dd5d14e978aaa94355ca0c1fd63d41b",
                "sha256": "29996a95a1f2fa32063ef005d575b48e391289a799286ea3093aec8b44b5ac3c"
            },
            "downloads": -1,
            "filename": "aa_market_manager-1.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "2dd5d14e978aaa94355ca0c1fd63d41b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 88163,
            "upload_time": "2024-12-05T22:05:54",
            "upload_time_iso_8601": "2024-12-05T22:05:54.249712Z",
            "url": "https://files.pythonhosted.org/packages/3f/f0/bfab220adb47500cb56022cdbdd8aad781cd3814545c476056c97111ce61/aa_market_manager-1.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-05 22:05:54",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "tactical-supremacy",
    "gitlab_project": "aa-market-manager",
    "lcname": "aa-market-manager"
}
        
Elapsed time: 0.37441s