mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-06-01 08:01:22 +03:00
core plugins: Add big obvious comment about imports and windows installer
This commit is contained in:
parent
5aa7b98cf6
commit
ac7cfb9b14
@ -1,5 +1,27 @@
|
|||||||
"""Coriolis ship export."""
|
"""Coriolis ship export."""
|
||||||
|
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
#
|
||||||
|
# This is an EDMC 'core' plugin.
|
||||||
|
#
|
||||||
|
# All EDMC plugins are *dynamically* loaded at run-time.
|
||||||
|
#
|
||||||
|
# We build for Windows using `py2exe`.
|
||||||
|
#
|
||||||
|
# `py2exe` can't possibly know about anything in the dynamically loaded
|
||||||
|
# core plugins.
|
||||||
|
#
|
||||||
|
# Thus you **MUST** check if any imports you add in this file are only
|
||||||
|
# referenced in this file (or only in any other core plugin), and if so...
|
||||||
|
#
|
||||||
|
# YOU MUST ENSURE THAT PERTINENT ADJUSTMENTS ARE MADE IN `setup.py`
|
||||||
|
# SO AS TO ENSURE THE FILES ARE ACTUALLY PRESENT IN AN END-USER
|
||||||
|
# INSTALLATION ON WINDOWS.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
import base64
|
import base64
|
||||||
import gzip
|
import gzip
|
||||||
import io
|
import io
|
||||||
|
@ -23,6 +23,28 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
#
|
||||||
|
# This is an EDMC 'core' plugin.
|
||||||
|
#
|
||||||
|
# All EDMC plugins are *dynamically* loaded at run-time.
|
||||||
|
#
|
||||||
|
# We build for Windows using `py2exe`.
|
||||||
|
#
|
||||||
|
# `py2exe` can't possibly know about anything in the dynamically loaded
|
||||||
|
# core plugins.
|
||||||
|
#
|
||||||
|
# Thus you **MUST** check if any imports you add in this file are only
|
||||||
|
# referenced in this file (or only in any other core plugin), and if so...
|
||||||
|
#
|
||||||
|
# YOU MUST ENSURE THAT PERTINENT ADJUSTMENTS ARE MADE IN `setup.py`
|
||||||
|
# SO AS TO ENSURE THE FILES ARE ACTUALLY PRESENT IN AN END-USER
|
||||||
|
# INSTALLATION ON WINDOWS.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
import sys
|
import sys
|
||||||
from typing import TYPE_CHECKING, Any, Optional
|
from typing import TYPE_CHECKING, Any, Optional
|
||||||
|
|
||||||
|
@ -1,5 +1,27 @@
|
|||||||
"""Handle exporting data to EDDN."""
|
"""Handle exporting data to EDDN."""
|
||||||
|
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
#
|
||||||
|
# This is an EDMC 'core' plugin.
|
||||||
|
#
|
||||||
|
# All EDMC plugins are *dynamically* loaded at run-time.
|
||||||
|
#
|
||||||
|
# We build for Windows using `py2exe`.
|
||||||
|
#
|
||||||
|
# `py2exe` can't possibly know about anything in the dynamically loaded
|
||||||
|
# core plugins.
|
||||||
|
#
|
||||||
|
# Thus you **MUST** check if any imports you add in this file are only
|
||||||
|
# referenced in this file (or only in any other core plugin), and if so...
|
||||||
|
#
|
||||||
|
# YOU MUST ENSURE THAT PERTINENT ADJUSTMENTS ARE MADE IN `setup.py`
|
||||||
|
# SO AS TO ENSURE THE FILES ARE ACTUALLY PRESENT IN AN END-USER
|
||||||
|
# INSTALLATION ON WINDOWS.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
import itertools
|
import itertools
|
||||||
import json
|
import json
|
||||||
import pathlib
|
import pathlib
|
||||||
|
@ -9,6 +9,28 @@
|
|||||||
# 4) Ensure the EDSM API call(back) for setting the image at end of system
|
# 4) Ensure the EDSM API call(back) for setting the image at end of system
|
||||||
# text is always fired. i.e. CAPI cmdr_data() processing.
|
# text is always fired. i.e. CAPI cmdr_data() processing.
|
||||||
|
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
#
|
||||||
|
# This is an EDMC 'core' plugin.
|
||||||
|
#
|
||||||
|
# All EDMC plugins are *dynamically* loaded at run-time.
|
||||||
|
#
|
||||||
|
# We build for Windows using `py2exe`.
|
||||||
|
#
|
||||||
|
# `py2exe` can't possibly know about anything in the dynamically loaded
|
||||||
|
# core plugins.
|
||||||
|
#
|
||||||
|
# Thus you **MUST** check if any imports you add in this file are only
|
||||||
|
# referenced in this file (or only in any other core plugin), and if so...
|
||||||
|
#
|
||||||
|
# YOU MUST ENSURE THAT PERTINENT ADJUSTMENTS ARE MADE IN `setup.py`
|
||||||
|
# SO AS TO ENSURE THE FILES ARE ACTUALLY PRESENT IN AN END-USER
|
||||||
|
# INSTALLATION ON WINDOWS.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
import json
|
import json
|
||||||
import threading
|
import threading
|
||||||
import tkinter as tk
|
import tkinter as tk
|
||||||
|
@ -1,5 +1,27 @@
|
|||||||
# EDShipyard ship export
|
# EDShipyard ship export
|
||||||
|
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
#
|
||||||
|
# This is an EDMC 'core' plugin.
|
||||||
|
#
|
||||||
|
# All EDMC plugins are *dynamically* loaded at run-time.
|
||||||
|
#
|
||||||
|
# We build for Windows using `py2exe`.
|
||||||
|
#
|
||||||
|
# `py2exe` can't possibly know about anything in the dynamically loaded
|
||||||
|
# core plugins.
|
||||||
|
#
|
||||||
|
# Thus you **MUST** check if any imports you add in this file are only
|
||||||
|
# referenced in this file (or only in any other core plugin), and if so...
|
||||||
|
#
|
||||||
|
# YOU MUST ENSURE THAT PERTINENT ADJUSTMENTS ARE MADE IN `setup.py`
|
||||||
|
# SO AS TO ENSURE THE FILES ARE ACTUALLY PRESENT IN AN END-USER
|
||||||
|
# INSTALLATION ON WINDOWS.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
import base64
|
import base64
|
||||||
import gzip
|
import gzip
|
||||||
import json
|
import json
|
||||||
|
@ -1,5 +1,27 @@
|
|||||||
"""Inara Sync."""
|
"""Inara Sync."""
|
||||||
|
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
#
|
||||||
|
# This is an EDMC 'core' plugin.
|
||||||
|
#
|
||||||
|
# All EDMC plugins are *dynamically* loaded at run-time.
|
||||||
|
#
|
||||||
|
# We build for Windows using `py2exe`.
|
||||||
|
#
|
||||||
|
# `py2exe` can't possibly know about anything in the dynamically loaded
|
||||||
|
# core plugins.
|
||||||
|
#
|
||||||
|
# Thus you **MUST** check if any imports you add in this file are only
|
||||||
|
# referenced in this file (or only in any other core plugin), and if so...
|
||||||
|
#
|
||||||
|
# YOU MUST ENSURE THAT PERTINENT ADJUSTMENTS ARE MADE IN `setup.py`
|
||||||
|
# SO AS TO ENSURE THE FILES ARE ACTUALLY PRESENT IN AN END-USER
|
||||||
|
# INSTALLATION ON WINDOWS.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
|
# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $# ! $#
|
||||||
import json
|
import json
|
||||||
import threading
|
import threading
|
||||||
import time
|
import time
|
||||||
|
Loading…
x
Reference in New Issue
Block a user