diff --git a/README.md b/README.md index e69de29..7dffd37 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,110 @@ +# Enne2Engine + +Un semplice motore di gioco 2D sviluppato in Python con supporto per SDL2 e Pyglet. + +## Caratteristiche + +- Supporto per più backend grafici (SDL2, Pyglet) +- Sistema di rendering di sprite e tilesheet +- Gestione delle animazioni tramite file JSON +- Sistema di controllo utente e gestione eventi +- Trasformazioni di coordinate isometriche +- Sistema di selezione entità +- Gestione degli asset semplificata + +## Prerequisiti + +- Python 3.7+ +- SDL2 (per l'utilizzo del backend SDL2) +- Pyglet (per l'utilizzo del backend Pyglet) + +## Installazione + +1. Clona il repository: +```bash +git clone https://github.com/tuousername/enne2engine.git +cd enne2engine +``` + +2. Installa le dipendenze: +```bash +pip install -r requirements.txt +``` + +## Utilizzo + +### Avvio della demo + +Per avviare la demo con il backend SDL2 (predefinito): +```bash +python engine_demo.py +``` + +Per avviare la demo con il backend Pyglet: +```bash +python engine_demo.py --pyglet +``` + +### Creazione di un nuovo progetto + +```python +from enne2engine.sdl2_wrapper import SDL2Wrapper +from enne2engine.controls import UserControls + +class MioGioco(UserControls): + def __init__(self): + super().__init__() + self.graphics = SDL2Wrapper(self) + # Inizializzazione delle risorse e della logica di gioco + self.load_assets() + + def run(self): + running = True + while running: + event = self.graphics.handle_events() + if event == "QUIT": + running = False + + self.graphics.clear_screen() + # Logica di rendering + self.graphics.present_renderer() + + self.graphics.quit() + + def load_assets(self): + # Caricamento delle risorse + self.graphics.load_tilesheet("tiles", "assets/tiles/my_tiles.png") + self.graphics.load_spritesheet("player", "assets/player/player_animations.json") + +if __name__ == "__main__": + gioco = MioGioco() + gioco.run() +``` + +## Struttura del Progetto + +- `enne2engine/`: Moduli principali del motore + - `sdl2_wrapper.py`: Wrapper per SDL2 + - `pyglet_wrapper.py`: Wrapper per Pyglet + - `controls.py`: Sistema di gestione degli input utente +- `assets/`: Contiene gli asset di esempio + - `KnightBasic/`: Animazioni del cavaliere + - `tiles/`: Tileset di esempio +- `Entities/`: Definizioni delle entità di gioco +- `engine_demo.py`: Demo del motore + +## Gestione degli Asset + +Il motore supporta il caricamento di spritesheet e tilesheet: + +```python +# Caricamento di un tilesheet +graphics.load_tilesheet("tiles", "percorso/al/tilesheet.png") + +# Caricamento di un'animazione tramite file JSON +graphics.load_spritesheet("personaggio", "percorso/al/animazione.json") +``` + +## Licenza + +Questo progetto è rilasciato sotto la licenza [MIT](LICENSE). diff --git a/build/engine_demo/Analysis-00.toc b/build/engine_demo/Analysis-00.toc deleted file mode 100644 index 70f836b..0000000 --- a/build/engine_demo/Analysis-00.toc +++ /dev/null @@ -1,1651 +0,0 @@ -(['/home/enne2/Sviluppo/enne2engine/engine_demo.py'], - ['/home/enne2/Sviluppo/enne2engine'], - [], - [('/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/_pyinstaller_hooks_contrib/stdhooks', - -1000), - ('/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/_pyinstaller_hooks_contrib', - -1000)], - {}, - [], - [], - False, - {}, - 0, - [], - [], - '3.11.11 (main, Dec 3 2024, 00:00:00) [GCC 14.2.1 20240912 (Red Hat ' - '14.2.1-3)]', - [('pyi_rth_inspect', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py', - 'PYSOURCE'), - ('pyi_rth_pkgutil', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py', - 'PYSOURCE'), - ('pyi_rth_multiprocessing', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py', - 'PYSOURCE'), - ('engine_demo', - '/home/enne2/Sviluppo/enne2engine/engine_demo.py', - 'PYSOURCE')], - [('subprocess', '/usr/lib64/python3.11/subprocess.py', 'PYMODULE'), - ('selectors', '/usr/lib64/python3.11/selectors.py', 'PYMODULE'), - ('contextlib', '/usr/lib64/python3.11/contextlib.py', 'PYMODULE'), - ('threading', '/usr/lib64/python3.11/threading.py', 'PYMODULE'), - ('_threading_local', '/usr/lib64/python3.11/_threading_local.py', 'PYMODULE'), - ('signal', '/usr/lib64/python3.11/signal.py', 'PYMODULE'), - ('_strptime', '/usr/lib64/python3.11/_strptime.py', 'PYMODULE'), - ('datetime', '/usr/lib64/python3.11/datetime.py', 'PYMODULE'), - ('calendar', '/usr/lib64/python3.11/calendar.py', 'PYMODULE'), - ('argparse', '/usr/lib64/python3.11/argparse.py', 'PYMODULE'), - ('textwrap', '/usr/lib64/python3.11/textwrap.py', 'PYMODULE'), - ('shutil', '/usr/lib64/python3.11/shutil.py', 'PYMODULE'), - ('zipfile', '/usr/lib64/python3.11/zipfile.py', 'PYMODULE'), - ('py_compile', '/usr/lib64/python3.11/py_compile.py', 'PYMODULE'), - ('importlib.machinery', - '/usr/lib64/python3.11/importlib/machinery.py', - 'PYMODULE'), - ('importlib', '/usr/lib64/python3.11/importlib/__init__.py', 'PYMODULE'), - ('importlib._bootstrap', - '/usr/lib64/python3.11/importlib/_bootstrap.py', - 'PYMODULE'), - ('importlib._bootstrap_external', - '/usr/lib64/python3.11/importlib/_bootstrap_external.py', - 'PYMODULE'), - ('importlib.metadata', - '/usr/lib64/python3.11/importlib/metadata/__init__.py', - 'PYMODULE'), - ('typing', '/usr/lib64/python3.11/typing.py', 'PYMODULE'), - ('importlib.abc', '/usr/lib64/python3.11/importlib/abc.py', 'PYMODULE'), - ('importlib.resources.abc', - '/usr/lib64/python3.11/importlib/resources/abc.py', - 'PYMODULE'), - ('importlib.resources', - '/usr/lib64/python3.11/importlib/resources/__init__.py', - 'PYMODULE'), - ('importlib.resources._legacy', - '/usr/lib64/python3.11/importlib/resources/_legacy.py', - 'PYMODULE'), - ('importlib.resources._common', - '/usr/lib64/python3.11/importlib/resources/_common.py', - 'PYMODULE'), - ('importlib.resources._adapters', - '/usr/lib64/python3.11/importlib/resources/_adapters.py', - 'PYMODULE'), - ('tempfile', '/usr/lib64/python3.11/tempfile.py', 'PYMODULE'), - ('random', '/usr/lib64/python3.11/random.py', 'PYMODULE'), - ('statistics', '/usr/lib64/python3.11/statistics.py', 'PYMODULE'), - ('decimal', '/usr/lib64/python3.11/decimal.py', 'PYMODULE'), - ('_pydecimal', '/usr/lib64/python3.11/_pydecimal.py', 'PYMODULE'), - ('contextvars', '/usr/lib64/python3.11/contextvars.py', 'PYMODULE'), - ('fractions', '/usr/lib64/python3.11/fractions.py', 'PYMODULE'), - ('numbers', '/usr/lib64/python3.11/numbers.py', 'PYMODULE'), - ('hashlib', '/usr/lib64/python3.11/hashlib.py', 'PYMODULE'), - ('logging', '/usr/lib64/python3.11/logging/__init__.py', 'PYMODULE'), - ('pickle', '/usr/lib64/python3.11/pickle.py', 'PYMODULE'), - ('pprint', '/usr/lib64/python3.11/pprint.py', 'PYMODULE'), - ('dataclasses', '/usr/lib64/python3.11/dataclasses.py', 'PYMODULE'), - ('inspect', '/usr/lib64/python3.11/inspect.py', 'PYMODULE'), - ('token', '/usr/lib64/python3.11/token.py', 'PYMODULE'), - ('dis', '/usr/lib64/python3.11/dis.py', 'PYMODULE'), - ('opcode', '/usr/lib64/python3.11/opcode.py', 'PYMODULE'), - ('ast', '/usr/lib64/python3.11/ast.py', 'PYMODULE'), - ('_compat_pickle', '/usr/lib64/python3.11/_compat_pickle.py', 'PYMODULE'), - ('string', '/usr/lib64/python3.11/string.py', 'PYMODULE'), - ('bisect', '/usr/lib64/python3.11/bisect.py', 'PYMODULE'), - ('importlib._abc', '/usr/lib64/python3.11/importlib/_abc.py', 'PYMODULE'), - ('importlib.metadata._itertools', - '/usr/lib64/python3.11/importlib/metadata/_itertools.py', - 'PYMODULE'), - ('importlib.metadata._functools', - '/usr/lib64/python3.11/importlib/metadata/_functools.py', - 'PYMODULE'), - ('importlib.metadata._collections', - '/usr/lib64/python3.11/importlib/metadata/_collections.py', - 'PYMODULE'), - ('importlib.metadata._meta', - '/usr/lib64/python3.11/importlib/metadata/_meta.py', - 'PYMODULE'), - ('importlib.metadata._adapters', - '/usr/lib64/python3.11/importlib/metadata/_adapters.py', - 'PYMODULE'), - ('importlib.metadata._text', - '/usr/lib64/python3.11/importlib/metadata/_text.py', - 'PYMODULE'), - ('email.message', '/usr/lib64/python3.11/email/message.py', 'PYMODULE'), - ('email.policy', '/usr/lib64/python3.11/email/policy.py', 'PYMODULE'), - ('email.contentmanager', - '/usr/lib64/python3.11/email/contentmanager.py', - 'PYMODULE'), - ('email.quoprimime', '/usr/lib64/python3.11/email/quoprimime.py', 'PYMODULE'), - ('email.headerregistry', - '/usr/lib64/python3.11/email/headerregistry.py', - 'PYMODULE'), - ('email._header_value_parser', - '/usr/lib64/python3.11/email/_header_value_parser.py', - 'PYMODULE'), - ('urllib', '/usr/lib64/python3.11/urllib/__init__.py', 'PYMODULE'), - ('email.iterators', '/usr/lib64/python3.11/email/iterators.py', 'PYMODULE'), - ('email.generator', '/usr/lib64/python3.11/email/generator.py', 'PYMODULE'), - ('email._encoded_words', - '/usr/lib64/python3.11/email/_encoded_words.py', - 'PYMODULE'), - ('base64', '/usr/lib64/python3.11/base64.py', 'PYMODULE'), - ('getopt', '/usr/lib64/python3.11/getopt.py', 'PYMODULE'), - ('email.charset', '/usr/lib64/python3.11/email/charset.py', 'PYMODULE'), - ('email.encoders', '/usr/lib64/python3.11/email/encoders.py', 'PYMODULE'), - ('email.base64mime', '/usr/lib64/python3.11/email/base64mime.py', 'PYMODULE'), - ('email._policybase', - '/usr/lib64/python3.11/email/_policybase.py', - 'PYMODULE'), - ('email.header', '/usr/lib64/python3.11/email/header.py', 'PYMODULE'), - ('email.errors', '/usr/lib64/python3.11/email/errors.py', 'PYMODULE'), - ('email.utils', '/usr/lib64/python3.11/email/utils.py', 'PYMODULE'), - ('email._parseaddr', '/usr/lib64/python3.11/email/_parseaddr.py', 'PYMODULE'), - ('urllib.parse', '/usr/lib64/python3.11/urllib/parse.py', 'PYMODULE'), - ('ipaddress', '/usr/lib64/python3.11/ipaddress.py', 'PYMODULE'), - ('socket', '/usr/lib64/python3.11/socket.py', 'PYMODULE'), - ('quopri', '/usr/lib64/python3.11/quopri.py', 'PYMODULE'), - ('email', '/usr/lib64/python3.11/email/__init__.py', 'PYMODULE'), - ('email.parser', '/usr/lib64/python3.11/email/parser.py', 'PYMODULE'), - ('email.feedparser', '/usr/lib64/python3.11/email/feedparser.py', 'PYMODULE'), - ('csv', '/usr/lib64/python3.11/csv.py', 'PYMODULE'), - ('importlib.readers', - '/usr/lib64/python3.11/importlib/readers.py', - 'PYMODULE'), - ('importlib.resources.readers', - '/usr/lib64/python3.11/importlib/resources/readers.py', - 'PYMODULE'), - ('importlib.resources._itertools', - '/usr/lib64/python3.11/importlib/resources/_itertools.py', - 'PYMODULE'), - ('tokenize', '/usr/lib64/python3.11/tokenize.py', 'PYMODULE'), - ('pathlib', '/usr/lib64/python3.11/pathlib.py', 'PYMODULE'), - ('struct', '/usr/lib64/python3.11/struct.py', 'PYMODULE'), - ('importlib.util', '/usr/lib64/python3.11/importlib/util.py', 'PYMODULE'), - ('tarfile', '/usr/lib64/python3.11/tarfile.py', 'PYMODULE'), - ('gzip', '/usr/lib64/python3.11/gzip.py', 'PYMODULE'), - ('_compression', '/usr/lib64/python3.11/_compression.py', 'PYMODULE'), - ('lzma', '/usr/lib64/python3.11/lzma.py', 'PYMODULE'), - ('bz2', '/usr/lib64/python3.11/bz2.py', 'PYMODULE'), - ('fnmatch', '/usr/lib64/python3.11/fnmatch.py', 'PYMODULE'), - ('copy', '/usr/lib64/python3.11/copy.py', 'PYMODULE'), - ('gettext', '/usr/lib64/python3.11/gettext.py', 'PYMODULE'), - ('multiprocessing.spawn', - '/usr/lib64/python3.11/multiprocessing/spawn.py', - 'PYMODULE'), - ('multiprocessing.resource_tracker', - '/usr/lib64/python3.11/multiprocessing/resource_tracker.py', - 'PYMODULE'), - ('multiprocessing.util', - '/usr/lib64/python3.11/multiprocessing/util.py', - 'PYMODULE'), - ('multiprocessing.forkserver', - '/usr/lib64/python3.11/multiprocessing/forkserver.py', - 'PYMODULE'), - ('multiprocessing.connection', - '/usr/lib64/python3.11/multiprocessing/connection.py', - 'PYMODULE'), - ('multiprocessing.resource_sharer', - '/usr/lib64/python3.11/multiprocessing/resource_sharer.py', - 'PYMODULE'), - ('xmlrpc.client', '/usr/lib64/python3.11/xmlrpc/client.py', 'PYMODULE'), - ('xmlrpc', '/usr/lib64/python3.11/xmlrpc/__init__.py', 'PYMODULE'), - ('xml.parsers.expat', - '/usr/lib64/python3.11/xml/parsers/expat.py', - 'PYMODULE'), - ('xml.parsers', '/usr/lib64/python3.11/xml/parsers/__init__.py', 'PYMODULE'), - ('xml', '/usr/lib64/python3.11/xml/__init__.py', 'PYMODULE'), - ('xml.sax.expatreader', - '/usr/lib64/python3.11/xml/sax/expatreader.py', - 'PYMODULE'), - ('xml.sax.saxutils', '/usr/lib64/python3.11/xml/sax/saxutils.py', 'PYMODULE'), - ('urllib.request', '/usr/lib64/python3.11/urllib/request.py', 'PYMODULE'), - ('getpass', '/usr/lib64/python3.11/getpass.py', 'PYMODULE'), - ('nturl2path', '/usr/lib64/python3.11/nturl2path.py', 'PYMODULE'), - ('ftplib', '/usr/lib64/python3.11/ftplib.py', 'PYMODULE'), - ('netrc', '/usr/lib64/python3.11/netrc.py', 'PYMODULE'), - ('shlex', '/usr/lib64/python3.11/shlex.py', 'PYMODULE'), - ('mimetypes', '/usr/lib64/python3.11/mimetypes.py', 'PYMODULE'), - ('http.cookiejar', '/usr/lib64/python3.11/http/cookiejar.py', 'PYMODULE'), - ('http', '/usr/lib64/python3.11/http/__init__.py', 'PYMODULE'), - ('ssl', '/usr/lib64/python3.11/ssl.py', 'PYMODULE'), - ('urllib.response', '/usr/lib64/python3.11/urllib/response.py', 'PYMODULE'), - ('urllib.error', '/usr/lib64/python3.11/urllib/error.py', 'PYMODULE'), - ('xml.sax', '/usr/lib64/python3.11/xml/sax/__init__.py', 'PYMODULE'), - ('xml.sax.handler', '/usr/lib64/python3.11/xml/sax/handler.py', 'PYMODULE'), - ('xml.sax._exceptions', - '/usr/lib64/python3.11/xml/sax/_exceptions.py', - 'PYMODULE'), - ('xml.sax.xmlreader', - '/usr/lib64/python3.11/xml/sax/xmlreader.py', - 'PYMODULE'), - ('http.client', '/usr/lib64/python3.11/http/client.py', 'PYMODULE'), - ('hmac', '/usr/lib64/python3.11/hmac.py', 'PYMODULE'), - ('multiprocessing.context', - '/usr/lib64/python3.11/multiprocessing/context.py', - 'PYMODULE'), - ('multiprocessing.popen_spawn_win32', - '/usr/lib64/python3.11/multiprocessing/popen_spawn_win32.py', - 'PYMODULE'), - ('multiprocessing.popen_forkserver', - '/usr/lib64/python3.11/multiprocessing/popen_forkserver.py', - 'PYMODULE'), - ('multiprocessing.popen_spawn_posix', - '/usr/lib64/python3.11/multiprocessing/popen_spawn_posix.py', - 'PYMODULE'), - ('multiprocessing.popen_fork', - '/usr/lib64/python3.11/multiprocessing/popen_fork.py', - 'PYMODULE'), - ('multiprocessing.sharedctypes', - '/usr/lib64/python3.11/multiprocessing/sharedctypes.py', - 'PYMODULE'), - ('multiprocessing.heap', - '/usr/lib64/python3.11/multiprocessing/heap.py', - 'PYMODULE'), - ('ctypes', '/usr/lib64/python3.11/ctypes/__init__.py', 'PYMODULE'), - ('ctypes._endian', '/usr/lib64/python3.11/ctypes/_endian.py', 'PYMODULE'), - ('multiprocessing.pool', - '/usr/lib64/python3.11/multiprocessing/pool.py', - 'PYMODULE'), - ('multiprocessing.dummy', - '/usr/lib64/python3.11/multiprocessing/dummy/__init__.py', - 'PYMODULE'), - ('multiprocessing.dummy.connection', - '/usr/lib64/python3.11/multiprocessing/dummy/connection.py', - 'PYMODULE'), - ('queue', '/usr/lib64/python3.11/queue.py', 'PYMODULE'), - ('multiprocessing.queues', - '/usr/lib64/python3.11/multiprocessing/queues.py', - 'PYMODULE'), - ('multiprocessing.synchronize', - '/usr/lib64/python3.11/multiprocessing/synchronize.py', - 'PYMODULE'), - ('multiprocessing.managers', - '/usr/lib64/python3.11/multiprocessing/managers.py', - 'PYMODULE'), - ('multiprocessing.shared_memory', - '/usr/lib64/python3.11/multiprocessing/shared_memory.py', - 'PYMODULE'), - ('secrets', '/usr/lib64/python3.11/secrets.py', 'PYMODULE'), - ('multiprocessing.reduction', - '/usr/lib64/python3.11/multiprocessing/reduction.py', - 'PYMODULE'), - ('multiprocessing.process', - '/usr/lib64/python3.11/multiprocessing/process.py', - 'PYMODULE'), - ('runpy', '/usr/lib64/python3.11/runpy.py', 'PYMODULE'), - ('pkgutil', '/usr/lib64/python3.11/pkgutil.py', 'PYMODULE'), - ('zipimport', '/usr/lib64/python3.11/zipimport.py', 'PYMODULE'), - ('multiprocessing', - '/usr/lib64/python3.11/multiprocessing/__init__.py', - 'PYMODULE'), - ('tracemalloc', '/usr/lib64/python3.11/tracemalloc.py', 'PYMODULE'), - ('_py_abc', '/usr/lib64/python3.11/_py_abc.py', 'PYMODULE'), - ('stringprep', '/usr/lib64/python3.11/stringprep.py', 'PYMODULE'), - ('enne2engine.Entities.entity', - '/home/enne2/Sviluppo/enne2engine/enne2engine/Entities/entity.py', - 'PYMODULE'), - ('enne2engine.Entities', - '/home/enne2/Sviluppo/enne2engine/enne2engine/Entities/__init__.py', - 'PYMODULE'), - ('enne2engine', '-', 'PYMODULE'), - ('enne2engine.controls', - '/home/enne2/Sviluppo/enne2engine/enne2engine/controls.py', - 'PYMODULE'), - ('json', '/usr/lib64/python3.11/json/__init__.py', 'PYMODULE'), - ('json.encoder', '/usr/lib64/python3.11/json/encoder.py', 'PYMODULE'), - ('json.decoder', '/usr/lib64/python3.11/json/decoder.py', 'PYMODULE'), - ('json.scanner', '/usr/lib64/python3.11/json/scanner.py', 'PYMODULE'), - ('enne2engine.pyglet_wrapper', - '/home/enne2/Sviluppo/enne2engine/enne2engine/pyglet_wrapper.py', - 'PYMODULE'), - ('enne2engine.tilemanager', - '/home/enne2/Sviluppo/enne2engine/enne2engine/tilemanager.py', - 'PYMODULE'), - ('xml.etree.ElementTree', - '/usr/lib64/python3.11/xml/etree/ElementTree.py', - 'PYMODULE'), - ('xml.etree.cElementTree', - '/usr/lib64/python3.11/xml/etree/cElementTree.py', - 'PYMODULE'), - ('xml.etree.ElementInclude', - '/usr/lib64/python3.11/xml/etree/ElementInclude.py', - 'PYMODULE'), - ('xml.etree.ElementPath', - '/usr/lib64/python3.11/xml/etree/ElementPath.py', - 'PYMODULE'), - ('xml.etree', '/usr/lib64/python3.11/xml/etree/__init__.py', 'PYMODULE'), - ('pyglet', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/__init__.py', - 'PYMODULE'), - ('pyglet.window', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/__init__.py', - 'PYMODULE'), - ('pyglet.window.xlib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/xlib/__init__.py', - 'PYMODULE'), - ('pyglet.libs.x11.xsync', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/x11/xsync.py', - 'PYMODULE'), - ('pyglet.gl.xlib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/xlib.py', - 'PYMODULE'), - ('pyglet.gl.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/base.py', - 'PYMODULE'), - ('pyglet.gl.gl_info', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/gl_info.py', - 'PYMODULE'), - ('pyglet.gl.gl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/gl.py', - 'PYMODULE'), - ('pyglet.gl.lib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/lib.py', - 'PYMODULE'), - ('pyglet.gl.lib_glx', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/lib_glx.py', - 'PYMODULE'), - ('pyglet.gl.lib_agl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/lib_agl.py', - 'PYMODULE'), - ('pyglet.gl.lib_wgl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/lib_wgl.py', - 'PYMODULE'), - ('pyglet.gl.glxext_mesa', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/glxext_mesa.py', - 'PYMODULE'), - ('pyglet.gl.glxext_arb', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/glxext_arb.py', - 'PYMODULE'), - ('pyglet.gl.glx_info', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/glx_info.py', - 'PYMODULE'), - ('pyglet.gl.glx', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/glx.py', - 'PYMODULE'), - ('pyglet.util', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/util.py', - 'PYMODULE'), - ('pyglet.libs.x11.xlib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/x11/xlib.py', - 'PYMODULE'), - ('pyglet.libs.x11.cursorfont', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/x11/cursorfont.py', - 'PYMODULE'), - ('pyglet.libs.x11', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/x11/__init__.py', - 'PYMODULE'), - ('pyglet.libs.x11.xinput', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/x11/xinput.py', - 'PYMODULE'), - ('pyglet.libs.x11.xinerama', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/x11/xinerama.py', - 'PYMODULE'), - ('pyglet.libs.x11.xf86vmode', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/x11/xf86vmode.py', - 'PYMODULE'), - ('pyglet.libs', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/__init__.py', - 'PYMODULE'), - ('pyglet.canvas.xlib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/canvas/xlib.py', - 'PYMODULE'), - ('pyglet.canvas.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/canvas/base.py', - 'PYMODULE'), - ('pyglet.canvas.xlib_vidmoderestore', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/canvas/xlib_vidmoderestore.py', - 'PYMODULE'), - ('pyglet.app.xlib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/app/xlib.py', - 'PYMODULE'), - ('pyglet.app.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/app/base.py', - 'PYMODULE'), - ('pyglet.window.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/win32/__init__.py', - 'PYMODULE'), - ('pyglet.canvas.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/canvas/win32.py', - 'PYMODULE'), - ('pyglet.libs.win32.context_managers', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/context_managers.py', - 'PYMODULE'), - ('pyglet.libs.win32.winkey', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/winkey.py', - 'PYMODULE'), - ('pyglet.libs.win32.types', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/types.py', - 'PYMODULE'), - ('pyglet.libs.win32.com', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/com.py', - 'PYMODULE'), - ('pyglet.libs.win32.constants', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/constants.py', - 'PYMODULE'), - ('pyglet.libs.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/__init__.py', - 'PYMODULE'), - ('pyglet.libs.win32.libwintab', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/libwintab.py', - 'PYMODULE'), - ('pyglet.libs.win32.dinput', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/dinput.py', - 'PYMODULE'), - ('ctypes.wintypes', '/usr/lib64/python3.11/ctypes/wintypes.py', 'PYMODULE'), - ('pyglet.window.cocoa', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/cocoa/__init__.py', - 'PYMODULE'), - ('pyglet.gl.cocoa', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/cocoa.py', - 'PYMODULE'), - ('platform', '/usr/lib64/python3.11/platform.py', 'PYMODULE'), - ('pyglet.window.cocoa.systemcursor', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/cocoa/systemcursor.py', - 'PYMODULE'), - ('pyglet.window.cocoa.pyglet_window', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/cocoa/pyglet_window.py', - 'PYMODULE'), - ('pyglet.window.cocoa.pyglet_view', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/cocoa/pyglet_view.py', - 'PYMODULE'), - ('pyglet.libs.darwin.quartzkey', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/darwin/quartzkey.py', - 'PYMODULE'), - ('pyglet.window.cocoa.pyglet_delegate', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/cocoa/pyglet_delegate.py', - 'PYMODULE'), - ('pyglet.window.cocoa.pyglet_textview', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/cocoa/pyglet_textview.py', - 'PYMODULE'), - ('pyglet.libs.darwin.cocoapy', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/darwin/cocoapy/__init__.py', - 'PYMODULE'), - ('pyglet.libs.darwin.cocoapy.cocoalibs', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/darwin/cocoapy/cocoalibs.py', - 'PYMODULE'), - ('ctypes.util', '/usr/lib64/python3.11/ctypes/util.py', 'PYMODULE'), - ('ctypes._aix', '/usr/lib64/python3.11/ctypes/_aix.py', 'PYMODULE'), - ('ctypes.macholib.dyld', - '/usr/lib64/python3.11/ctypes/macholib/dyld.py', - 'PYMODULE'), - ('ctypes.macholib', - '/usr/lib64/python3.11/ctypes/macholib/__init__.py', - 'PYMODULE'), - ('ctypes.macholib.dylib', - '/usr/lib64/python3.11/ctypes/macholib/dylib.py', - 'PYMODULE'), - ('ctypes.macholib.framework', - '/usr/lib64/python3.11/ctypes/macholib/framework.py', - 'PYMODULE'), - ('pyglet.libs.darwin.cocoapy.cocoatypes', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/darwin/cocoapy/cocoatypes.py', - 'PYMODULE'), - ('pyglet.libs.darwin.cocoapy.runtime', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/darwin/cocoapy/runtime.py', - 'PYMODULE'), - ('pyglet.libs.darwin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/darwin/__init__.py', - 'PYMODULE'), - ('pyglet.canvas.cocoa', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/canvas/cocoa.py', - 'PYMODULE'), - ('pyglet.window.headless', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/headless/__init__.py', - 'PYMODULE'), - ('pyglet.libs.egl.egl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/egl/egl.py', - 'PYMODULE'), - ('pyglet.libs.egl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/egl/__init__.py', - 'PYMODULE'), - ('pyglet.libs.egl.eglext', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/egl/eglext.py', - 'PYMODULE'), - ('pyglet.libs.egl.lib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/egl/lib.py', - 'PYMODULE'), - ('pyglet.canvas.headless', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/canvas/headless.py', - 'PYMODULE'), - ('pyglet.window.event', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/event.py', - 'PYMODULE'), - ('pyglet.graphics.shader', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/graphics/shader.py', - 'PYMODULE'), - ('pyglet.graphics.vertexdomain', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/graphics/vertexdomain.py', - 'PYMODULE'), - ('pyglet.graphics.vertexarray', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/graphics/vertexarray.py', - 'PYMODULE'), - ('pyglet.graphics.allocation', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/graphics/allocation.py', - 'PYMODULE'), - ('pyglet.graphics.vertexbuffer', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/graphics/vertexbuffer.py', - 'PYMODULE'), - ('pyglet.window.mouse', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/mouse.py', - 'PYMODULE'), - ('pyglet.window.key', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/key.py', - 'PYMODULE'), - ('pyglet.text', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/__init__.py', - 'PYMODULE'), - ('pyglet.text.formats.attributed', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/formats/attributed.py', - 'PYMODULE'), - ('pyglet.text.formats.html', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/formats/html.py', - 'PYMODULE'), - ('pyglet.text.formats.structured', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/formats/structured.py', - 'PYMODULE'), - ('html.parser', '/usr/lib64/python3.11/html/parser.py', 'PYMODULE'), - ('_markupbase', '/usr/lib64/python3.11/_markupbase.py', 'PYMODULE'), - ('html.entities', '/usr/lib64/python3.11/html/entities.py', 'PYMODULE'), - ('html', '/usr/lib64/python3.11/html/__init__.py', 'PYMODULE'), - ('pyglet.text.formats.plaintext', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/formats/plaintext.py', - 'PYMODULE'), - ('pyglet.text.formats', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/formats/__init__.py', - 'PYMODULE'), - ('pyglet.text.layout', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/layout/__init__.py', - 'PYMODULE'), - ('pyglet.text.layout.scrolling', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/layout/scrolling.py', - 'PYMODULE'), - ('pyglet.text.layout.incremental', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/layout/incremental.py', - 'PYMODULE'), - ('pyglet.font.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/base.py', - 'PYMODULE'), - ('pyglet.text.layout.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/layout/base.py', - 'PYMODULE'), - ('pyglet.text.document', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/document.py', - 'PYMODULE'), - ('pyglet.text.caret', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/caret.py', - 'PYMODULE'), - ('pyglet.text.runlist', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/runlist.py', - 'PYMODULE'), - ('pyglet.sprite', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/sprite.py', - 'PYMODULE'), - ('pyglet.shapes', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/shapes.py', - 'PYMODULE'), - ('pyglet.extlibs.earcut', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/extlibs/earcut.py', - 'PYMODULE'), - ('pyglet.extlibs', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/extlibs/__init__.py', - 'PYMODULE'), - ('pyglet.resource', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/resource.py', - 'PYMODULE'), - ('pyglet.media.codecs', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/__init__.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg_lib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg_lib/__init__.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg_lib.libswscale', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg_lib/libswscale.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg_lib.libswresample', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg_lib/libswresample.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg_lib.libavformat', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg_lib/libavformat.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg_lib.libavcodec', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg_lib/libavcodec.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg_lib.libavutil', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg_lib/libavutil.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg_lib.compat', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg_lib/compat.py', - 'PYMODULE'), - ('pyglet.media.codecs.coreaudio', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/coreaudio.py', - 'PYMODULE'), - ('pyglet.libs.darwin.coreaudio', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/darwin/coreaudio.py', - 'PYMODULE'), - ('pyglet.media.codecs.pyogg', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/pyogg.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg.py', - 'PYMODULE'), - ('pyglet.media.exceptions', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/exceptions.py', - 'PYMODULE'), - ('pyglet.media.codecs.wmf', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/wmf.py', - 'PYMODULE'), - ('pyglet.media.codecs.gstreamer', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/gstreamer.py', - 'PYMODULE'), - ('pyglet.media.codecs.wave', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/wave.py', - 'PYMODULE'), - ('wave', '/usr/lib64/python3.11/wave.py', 'PYMODULE'), - ('pyglet.media.codecs.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/base.py', - 'PYMODULE'), - ('pyglet.media.player', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/player.py', - 'PYMODULE'), - ('pyglet.media.drivers', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/__init__.py', - 'PYMODULE'), - ('pyglet.media.drivers.openal', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/openal/__init__.py', - 'PYMODULE'), - ('pyglet.media.drivers.openal.adaptation', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/openal/adaptation.py', - 'PYMODULE'), - ('pyglet.media.player_worker_thread', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/player_worker_thread.py', - 'PYMODULE'), - ('pyglet.media.drivers.listener', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/listener.py', - 'PYMODULE'), - ('pyglet.media.drivers.openal.interface', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/openal/interface.py', - 'PYMODULE'), - ('pyglet.media.drivers.openal.lib_alc', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/openal/lib_alc.py', - 'PYMODULE'), - ('pyglet.media.drivers.openal.lib_openal', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/openal/lib_openal.py', - 'PYMODULE'), - ('pyglet.media.drivers.directsound', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/directsound/__init__.py', - 'PYMODULE'), - ('pyglet.media.drivers.directsound.exceptions', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/directsound/exceptions.py', - 'PYMODULE'), - ('pyglet.media.drivers.directsound.adaptation', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/directsound/adaptation.py', - 'PYMODULE'), - ('pyglet.media.drivers.directsound.interface', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/directsound/interface.py', - 'PYMODULE'), - ('pyglet.media.drivers.directsound.lib_dsound', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/directsound/lib_dsound.py', - 'PYMODULE'), - ('pyglet.media.drivers.xaudio2', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/xaudio2/__init__.py', - 'PYMODULE'), - ('pyglet.media.drivers.xaudio2.adaptation', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/xaudio2/adaptation.py', - 'PYMODULE'), - ('pyglet.media.drivers.xaudio2.interface', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/xaudio2/interface.py', - 'PYMODULE'), - ('pyglet.media.devices', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/devices/__init__.py', - 'PYMODULE'), - ('pyglet.media.devices.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/devices/win32.py', - 'PYMODULE'), - ('pyglet.media.devices.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/devices/base.py', - 'PYMODULE'), - ('pyglet.media.drivers.xaudio2.lib_xaudio2', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/xaudio2/lib_xaudio2.py', - 'PYMODULE'), - ('pyglet.media.drivers.pulse', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/pulse/__init__.py', - 'PYMODULE'), - ('pyglet.media.drivers.pulse.adaptation', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/pulse/adaptation.py', - 'PYMODULE'), - ('pyglet.media.drivers.pulse.interface', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/pulse/interface.py', - 'PYMODULE'), - ('pyglet.media.drivers.pulse.lib_pulseaudio', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/pulse/lib_pulseaudio.py', - 'PYMODULE'), - ('pyglet.media.drivers.silent', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/silent/__init__.py', - 'PYMODULE'), - ('pyglet.media.drivers.silent.adaptation', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/silent/adaptation.py', - 'PYMODULE'), - ('pyglet.media.buffered_logger', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/buffered_logger.py', - 'PYMODULE'), - ('pyglet.media.drivers.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/base.py', - 'PYMODULE'), - ('pyglet.image.atlas', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/atlas.py', - 'PYMODULE'), - ('pyglet.image.animation', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/animation.py', - 'PYMODULE'), - ('pyglet.model', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/model/__init__.py', - 'PYMODULE'), - ('pyglet.model.codecs', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/model/codecs/__init__.py', - 'PYMODULE'), - ('pyglet.model.codecs.obj', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/model/codecs/obj.py', - 'PYMODULE'), - ('pyglet.media', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/__init__.py', - 'PYMODULE'), - ('pyglet.media.synthesis', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/synthesis.py', - 'PYMODULE'), - ('pyglet.math', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/math.py', - 'PYMODULE'), - ('pyglet.lib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/lib.py', - 'PYMODULE'), - ('pyglet.input', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/__init__.py', - 'PYMODULE'), - ('pyglet.input.macos', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/macos/__init__.py', - 'PYMODULE'), - ('pyglet.input.macos.darwin_hid', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/macos/darwin_hid.py', - 'PYMODULE'), - ('pyglet.input.controller', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/controller.py', - 'PYMODULE'), - ('pyglet.input.controller_db', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/controller_db.py', - 'PYMODULE'), - ('pyglet.input.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/win32/__init__.py', - 'PYMODULE'), - ('pyglet.input.win32.xinput', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/win32/xinput.py', - 'PYMODULE'), - ('pyglet.input.win32.wintab', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/win32/wintab.py', - 'PYMODULE'), - ('pyglet.input.win32.directinput', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/win32/directinput.py', - 'PYMODULE'), - ('pyglet.input.linux', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/linux/__init__.py', - 'PYMODULE'), - ('pyglet.input.linux.x11_xinput', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/linux/x11_xinput.py', - 'PYMODULE'), - ('pyglet.input.linux.x11_xinput_tablet', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/linux/x11_xinput_tablet.py', - 'PYMODULE'), - ('pyglet.input.linux.evdev', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/linux/evdev.py', - 'PYMODULE'), - ('pyglet.libs.ioctl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/ioctl.py', - 'PYMODULE'), - ('pyglet.input.linux.evdev_constants', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/linux/evdev_constants.py', - 'PYMODULE'), - ('concurrent.futures', - '/usr/lib64/python3.11/concurrent/futures/__init__.py', - 'PYMODULE'), - ('concurrent.futures.thread', - '/usr/lib64/python3.11/concurrent/futures/thread.py', - 'PYMODULE'), - ('concurrent.futures.process', - '/usr/lib64/python3.11/concurrent/futures/process.py', - 'PYMODULE'), - ('concurrent.futures._base', - '/usr/lib64/python3.11/concurrent/futures/_base.py', - 'PYMODULE'), - ('concurrent', '/usr/lib64/python3.11/concurrent/__init__.py', 'PYMODULE'), - ('pyglet.input.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/base.py', - 'PYMODULE'), - ('pyglet.gui', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gui/__init__.py', - 'PYMODULE'), - ('pyglet.gui.ninepatch', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gui/ninepatch.py', - 'PYMODULE'), - ('pyglet.gui.frame', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gui/frame.py', - 'PYMODULE'), - ('pyglet.gui.widgets', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gui/widgets.py', - 'PYMODULE'), - ('pyglet.graphics', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/graphics/__init__.py', - 'PYMODULE'), - ('pyglet.font', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/__init__.py', - 'PYMODULE'), - ('pyglet.font.freetype', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/freetype.py', - 'PYMODULE'), - ('pyglet.font.freetype_lib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/freetype_lib.py', - 'PYMODULE'), - ('pyglet.font.fontconfig', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/fontconfig.py', - 'PYMODULE'), - ('pyglet.font.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/win32.py', - 'PYMODULE'), - ('pyglet.image.codecs.gdiplus', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/gdiplus.py', - 'PYMODULE'), - ('pyglet.image.codecs', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/__init__.py', - 'PYMODULE'), - ('pyglet.image.codecs.bmp', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/bmp.py', - 'PYMODULE'), - ('pyglet.image.codecs.png', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/png.py', - 'PYMODULE'), - ('pyglet.extlibs.png', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/extlibs/png.py', - 'PYMODULE'), - ('pyglet.image.codecs.pil', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/pil.py', - 'PYMODULE'), - ('PIL.Image', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/Image.py', - 'PYMODULE'), - ('PIL.XpmImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/XpmImagePlugin.py', - 'PYMODULE'), - ('PIL.XbmImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/XbmImagePlugin.py', - 'PYMODULE'), - ('PIL.XVThumbImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/XVThumbImagePlugin.py', - 'PYMODULE'), - ('PIL.WmfImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/WmfImagePlugin.py', - 'PYMODULE'), - ('PIL.WebPImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/WebPImagePlugin.py', - 'PYMODULE'), - ('PIL.TgaImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/TgaImagePlugin.py', - 'PYMODULE'), - ('PIL.SunImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/SunImagePlugin.py', - 'PYMODULE'), - ('PIL.SpiderImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/SpiderImagePlugin.py', - 'PYMODULE'), - ('PIL.ImageTk', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageTk.py', - 'PYMODULE'), - ('PIL.SgiImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/SgiImagePlugin.py', - 'PYMODULE'), - ('PIL.QoiImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/QoiImagePlugin.py', - 'PYMODULE'), - ('PIL.PsdImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PsdImagePlugin.py', - 'PYMODULE'), - ('PIL.PixarImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PixarImagePlugin.py', - 'PYMODULE'), - ('PIL.PdfImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PdfImagePlugin.py', - 'PYMODULE'), - ('PIL.features', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/features.py', - 'PYMODULE'), - ('PIL.PdfParser', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PdfParser.py', - 'PYMODULE'), - ('PIL.ImageSequence', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageSequence.py', - 'PYMODULE'), - ('PIL.PcxImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PcxImagePlugin.py', - 'PYMODULE'), - ('PIL.PcdImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PcdImagePlugin.py', - 'PYMODULE'), - ('PIL.PalmImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PalmImagePlugin.py', - 'PYMODULE'), - ('PIL.MspImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/MspImagePlugin.py', - 'PYMODULE'), - ('PIL.MpoImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/MpoImagePlugin.py', - 'PYMODULE'), - ('PIL.MpegImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/MpegImagePlugin.py', - 'PYMODULE'), - ('PIL.MicImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/MicImagePlugin.py', - 'PYMODULE'), - ('PIL.McIdasImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/McIdasImagePlugin.py', - 'PYMODULE'), - ('PIL.Jpeg2KImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/Jpeg2KImagePlugin.py', - 'PYMODULE'), - ('PIL.IptcImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/IptcImagePlugin.py', - 'PYMODULE'), - ('PIL.ImtImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImtImagePlugin.py', - 'PYMODULE'), - ('PIL.ImImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImImagePlugin.py', - 'PYMODULE'), - ('PIL.IcoImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/IcoImagePlugin.py', - 'PYMODULE'), - ('PIL.IcnsImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/IcnsImagePlugin.py', - 'PYMODULE'), - ('PIL.Hdf5StubImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/Hdf5StubImagePlugin.py', - 'PYMODULE'), - ('PIL.GribStubImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/GribStubImagePlugin.py', - 'PYMODULE'), - ('PIL.GbrImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/GbrImagePlugin.py', - 'PYMODULE'), - ('PIL.FtexImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/FtexImagePlugin.py', - 'PYMODULE'), - ('PIL.FpxImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/FpxImagePlugin.py', - 'PYMODULE'), - ('PIL.FliImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/FliImagePlugin.py', - 'PYMODULE'), - ('PIL.FitsImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/FitsImagePlugin.py', - 'PYMODULE'), - ('PIL.EpsImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/EpsImagePlugin.py', - 'PYMODULE'), - ('PIL.DdsImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/DdsImagePlugin.py', - 'PYMODULE'), - ('PIL.DcxImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/DcxImagePlugin.py', - 'PYMODULE'), - ('PIL.CurImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/CurImagePlugin.py', - 'PYMODULE'), - ('PIL.BufrStubImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/BufrStubImagePlugin.py', - 'PYMODULE'), - ('PIL.BlpImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/BlpImagePlugin.py', - 'PYMODULE'), - ('PIL.ImageShow', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageShow.py', - 'PYMODULE'), - ('PIL.ImageColor', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageColor.py', - 'PYMODULE'), - ('colorsys', '/usr/lib64/python3.11/colorsys.py', 'PYMODULE'), - ('PIL.ImageCms', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageCms.py', - 'PYMODULE'), - ('PIL.ImageWin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageWin.py', - 'PYMODULE'), - ('PIL.PngImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PngImagePlugin.py', - 'PYMODULE'), - ('PIL.ImageChops', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageChops.py', - 'PYMODULE'), - ('PIL.PpmImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PpmImagePlugin.py', - 'PYMODULE'), - ('PIL.JpegImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/JpegImagePlugin.py', - 'PYMODULE'), - ('PIL.JpegPresets', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/JpegPresets.py', - 'PYMODULE'), - ('PIL.GifImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/GifImagePlugin.py', - 'PYMODULE'), - ('PIL.ImageOps', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageOps.py', - 'PYMODULE'), - ('PIL.ImageMath', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageMath.py', - 'PYMODULE'), - ('PIL.BmpImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/BmpImagePlugin.py', - 'PYMODULE'), - ('PIL._typing', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_typing.py', - 'PYMODULE'), - ('PIL.TiffImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/TiffImagePlugin.py', - 'PYMODULE'), - ('PIL.ImageQt', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageQt.py', - 'PYMODULE'), - ('PIL.ImagePalette', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImagePalette.py', - 'PYMODULE'), - ('PIL.PaletteFile', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PaletteFile.py', - 'PYMODULE'), - ('PIL.GimpPaletteFile', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/GimpPaletteFile.py', - 'PYMODULE'), - ('PIL.GimpGradientFile', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/GimpGradientFile.py', - 'PYMODULE'), - ('PIL.ImageFilter', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageFilter.py', - 'PYMODULE'), - ('PIL.ImageFile', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageFile.py', - 'PYMODULE'), - ('PIL._util', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_util.py', - 'PYMODULE'), - ('PIL._deprecate', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_deprecate.py', - 'PYMODULE'), - ('PIL._binary', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_binary.py', - 'PYMODULE'), - ('PIL.TiffTags', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/TiffTags.py', - 'PYMODULE'), - ('PIL.ImageMode', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageMode.py', - 'PYMODULE'), - ('PIL.ExifTags', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ExifTags.py', - 'PYMODULE'), - ('PIL', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/__init__.py', - 'PYMODULE'), - ('PIL._version', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_version.py', - 'PYMODULE'), - ('pyglet.image.codecs.gdkpixbuf2', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/gdkpixbuf2.py', - 'PYMODULE'), - ('pyglet.image.codecs.gif', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/gif.py', - 'PYMODULE'), - ('pyglet.image.codecs.wic', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/wic.py', - 'PYMODULE'), - ('pyglet.image.codecs.quartz', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/quartz.py', - 'PYMODULE'), - ('pyglet.image.codecs.dds', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/dds.py', - 'PYMODULE'), - ('pyglet.image.codecs.s3tc', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/s3tc.py', - 'PYMODULE'), - ('pyglet.font.directwrite', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/directwrite.py', - 'PYMODULE'), - ('pyglet.font.quartz', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/quartz.py', - 'PYMODULE'), - ('pyglet.font.user', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/user.py', - 'PYMODULE'), - ('pyglet.customtypes', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/customtypes.py', - 'PYMODULE'), - ('pyglet.canvas', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/canvas/__init__.py', - 'PYMODULE'), - ('pyglet.app', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/app/__init__.py', - 'PYMODULE'), - ('pyglet.app.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/app/win32.py', - 'PYMODULE'), - ('pyglet.app.cocoa', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/app/cocoa.py', - 'PYMODULE'), - ('pyglet.image', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/__init__.py', - 'PYMODULE'), - ('pyglet.image.buffer', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/buffer.py', - 'PYMODULE'), - ('pyglet.gl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/__init__.py', - 'PYMODULE'), - ('pyglet.gl.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/win32.py', - 'PYMODULE'), - ('pyglet.gl.wglext_arb', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/wglext_arb.py', - 'PYMODULE'), - ('pyglet.gl.wgl_info', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/wgl_info.py', - 'PYMODULE'), - ('pyglet.gl.wgl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/wgl.py', - 'PYMODULE'), - ('pyglet.gl.headless', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/headless.py', - 'PYMODULE'), - ('pyglet.gl.gl_compat', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/gl_compat.py', - 'PYMODULE'), - ('pyglet.event', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/event.py', - 'PYMODULE'), - ('pyglet.clock', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/clock.py', - 'PYMODULE'), - ('__future__', '/usr/lib64/python3.11/__future__.py', 'PYMODULE'), - ('enne2engine.sdl2_wrapper', - '/home/enne2/Sviluppo/enne2engine/enne2engine/sdl2_wrapper.py', - 'PYMODULE'), - ('enne2engine.sdl2_utils.gui', - '/home/enne2/Sviluppo/enne2engine/enne2engine/sdl2_utils/gui.py', - 'PYMODULE'), - ('enne2engine.sdl2_utils', - '/home/enne2/Sviluppo/enne2engine/enne2engine/sdl2_utils/__init__.py', - 'PYMODULE'), - ('enne2engine.isogeometry', - '/home/enne2/Sviluppo/enne2engine/enne2engine/isogeometry.py', - 'PYMODULE'), - ('enne2engine.spritemanager', - '/home/enne2/Sviluppo/enne2engine/enne2engine/spritemanager.py', - 'PYMODULE'), - ('sdl2.ext', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/__init__.py', - 'PYMODULE'), - ('sdl2.ext.input', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/input.py', - 'PYMODULE'), - ('sdl2.ext.compat', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/compat.py', - 'PYMODULE'), - ('sdl2.events', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/events.py', - 'PYMODULE'), - ('sdl2.syswm', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/syswm.py', - 'PYMODULE'), - ('sdl2.video', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/video.py', - 'PYMODULE'), - ('sdl2.surface', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/surface.py', - 'PYMODULE'), - ('sdl2.rwops', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/rwops.py', - 'PYMODULE'), - ('sdl2.pixels', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/pixels.py', - 'PYMODULE'), - ('sdl2.endian', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/endian.py', - 'PYMODULE'), - ('sdl2.blendmode', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/blendmode.py', - 'PYMODULE'), - ('sdl2.rect', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/rect.py', - 'PYMODULE'), - ('sdl2.version', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/version.py', - 'PYMODULE'), - ('sdl2.gesture', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/gesture.py', - 'PYMODULE'), - ('sdl2.touch', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/touch.py', - 'PYMODULE'), - ('sdl2.joystick', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/joystick.py', - 'PYMODULE'), - ('sdl2.dll', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/dll.py', - 'PYMODULE'), - ('sdl2._internal', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/_internal.py', - 'PYMODULE'), - ('sdl2.mouse', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/mouse.py', - 'PYMODULE'), - ('sdl2.keycode', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/keycode.py', - 'PYMODULE'), - ('sdl2.scancode', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/scancode.py', - 'PYMODULE'), - ('sdl2.keyboard', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/keyboard.py', - 'PYMODULE'), - ('sdl2.stdinc', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/stdinc.py', - 'PYMODULE'), - ('sdl2.ext.displays', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/displays.py', - 'PYMODULE'), - ('sdl2._sdl_init', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/_sdl_init.py', - 'PYMODULE'), - ('sdl2.ext.mouse', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/mouse.py', - 'PYMODULE'), - ('sdl2.ext.window', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/window.py', - 'PYMODULE'), - ('sdl2.ext.surface', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/surface.py', - 'PYMODULE'), - ('sdl2.ext.spritesystem', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/spritesystem.py', - 'PYMODULE'), - ('sdl2.render', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/render.py', - 'PYMODULE'), - ('sdl2.ext.sprite', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/sprite.py', - 'PYMODULE'), - ('sdl2.ext.renderer', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/renderer.py', - 'PYMODULE'), - ('sdl2.hints', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/hints.py', - 'PYMODULE'), - ('sdl2.error', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/error.py', - 'PYMODULE'), - ('sdl2.ext.pixelaccess', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/pixelaccess.py', - 'PYMODULE'), - ('sdl2.ext.image', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/image.py', - 'PYMODULE'), - ('sdl2.sdlimage', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/sdlimage.py', - 'PYMODULE'), - ('sdl2.ext.msgbox', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/msgbox.py', - 'PYMODULE'), - ('sdl2.messagebox', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/messagebox.py', - 'PYMODULE'), - ('sdl2.ext.uisystem', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/uisystem.py', - 'PYMODULE'), - ('sdl2.ext.ttf', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/ttf.py', - 'PYMODULE'), - ('sdl2.sdlttf', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/sdlttf.py', - 'PYMODULE'), - ('sdl2.ext.bitmapfont', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/bitmapfont.py', - 'PYMODULE'), - ('sdl2.ext.draw', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/draw.py', - 'PYMODULE'), - ('sdl2.ext.common', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/common.py', - 'PYMODULE'), - ('sdl2.timer', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/timer.py', - 'PYMODULE'), - ('sdl2.ext.err', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/err.py', - 'PYMODULE'), - ('sdl2.ext.ebs', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/ebs.py', - 'PYMODULE'), - ('uuid', '/usr/lib64/python3.11/uuid.py', 'PYMODULE'), - ('sdl2.ext.events', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/events.py', - 'PYMODULE'), - ('sdl2.ext.resources', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/resources.py', - 'PYMODULE'), - ('sdl2.ext.color', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/color.py', - 'PYMODULE'), - ('sdl2.ext.array', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/array.py', - 'PYMODULE'), - ('sdl2.ext.algorithms', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/algorithms.py', - 'PYMODULE'), - ('sdl2', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/__init__.py', - 'PYMODULE'), - ('sdl2.misc', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/misc.py', - 'PYMODULE'), - ('sdl2.locale', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/locale.py', - 'PYMODULE'), - ('sdl2.shape', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/shape.py', - 'PYMODULE'), - ('sdl2.sensor', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/sensor.py', - 'PYMODULE'), - ('sdl2.power', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/power.py', - 'PYMODULE'), - ('sdl2.platform', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/platform.py', - 'PYMODULE'), - ('sdl2.metal', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/metal.py', - 'PYMODULE'), - ('sdl2.log', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/log.py', - 'PYMODULE'), - ('sdl2.loadso', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/loadso.py', - 'PYMODULE'), - ('sdl2.hidapi', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/hidapi.py', - 'PYMODULE'), - ('sdl2.haptic', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/haptic.py', - 'PYMODULE'), - ('sdl2.guid', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/guid.py', - 'PYMODULE'), - ('sdl2.gamecontroller', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/gamecontroller.py', - 'PYMODULE'), - ('sdl2.filesystem', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/filesystem.py', - 'PYMODULE'), - ('sdl2.cpuinfo', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/cpuinfo.py', - 'PYMODULE'), - ('sdl2.clipboard', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/clipboard.py', - 'PYMODULE'), - ('sdl2.audio', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/audio.py', - 'PYMODULE')], - [('libpython3.11.so.1.0', '/lib64/libpython3.11.so.1.0', 'BINARY'), - ('libobjc.so.4', '/lib64/libobjc.so.4', 'BINARY'), - ('lib-dynload/grp.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/grp.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/math.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/math.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/select.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/select.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_posixsubprocess.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_posixsubprocess.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/fcntl.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/fcntl.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_datetime.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_datetime.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_typing.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_typing.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_statistics.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_statistics.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_contextvars.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_contextvars.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_decimal.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_decimal.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_opcode.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_opcode.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_pickle.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_pickle.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_hashlib.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_hashlib.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_sha3.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_sha3.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_blake2.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_blake2.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_sha256.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_sha256.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_md5.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_md5.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_sha1.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_sha1.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_sha512.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_sha512.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_random.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_random.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_bisect.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_bisect.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/unicodedata.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/unicodedata.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/array.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/array.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_socket.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_socket.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_csv.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_csv.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_struct.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_struct.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/binascii.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/binascii.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/resource.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/resource.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_lzma.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_lzma.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_bz2.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_bz2.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/zlib.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/zlib.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_posixshmem.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_posixshmem.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_multiprocessing.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_multiprocessing.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/pyexpat.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/pyexpat.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/termios.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/termios.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_ssl.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_ssl.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/mmap.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/mmap.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_ctypes.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_ctypes.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_queue.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_queue.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_heapq.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_heapq.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_multibytecodec.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_multibytecodec.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_jp.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_jp.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_kr.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_kr.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_iso2022.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_iso2022.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_cn.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_cn.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_tw.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_tw.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_hk.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_hk.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_json.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_json.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_elementtree.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_elementtree.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_webp.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_webp.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_imagingtk.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imagingtk.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_imagingcms.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imagingcms.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_imagingmath.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imagingmath.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_imaging.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imaging.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_uuid.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_uuid.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('libgcc_s.so.1', '/lib64/libgcc_s.so.1', 'BINARY'), - ('libmpdec.so.3', '/lib64/libmpdec.so.3', 'BINARY'), - ('libz.so.1', '/lib64/libz.so.1', 'BINARY'), - ('libcrypto.so.3', '/lib64/libcrypto.so.3', 'BINARY'), - ('libb2.so.1', '/lib64/libb2.so.1', 'BINARY'), - ('libgomp.so.1', '/lib64/libgomp.so.1', 'BINARY'), - ('liblzma.so.5', '/lib64/liblzma.so.5', 'BINARY'), - ('libbz2.so.1', '/lib64/libbz2.so.1', 'BINARY'), - ('libexpat.so.1', '/lib64/libexpat.so.1', 'BINARY'), - ('libssl.so.3', '/lib64/libssl.so.3', 'BINARY'), - ('libffi.so.8', '/lib64/libffi.so.8', 'BINARY'), - ('pillow.libs/libwebp-0feb04d2.so.7.1.10', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libwebp-0feb04d2.so.7.1.10', - 'BINARY'), - ('pillow.libs/libwebpmux-f0bc54e2.so.3.1.1', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libwebpmux-f0bc54e2.so.3.1.1', - 'BINARY'), - ('pillow.libs/libsharpyuv-f67a7212.so.0.1.1', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libsharpyuv-f67a7212.so.0.1.1', - 'BINARY'), - ('pillow.libs/libwebpdemux-e5426797.so.2.0.16', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libwebpdemux-e5426797.so.2.0.16', - 'BINARY'), - ('pillow.libs/liblcms2-525547ec.so.2.0.16', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/liblcms2-525547ec.so.2.0.16', - 'BINARY'), - ('pillow.libs/libXau-154567c4.so.6.0.0', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libXau-154567c4.so.6.0.0', - 'BINARY'), - ('pillow.libs/libopenjp2-ca16f087.so.2.5.3', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libopenjp2-ca16f087.so.2.5.3', - 'BINARY'), - ('pillow.libs/libtiff-a92b430c.so.6.0.2', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libtiff-a92b430c.so.6.0.2', - 'BINARY'), - ('pillow.libs/liblzma-a5872208.so.5.6.3', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/liblzma-a5872208.so.5.6.3', - 'BINARY'), - ('pillow.libs/libjpeg-0988b44a.so.62.4.0', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libjpeg-0988b44a.so.62.4.0', - 'BINARY'), - ('pillow.libs/libxcb-0b763ed5.so.1.1.0', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libxcb-0b763ed5.so.1.1.0', - 'BINARY'), - ('libuuid.so.1', '/lib64/libuuid.so.1', 'BINARY')], - [], - [], - [('base_library.zip', - '/home/enne2/Sviluppo/enne2engine/build/engine_demo/base_library.zip', - 'DATA'), - ('libwebp-0feb04d2.so.7.1.10', - 'pillow.libs/libwebp-0feb04d2.so.7.1.10', - 'SYMLINK'), - ('libwebpmux-f0bc54e2.so.3.1.1', - 'pillow.libs/libwebpmux-f0bc54e2.so.3.1.1', - 'SYMLINK'), - ('libsharpyuv-f67a7212.so.0.1.1', - 'pillow.libs/libsharpyuv-f67a7212.so.0.1.1', - 'SYMLINK'), - ('libwebpdemux-e5426797.so.2.0.16', - 'pillow.libs/libwebpdemux-e5426797.so.2.0.16', - 'SYMLINK'), - ('liblcms2-525547ec.so.2.0.16', - 'pillow.libs/liblcms2-525547ec.so.2.0.16', - 'SYMLINK'), - ('libXau-154567c4.so.6.0.0', - 'pillow.libs/libXau-154567c4.so.6.0.0', - 'SYMLINK'), - ('libopenjp2-ca16f087.so.2.5.3', - 'pillow.libs/libopenjp2-ca16f087.so.2.5.3', - 'SYMLINK'), - ('libtiff-a92b430c.so.6.0.2', - 'pillow.libs/libtiff-a92b430c.so.6.0.2', - 'SYMLINK'), - ('liblzma-a5872208.so.5.6.3', - 'pillow.libs/liblzma-a5872208.so.5.6.3', - 'SYMLINK'), - ('libjpeg-0988b44a.so.62.4.0', - 'pillow.libs/libjpeg-0988b44a.so.62.4.0', - 'SYMLINK'), - ('libxcb-0b763ed5.so.1.1.0', - 'pillow.libs/libxcb-0b763ed5.so.1.1.0', - 'SYMLINK')]) diff --git a/build/engine_demo/EXE-00.toc b/build/engine_demo/EXE-00.toc deleted file mode 100644 index 55c05dc..0000000 --- a/build/engine_demo/EXE-00.toc +++ /dev/null @@ -1,302 +0,0 @@ -('/home/enne2/Sviluppo/enne2engine/dist/engine_demo', - True, - False, - False, - None, - None, - False, - False, - None, - True, - False, - None, - None, - None, - '/home/enne2/Sviluppo/enne2engine/build/engine_demo/engine_demo.pkg', - [('pyi-contents-directory _internal', '', 'OPTION'), - ('PYZ-00.pyz', - '/home/enne2/Sviluppo/enne2engine/build/engine_demo/PYZ-00.pyz', - 'PYZ'), - ('lib-dynload/_struct.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_struct.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/zlib.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/zlib.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('struct', - '/home/enne2/Sviluppo/enne2engine/build/engine_demo/localpycs/struct.pyc', - 'PYMODULE'), - ('pyimod01_archive', - '/home/enne2/Sviluppo/enne2engine/build/engine_demo/localpycs/pyimod01_archive.pyc', - 'PYMODULE'), - ('pyimod02_importers', - '/home/enne2/Sviluppo/enne2engine/build/engine_demo/localpycs/pyimod02_importers.pyc', - 'PYMODULE'), - ('pyimod03_ctypes', - '/home/enne2/Sviluppo/enne2engine/build/engine_demo/localpycs/pyimod03_ctypes.pyc', - 'PYMODULE'), - ('pyiboot01_bootstrap', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py', - 'PYSOURCE'), - ('pyi_rth_inspect', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py', - 'PYSOURCE'), - ('pyi_rth_pkgutil', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py', - 'PYSOURCE'), - ('pyi_rth_multiprocessing', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py', - 'PYSOURCE'), - ('engine_demo', - '/home/enne2/Sviluppo/enne2engine/engine_demo.py', - 'PYSOURCE'), - ('libpython3.11.so.1.0', '/lib64/libpython3.11.so.1.0', 'BINARY'), - ('libobjc.so.4', '/lib64/libobjc.so.4', 'BINARY'), - ('lib-dynload/grp.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/grp.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/math.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/math.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/select.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/select.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_posixsubprocess.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_posixsubprocess.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/fcntl.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/fcntl.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_datetime.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_datetime.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_typing.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_typing.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_statistics.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_statistics.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_contextvars.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_contextvars.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_decimal.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_decimal.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_opcode.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_opcode.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_pickle.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_pickle.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_hashlib.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_hashlib.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_sha3.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_sha3.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_blake2.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_blake2.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_sha256.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_sha256.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_md5.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_md5.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_sha1.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_sha1.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_sha512.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_sha512.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_random.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_random.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_bisect.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_bisect.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/unicodedata.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/unicodedata.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/array.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/array.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_socket.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_socket.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_csv.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_csv.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/binascii.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/binascii.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/resource.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/resource.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_lzma.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_lzma.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_bz2.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_bz2.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_posixshmem.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_posixshmem.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_multiprocessing.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_multiprocessing.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/pyexpat.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/pyexpat.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/termios.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/termios.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_ssl.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_ssl.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/mmap.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/mmap.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_ctypes.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_ctypes.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_queue.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_queue.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_heapq.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_heapq.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_multibytecodec.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_multibytecodec.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_jp.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_jp.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_kr.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_kr.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_iso2022.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_iso2022.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_cn.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_cn.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_tw.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_tw.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_hk.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_hk.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_json.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_json.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_elementtree.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_elementtree.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_webp.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_webp.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_imagingtk.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imagingtk.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_imagingcms.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imagingcms.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_imagingmath.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imagingmath.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_imaging.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imaging.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_uuid.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_uuid.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('libgcc_s.so.1', '/lib64/libgcc_s.so.1', 'BINARY'), - ('libmpdec.so.3', '/lib64/libmpdec.so.3', 'BINARY'), - ('libz.so.1', '/lib64/libz.so.1', 'BINARY'), - ('libcrypto.so.3', '/lib64/libcrypto.so.3', 'BINARY'), - ('libb2.so.1', '/lib64/libb2.so.1', 'BINARY'), - ('libgomp.so.1', '/lib64/libgomp.so.1', 'BINARY'), - ('liblzma.so.5', '/lib64/liblzma.so.5', 'BINARY'), - ('libbz2.so.1', '/lib64/libbz2.so.1', 'BINARY'), - ('libexpat.so.1', '/lib64/libexpat.so.1', 'BINARY'), - ('libssl.so.3', '/lib64/libssl.so.3', 'BINARY'), - ('libffi.so.8', '/lib64/libffi.so.8', 'BINARY'), - ('pillow.libs/libwebp-0feb04d2.so.7.1.10', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libwebp-0feb04d2.so.7.1.10', - 'BINARY'), - ('pillow.libs/libwebpmux-f0bc54e2.so.3.1.1', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libwebpmux-f0bc54e2.so.3.1.1', - 'BINARY'), - ('pillow.libs/libsharpyuv-f67a7212.so.0.1.1', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libsharpyuv-f67a7212.so.0.1.1', - 'BINARY'), - ('pillow.libs/libwebpdemux-e5426797.so.2.0.16', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libwebpdemux-e5426797.so.2.0.16', - 'BINARY'), - ('pillow.libs/liblcms2-525547ec.so.2.0.16', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/liblcms2-525547ec.so.2.0.16', - 'BINARY'), - ('pillow.libs/libXau-154567c4.so.6.0.0', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libXau-154567c4.so.6.0.0', - 'BINARY'), - ('pillow.libs/libopenjp2-ca16f087.so.2.5.3', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libopenjp2-ca16f087.so.2.5.3', - 'BINARY'), - ('pillow.libs/libtiff-a92b430c.so.6.0.2', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libtiff-a92b430c.so.6.0.2', - 'BINARY'), - ('pillow.libs/liblzma-a5872208.so.5.6.3', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/liblzma-a5872208.so.5.6.3', - 'BINARY'), - ('pillow.libs/libjpeg-0988b44a.so.62.4.0', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libjpeg-0988b44a.so.62.4.0', - 'BINARY'), - ('pillow.libs/libxcb-0b763ed5.so.1.1.0', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libxcb-0b763ed5.so.1.1.0', - 'BINARY'), - ('libuuid.so.1', '/lib64/libuuid.so.1', 'BINARY'), - ('base_library.zip', - '/home/enne2/Sviluppo/enne2engine/build/engine_demo/base_library.zip', - 'DATA'), - ('libwebp-0feb04d2.so.7.1.10', - 'pillow.libs/libwebp-0feb04d2.so.7.1.10', - 'SYMLINK'), - ('libwebpmux-f0bc54e2.so.3.1.1', - 'pillow.libs/libwebpmux-f0bc54e2.so.3.1.1', - 'SYMLINK'), - ('libsharpyuv-f67a7212.so.0.1.1', - 'pillow.libs/libsharpyuv-f67a7212.so.0.1.1', - 'SYMLINK'), - ('libwebpdemux-e5426797.so.2.0.16', - 'pillow.libs/libwebpdemux-e5426797.so.2.0.16', - 'SYMLINK'), - ('liblcms2-525547ec.so.2.0.16', - 'pillow.libs/liblcms2-525547ec.so.2.0.16', - 'SYMLINK'), - ('libXau-154567c4.so.6.0.0', - 'pillow.libs/libXau-154567c4.so.6.0.0', - 'SYMLINK'), - ('libopenjp2-ca16f087.so.2.5.3', - 'pillow.libs/libopenjp2-ca16f087.so.2.5.3', - 'SYMLINK'), - ('libtiff-a92b430c.so.6.0.2', - 'pillow.libs/libtiff-a92b430c.so.6.0.2', - 'SYMLINK'), - ('liblzma-a5872208.so.5.6.3', - 'pillow.libs/liblzma-a5872208.so.5.6.3', - 'SYMLINK'), - ('libjpeg-0988b44a.so.62.4.0', - 'pillow.libs/libjpeg-0988b44a.so.62.4.0', - 'SYMLINK'), - ('libxcb-0b763ed5.so.1.1.0', - 'pillow.libs/libxcb-0b763ed5.so.1.1.0', - 'SYMLINK')], - [], - False, - False, - 1740325971, - [('run', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PyInstaller/bootloader/Linux-64bit-intel/run', - 'EXECUTABLE')], - '/lib64/libpython3.11.so.1.0') diff --git a/build/engine_demo/PKG-00.toc b/build/engine_demo/PKG-00.toc deleted file mode 100644 index cda3545..0000000 --- a/build/engine_demo/PKG-00.toc +++ /dev/null @@ -1,297 +0,0 @@ -('/home/enne2/Sviluppo/enne2engine/build/engine_demo/engine_demo.pkg', - {'BINARY': True, - 'DATA': True, - 'EXECUTABLE': True, - 'EXTENSION': True, - 'PYMODULE': True, - 'PYSOURCE': True, - 'PYZ': False, - 'SPLASH': True, - 'SYMLINK': False}, - [('pyi-contents-directory _internal', '', 'OPTION'), - ('PYZ-00.pyz', - '/home/enne2/Sviluppo/enne2engine/build/engine_demo/PYZ-00.pyz', - 'PYZ'), - ('lib-dynload/_struct.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_struct.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/zlib.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/zlib.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('struct', - '/home/enne2/Sviluppo/enne2engine/build/engine_demo/localpycs/struct.pyc', - 'PYMODULE'), - ('pyimod01_archive', - '/home/enne2/Sviluppo/enne2engine/build/engine_demo/localpycs/pyimod01_archive.pyc', - 'PYMODULE'), - ('pyimod02_importers', - '/home/enne2/Sviluppo/enne2engine/build/engine_demo/localpycs/pyimod02_importers.pyc', - 'PYMODULE'), - ('pyimod03_ctypes', - '/home/enne2/Sviluppo/enne2engine/build/engine_demo/localpycs/pyimod03_ctypes.pyc', - 'PYMODULE'), - ('pyiboot01_bootstrap', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py', - 'PYSOURCE'), - ('pyi_rth_inspect', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py', - 'PYSOURCE'), - ('pyi_rth_pkgutil', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py', - 'PYSOURCE'), - ('pyi_rth_multiprocessing', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py', - 'PYSOURCE'), - ('engine_demo', - '/home/enne2/Sviluppo/enne2engine/engine_demo.py', - 'PYSOURCE'), - ('libpython3.11.so.1.0', '/lib64/libpython3.11.so.1.0', 'BINARY'), - ('libobjc.so.4', '/lib64/libobjc.so.4', 'BINARY'), - ('lib-dynload/grp.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/grp.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/math.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/math.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/select.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/select.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_posixsubprocess.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_posixsubprocess.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/fcntl.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/fcntl.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_datetime.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_datetime.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_typing.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_typing.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_statistics.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_statistics.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_contextvars.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_contextvars.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_decimal.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_decimal.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_opcode.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_opcode.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_pickle.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_pickle.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_hashlib.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_hashlib.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_sha3.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_sha3.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_blake2.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_blake2.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_sha256.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_sha256.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_md5.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_md5.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_sha1.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_sha1.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_sha512.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_sha512.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_random.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_random.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_bisect.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_bisect.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/unicodedata.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/unicodedata.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/array.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/array.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_socket.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_socket.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_csv.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_csv.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/binascii.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/binascii.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/resource.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/resource.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_lzma.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_lzma.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_bz2.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_bz2.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_posixshmem.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_posixshmem.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_multiprocessing.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_multiprocessing.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/pyexpat.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/pyexpat.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/termios.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/termios.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_ssl.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_ssl.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/mmap.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/mmap.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_ctypes.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_ctypes.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_queue.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_queue.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_heapq.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_heapq.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_multibytecodec.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_multibytecodec.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_jp.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_jp.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_kr.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_kr.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_iso2022.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_iso2022.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_cn.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_cn.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_tw.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_tw.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_codecs_hk.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_codecs_hk.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_json.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_json.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_elementtree.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_elementtree.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_webp.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_webp.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_imagingtk.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imagingtk.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_imagingcms.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imagingcms.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_imagingmath.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imagingmath.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('PIL/_imaging.cpython-311-x86_64-linux-gnu.so', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imaging.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('lib-dynload/_uuid.cpython-311-x86_64-linux-gnu.so', - '/usr/lib64/python3.11/lib-dynload/_uuid.cpython-311-x86_64-linux-gnu.so', - 'EXTENSION'), - ('libgcc_s.so.1', '/lib64/libgcc_s.so.1', 'BINARY'), - ('libmpdec.so.3', '/lib64/libmpdec.so.3', 'BINARY'), - ('libz.so.1', '/lib64/libz.so.1', 'BINARY'), - ('libcrypto.so.3', '/lib64/libcrypto.so.3', 'BINARY'), - ('libb2.so.1', '/lib64/libb2.so.1', 'BINARY'), - ('libgomp.so.1', '/lib64/libgomp.so.1', 'BINARY'), - ('liblzma.so.5', '/lib64/liblzma.so.5', 'BINARY'), - ('libbz2.so.1', '/lib64/libbz2.so.1', 'BINARY'), - ('libexpat.so.1', '/lib64/libexpat.so.1', 'BINARY'), - ('libssl.so.3', '/lib64/libssl.so.3', 'BINARY'), - ('libffi.so.8', '/lib64/libffi.so.8', 'BINARY'), - ('pillow.libs/libwebp-0feb04d2.so.7.1.10', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libwebp-0feb04d2.so.7.1.10', - 'BINARY'), - ('pillow.libs/libwebpmux-f0bc54e2.so.3.1.1', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libwebpmux-f0bc54e2.so.3.1.1', - 'BINARY'), - ('pillow.libs/libsharpyuv-f67a7212.so.0.1.1', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libsharpyuv-f67a7212.so.0.1.1', - 'BINARY'), - ('pillow.libs/libwebpdemux-e5426797.so.2.0.16', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libwebpdemux-e5426797.so.2.0.16', - 'BINARY'), - ('pillow.libs/liblcms2-525547ec.so.2.0.16', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/liblcms2-525547ec.so.2.0.16', - 'BINARY'), - ('pillow.libs/libXau-154567c4.so.6.0.0', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libXau-154567c4.so.6.0.0', - 'BINARY'), - ('pillow.libs/libopenjp2-ca16f087.so.2.5.3', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libopenjp2-ca16f087.so.2.5.3', - 'BINARY'), - ('pillow.libs/libtiff-a92b430c.so.6.0.2', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libtiff-a92b430c.so.6.0.2', - 'BINARY'), - ('pillow.libs/liblzma-a5872208.so.5.6.3', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/liblzma-a5872208.so.5.6.3', - 'BINARY'), - ('pillow.libs/libjpeg-0988b44a.so.62.4.0', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libjpeg-0988b44a.so.62.4.0', - 'BINARY'), - ('pillow.libs/libxcb-0b763ed5.so.1.1.0', - '/home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/pillow.libs/libxcb-0b763ed5.so.1.1.0', - 'BINARY'), - ('libuuid.so.1', '/lib64/libuuid.so.1', 'BINARY'), - ('base_library.zip', - '/home/enne2/Sviluppo/enne2engine/build/engine_demo/base_library.zip', - 'DATA'), - ('libwebp-0feb04d2.so.7.1.10', - 'pillow.libs/libwebp-0feb04d2.so.7.1.10', - 'SYMLINK'), - ('libwebpmux-f0bc54e2.so.3.1.1', - 'pillow.libs/libwebpmux-f0bc54e2.so.3.1.1', - 'SYMLINK'), - ('libsharpyuv-f67a7212.so.0.1.1', - 'pillow.libs/libsharpyuv-f67a7212.so.0.1.1', - 'SYMLINK'), - ('libwebpdemux-e5426797.so.2.0.16', - 'pillow.libs/libwebpdemux-e5426797.so.2.0.16', - 'SYMLINK'), - ('liblcms2-525547ec.so.2.0.16', - 'pillow.libs/liblcms2-525547ec.so.2.0.16', - 'SYMLINK'), - ('libXau-154567c4.so.6.0.0', - 'pillow.libs/libXau-154567c4.so.6.0.0', - 'SYMLINK'), - ('libopenjp2-ca16f087.so.2.5.3', - 'pillow.libs/libopenjp2-ca16f087.so.2.5.3', - 'SYMLINK'), - ('libtiff-a92b430c.so.6.0.2', - 'pillow.libs/libtiff-a92b430c.so.6.0.2', - 'SYMLINK'), - ('liblzma-a5872208.so.5.6.3', - 'pillow.libs/liblzma-a5872208.so.5.6.3', - 'SYMLINK'), - ('libjpeg-0988b44a.so.62.4.0', - 'pillow.libs/libjpeg-0988b44a.so.62.4.0', - 'SYMLINK'), - ('libxcb-0b763ed5.so.1.1.0', - 'pillow.libs/libxcb-0b763ed5.so.1.1.0', - 'SYMLINK')], - 'libpython3.11.so.1.0', - False, - False, - False, - [], - None, - None, - None) diff --git a/build/engine_demo/PYZ-00.pyz b/build/engine_demo/PYZ-00.pyz deleted file mode 100644 index 8a57e19..0000000 Binary files a/build/engine_demo/PYZ-00.pyz and /dev/null differ diff --git a/build/engine_demo/PYZ-00.toc b/build/engine_demo/PYZ-00.toc deleted file mode 100644 index 7bca988..0000000 --- a/build/engine_demo/PYZ-00.toc +++ /dev/null @@ -1,1372 +0,0 @@ -('/home/enne2/Sviluppo/enne2engine/build/engine_demo/PYZ-00.pyz', - [('PIL', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/__init__.py', - 'PYMODULE'), - ('PIL.BlpImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/BlpImagePlugin.py', - 'PYMODULE'), - ('PIL.BmpImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/BmpImagePlugin.py', - 'PYMODULE'), - ('PIL.BufrStubImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/BufrStubImagePlugin.py', - 'PYMODULE'), - ('PIL.CurImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/CurImagePlugin.py', - 'PYMODULE'), - ('PIL.DcxImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/DcxImagePlugin.py', - 'PYMODULE'), - ('PIL.DdsImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/DdsImagePlugin.py', - 'PYMODULE'), - ('PIL.EpsImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/EpsImagePlugin.py', - 'PYMODULE'), - ('PIL.ExifTags', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ExifTags.py', - 'PYMODULE'), - ('PIL.FitsImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/FitsImagePlugin.py', - 'PYMODULE'), - ('PIL.FliImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/FliImagePlugin.py', - 'PYMODULE'), - ('PIL.FpxImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/FpxImagePlugin.py', - 'PYMODULE'), - ('PIL.FtexImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/FtexImagePlugin.py', - 'PYMODULE'), - ('PIL.GbrImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/GbrImagePlugin.py', - 'PYMODULE'), - ('PIL.GifImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/GifImagePlugin.py', - 'PYMODULE'), - ('PIL.GimpGradientFile', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/GimpGradientFile.py', - 'PYMODULE'), - ('PIL.GimpPaletteFile', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/GimpPaletteFile.py', - 'PYMODULE'), - ('PIL.GribStubImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/GribStubImagePlugin.py', - 'PYMODULE'), - ('PIL.Hdf5StubImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/Hdf5StubImagePlugin.py', - 'PYMODULE'), - ('PIL.IcnsImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/IcnsImagePlugin.py', - 'PYMODULE'), - ('PIL.IcoImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/IcoImagePlugin.py', - 'PYMODULE'), - ('PIL.ImImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImImagePlugin.py', - 'PYMODULE'), - ('PIL.Image', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/Image.py', - 'PYMODULE'), - ('PIL.ImageChops', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageChops.py', - 'PYMODULE'), - ('PIL.ImageCms', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageCms.py', - 'PYMODULE'), - ('PIL.ImageColor', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageColor.py', - 'PYMODULE'), - ('PIL.ImageFile', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageFile.py', - 'PYMODULE'), - ('PIL.ImageFilter', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageFilter.py', - 'PYMODULE'), - ('PIL.ImageMath', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageMath.py', - 'PYMODULE'), - ('PIL.ImageMode', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageMode.py', - 'PYMODULE'), - ('PIL.ImageOps', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageOps.py', - 'PYMODULE'), - ('PIL.ImagePalette', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImagePalette.py', - 'PYMODULE'), - ('PIL.ImageQt', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageQt.py', - 'PYMODULE'), - ('PIL.ImageSequence', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageSequence.py', - 'PYMODULE'), - ('PIL.ImageShow', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageShow.py', - 'PYMODULE'), - ('PIL.ImageTk', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageTk.py', - 'PYMODULE'), - ('PIL.ImageWin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImageWin.py', - 'PYMODULE'), - ('PIL.ImtImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/ImtImagePlugin.py', - 'PYMODULE'), - ('PIL.IptcImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/IptcImagePlugin.py', - 'PYMODULE'), - ('PIL.Jpeg2KImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/Jpeg2KImagePlugin.py', - 'PYMODULE'), - ('PIL.JpegImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/JpegImagePlugin.py', - 'PYMODULE'), - ('PIL.JpegPresets', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/JpegPresets.py', - 'PYMODULE'), - ('PIL.McIdasImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/McIdasImagePlugin.py', - 'PYMODULE'), - ('PIL.MicImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/MicImagePlugin.py', - 'PYMODULE'), - ('PIL.MpegImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/MpegImagePlugin.py', - 'PYMODULE'), - ('PIL.MpoImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/MpoImagePlugin.py', - 'PYMODULE'), - ('PIL.MspImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/MspImagePlugin.py', - 'PYMODULE'), - ('PIL.PaletteFile', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PaletteFile.py', - 'PYMODULE'), - ('PIL.PalmImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PalmImagePlugin.py', - 'PYMODULE'), - ('PIL.PcdImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PcdImagePlugin.py', - 'PYMODULE'), - ('PIL.PcxImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PcxImagePlugin.py', - 'PYMODULE'), - ('PIL.PdfImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PdfImagePlugin.py', - 'PYMODULE'), - ('PIL.PdfParser', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PdfParser.py', - 'PYMODULE'), - ('PIL.PixarImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PixarImagePlugin.py', - 'PYMODULE'), - ('PIL.PngImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PngImagePlugin.py', - 'PYMODULE'), - ('PIL.PpmImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PpmImagePlugin.py', - 'PYMODULE'), - ('PIL.PsdImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/PsdImagePlugin.py', - 'PYMODULE'), - ('PIL.QoiImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/QoiImagePlugin.py', - 'PYMODULE'), - ('PIL.SgiImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/SgiImagePlugin.py', - 'PYMODULE'), - ('PIL.SpiderImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/SpiderImagePlugin.py', - 'PYMODULE'), - ('PIL.SunImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/SunImagePlugin.py', - 'PYMODULE'), - ('PIL.TgaImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/TgaImagePlugin.py', - 'PYMODULE'), - ('PIL.TiffImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/TiffImagePlugin.py', - 'PYMODULE'), - ('PIL.TiffTags', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/TiffTags.py', - 'PYMODULE'), - ('PIL.WebPImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/WebPImagePlugin.py', - 'PYMODULE'), - ('PIL.WmfImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/WmfImagePlugin.py', - 'PYMODULE'), - ('PIL.XVThumbImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/XVThumbImagePlugin.py', - 'PYMODULE'), - ('PIL.XbmImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/XbmImagePlugin.py', - 'PYMODULE'), - ('PIL.XpmImagePlugin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/XpmImagePlugin.py', - 'PYMODULE'), - ('PIL._binary', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_binary.py', - 'PYMODULE'), - ('PIL._deprecate', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_deprecate.py', - 'PYMODULE'), - ('PIL._typing', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_typing.py', - 'PYMODULE'), - ('PIL._util', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_util.py', - 'PYMODULE'), - ('PIL._version', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_version.py', - 'PYMODULE'), - ('PIL.features', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/features.py', - 'PYMODULE'), - ('__future__', '/usr/lib64/python3.11/__future__.py', 'PYMODULE'), - ('_compat_pickle', '/usr/lib64/python3.11/_compat_pickle.py', 'PYMODULE'), - ('_compression', '/usr/lib64/python3.11/_compression.py', 'PYMODULE'), - ('_markupbase', '/usr/lib64/python3.11/_markupbase.py', 'PYMODULE'), - ('_py_abc', '/usr/lib64/python3.11/_py_abc.py', 'PYMODULE'), - ('_pydecimal', '/usr/lib64/python3.11/_pydecimal.py', 'PYMODULE'), - ('_strptime', '/usr/lib64/python3.11/_strptime.py', 'PYMODULE'), - ('_threading_local', '/usr/lib64/python3.11/_threading_local.py', 'PYMODULE'), - ('argparse', '/usr/lib64/python3.11/argparse.py', 'PYMODULE'), - ('ast', '/usr/lib64/python3.11/ast.py', 'PYMODULE'), - ('base64', '/usr/lib64/python3.11/base64.py', 'PYMODULE'), - ('bisect', '/usr/lib64/python3.11/bisect.py', 'PYMODULE'), - ('bz2', '/usr/lib64/python3.11/bz2.py', 'PYMODULE'), - ('calendar', '/usr/lib64/python3.11/calendar.py', 'PYMODULE'), - ('colorsys', '/usr/lib64/python3.11/colorsys.py', 'PYMODULE'), - ('concurrent', '/usr/lib64/python3.11/concurrent/__init__.py', 'PYMODULE'), - ('concurrent.futures', - '/usr/lib64/python3.11/concurrent/futures/__init__.py', - 'PYMODULE'), - ('concurrent.futures._base', - '/usr/lib64/python3.11/concurrent/futures/_base.py', - 'PYMODULE'), - ('concurrent.futures.process', - '/usr/lib64/python3.11/concurrent/futures/process.py', - 'PYMODULE'), - ('concurrent.futures.thread', - '/usr/lib64/python3.11/concurrent/futures/thread.py', - 'PYMODULE'), - ('contextlib', '/usr/lib64/python3.11/contextlib.py', 'PYMODULE'), - ('contextvars', '/usr/lib64/python3.11/contextvars.py', 'PYMODULE'), - ('copy', '/usr/lib64/python3.11/copy.py', 'PYMODULE'), - ('csv', '/usr/lib64/python3.11/csv.py', 'PYMODULE'), - ('ctypes', '/usr/lib64/python3.11/ctypes/__init__.py', 'PYMODULE'), - ('ctypes._aix', '/usr/lib64/python3.11/ctypes/_aix.py', 'PYMODULE'), - ('ctypes._endian', '/usr/lib64/python3.11/ctypes/_endian.py', 'PYMODULE'), - ('ctypes.macholib', - '/usr/lib64/python3.11/ctypes/macholib/__init__.py', - 'PYMODULE'), - ('ctypes.macholib.dyld', - '/usr/lib64/python3.11/ctypes/macholib/dyld.py', - 'PYMODULE'), - ('ctypes.macholib.dylib', - '/usr/lib64/python3.11/ctypes/macholib/dylib.py', - 'PYMODULE'), - ('ctypes.macholib.framework', - '/usr/lib64/python3.11/ctypes/macholib/framework.py', - 'PYMODULE'), - ('ctypes.util', '/usr/lib64/python3.11/ctypes/util.py', 'PYMODULE'), - ('ctypes.wintypes', '/usr/lib64/python3.11/ctypes/wintypes.py', 'PYMODULE'), - ('dataclasses', '/usr/lib64/python3.11/dataclasses.py', 'PYMODULE'), - ('datetime', '/usr/lib64/python3.11/datetime.py', 'PYMODULE'), - ('decimal', '/usr/lib64/python3.11/decimal.py', 'PYMODULE'), - ('dis', '/usr/lib64/python3.11/dis.py', 'PYMODULE'), - ('email', '/usr/lib64/python3.11/email/__init__.py', 'PYMODULE'), - ('email._encoded_words', - '/usr/lib64/python3.11/email/_encoded_words.py', - 'PYMODULE'), - ('email._header_value_parser', - '/usr/lib64/python3.11/email/_header_value_parser.py', - 'PYMODULE'), - ('email._parseaddr', '/usr/lib64/python3.11/email/_parseaddr.py', 'PYMODULE'), - ('email._policybase', - '/usr/lib64/python3.11/email/_policybase.py', - 'PYMODULE'), - ('email.base64mime', '/usr/lib64/python3.11/email/base64mime.py', 'PYMODULE'), - ('email.charset', '/usr/lib64/python3.11/email/charset.py', 'PYMODULE'), - ('email.contentmanager', - '/usr/lib64/python3.11/email/contentmanager.py', - 'PYMODULE'), - ('email.encoders', '/usr/lib64/python3.11/email/encoders.py', 'PYMODULE'), - ('email.errors', '/usr/lib64/python3.11/email/errors.py', 'PYMODULE'), - ('email.feedparser', '/usr/lib64/python3.11/email/feedparser.py', 'PYMODULE'), - ('email.generator', '/usr/lib64/python3.11/email/generator.py', 'PYMODULE'), - ('email.header', '/usr/lib64/python3.11/email/header.py', 'PYMODULE'), - ('email.headerregistry', - '/usr/lib64/python3.11/email/headerregistry.py', - 'PYMODULE'), - ('email.iterators', '/usr/lib64/python3.11/email/iterators.py', 'PYMODULE'), - ('email.message', '/usr/lib64/python3.11/email/message.py', 'PYMODULE'), - ('email.parser', '/usr/lib64/python3.11/email/parser.py', 'PYMODULE'), - ('email.policy', '/usr/lib64/python3.11/email/policy.py', 'PYMODULE'), - ('email.quoprimime', '/usr/lib64/python3.11/email/quoprimime.py', 'PYMODULE'), - ('email.utils', '/usr/lib64/python3.11/email/utils.py', 'PYMODULE'), - ('enne2engine', '-', 'PYMODULE'), - ('enne2engine.Entities', - '/home/enne2/Sviluppo/enne2engine/enne2engine/Entities/__init__.py', - 'PYMODULE'), - ('enne2engine.Entities.entity', - '/home/enne2/Sviluppo/enne2engine/enne2engine/Entities/entity.py', - 'PYMODULE'), - ('enne2engine.controls', - '/home/enne2/Sviluppo/enne2engine/enne2engine/controls.py', - 'PYMODULE'), - ('enne2engine.isogeometry', - '/home/enne2/Sviluppo/enne2engine/enne2engine/isogeometry.py', - 'PYMODULE'), - ('enne2engine.pyglet_wrapper', - '/home/enne2/Sviluppo/enne2engine/enne2engine/pyglet_wrapper.py', - 'PYMODULE'), - ('enne2engine.sdl2_utils', - '/home/enne2/Sviluppo/enne2engine/enne2engine/sdl2_utils/__init__.py', - 'PYMODULE'), - ('enne2engine.sdl2_utils.gui', - '/home/enne2/Sviluppo/enne2engine/enne2engine/sdl2_utils/gui.py', - 'PYMODULE'), - ('enne2engine.sdl2_wrapper', - '/home/enne2/Sviluppo/enne2engine/enne2engine/sdl2_wrapper.py', - 'PYMODULE'), - ('enne2engine.spritemanager', - '/home/enne2/Sviluppo/enne2engine/enne2engine/spritemanager.py', - 'PYMODULE'), - ('enne2engine.tilemanager', - '/home/enne2/Sviluppo/enne2engine/enne2engine/tilemanager.py', - 'PYMODULE'), - ('fnmatch', '/usr/lib64/python3.11/fnmatch.py', 'PYMODULE'), - ('fractions', '/usr/lib64/python3.11/fractions.py', 'PYMODULE'), - ('ftplib', '/usr/lib64/python3.11/ftplib.py', 'PYMODULE'), - ('getopt', '/usr/lib64/python3.11/getopt.py', 'PYMODULE'), - ('getpass', '/usr/lib64/python3.11/getpass.py', 'PYMODULE'), - ('gettext', '/usr/lib64/python3.11/gettext.py', 'PYMODULE'), - ('gzip', '/usr/lib64/python3.11/gzip.py', 'PYMODULE'), - ('hashlib', '/usr/lib64/python3.11/hashlib.py', 'PYMODULE'), - ('hmac', '/usr/lib64/python3.11/hmac.py', 'PYMODULE'), - ('html', '/usr/lib64/python3.11/html/__init__.py', 'PYMODULE'), - ('html.entities', '/usr/lib64/python3.11/html/entities.py', 'PYMODULE'), - ('html.parser', '/usr/lib64/python3.11/html/parser.py', 'PYMODULE'), - ('http', '/usr/lib64/python3.11/http/__init__.py', 'PYMODULE'), - ('http.client', '/usr/lib64/python3.11/http/client.py', 'PYMODULE'), - ('http.cookiejar', '/usr/lib64/python3.11/http/cookiejar.py', 'PYMODULE'), - ('importlib', '/usr/lib64/python3.11/importlib/__init__.py', 'PYMODULE'), - ('importlib._abc', '/usr/lib64/python3.11/importlib/_abc.py', 'PYMODULE'), - ('importlib._bootstrap', - '/usr/lib64/python3.11/importlib/_bootstrap.py', - 'PYMODULE'), - ('importlib._bootstrap_external', - '/usr/lib64/python3.11/importlib/_bootstrap_external.py', - 'PYMODULE'), - ('importlib.abc', '/usr/lib64/python3.11/importlib/abc.py', 'PYMODULE'), - ('importlib.machinery', - '/usr/lib64/python3.11/importlib/machinery.py', - 'PYMODULE'), - ('importlib.metadata', - '/usr/lib64/python3.11/importlib/metadata/__init__.py', - 'PYMODULE'), - ('importlib.metadata._adapters', - '/usr/lib64/python3.11/importlib/metadata/_adapters.py', - 'PYMODULE'), - ('importlib.metadata._collections', - '/usr/lib64/python3.11/importlib/metadata/_collections.py', - 'PYMODULE'), - ('importlib.metadata._functools', - '/usr/lib64/python3.11/importlib/metadata/_functools.py', - 'PYMODULE'), - ('importlib.metadata._itertools', - '/usr/lib64/python3.11/importlib/metadata/_itertools.py', - 'PYMODULE'), - ('importlib.metadata._meta', - '/usr/lib64/python3.11/importlib/metadata/_meta.py', - 'PYMODULE'), - ('importlib.metadata._text', - '/usr/lib64/python3.11/importlib/metadata/_text.py', - 'PYMODULE'), - ('importlib.readers', - '/usr/lib64/python3.11/importlib/readers.py', - 'PYMODULE'), - ('importlib.resources', - '/usr/lib64/python3.11/importlib/resources/__init__.py', - 'PYMODULE'), - ('importlib.resources._adapters', - '/usr/lib64/python3.11/importlib/resources/_adapters.py', - 'PYMODULE'), - ('importlib.resources._common', - '/usr/lib64/python3.11/importlib/resources/_common.py', - 'PYMODULE'), - ('importlib.resources._itertools', - '/usr/lib64/python3.11/importlib/resources/_itertools.py', - 'PYMODULE'), - ('importlib.resources._legacy', - '/usr/lib64/python3.11/importlib/resources/_legacy.py', - 'PYMODULE'), - ('importlib.resources.abc', - '/usr/lib64/python3.11/importlib/resources/abc.py', - 'PYMODULE'), - ('importlib.resources.readers', - '/usr/lib64/python3.11/importlib/resources/readers.py', - 'PYMODULE'), - ('importlib.util', '/usr/lib64/python3.11/importlib/util.py', 'PYMODULE'), - ('inspect', '/usr/lib64/python3.11/inspect.py', 'PYMODULE'), - ('ipaddress', '/usr/lib64/python3.11/ipaddress.py', 'PYMODULE'), - ('json', '/usr/lib64/python3.11/json/__init__.py', 'PYMODULE'), - ('json.decoder', '/usr/lib64/python3.11/json/decoder.py', 'PYMODULE'), - ('json.encoder', '/usr/lib64/python3.11/json/encoder.py', 'PYMODULE'), - ('json.scanner', '/usr/lib64/python3.11/json/scanner.py', 'PYMODULE'), - ('logging', '/usr/lib64/python3.11/logging/__init__.py', 'PYMODULE'), - ('lzma', '/usr/lib64/python3.11/lzma.py', 'PYMODULE'), - ('mimetypes', '/usr/lib64/python3.11/mimetypes.py', 'PYMODULE'), - ('multiprocessing', - '/usr/lib64/python3.11/multiprocessing/__init__.py', - 'PYMODULE'), - ('multiprocessing.connection', - '/usr/lib64/python3.11/multiprocessing/connection.py', - 'PYMODULE'), - ('multiprocessing.context', - '/usr/lib64/python3.11/multiprocessing/context.py', - 'PYMODULE'), - ('multiprocessing.dummy', - '/usr/lib64/python3.11/multiprocessing/dummy/__init__.py', - 'PYMODULE'), - ('multiprocessing.dummy.connection', - '/usr/lib64/python3.11/multiprocessing/dummy/connection.py', - 'PYMODULE'), - ('multiprocessing.forkserver', - '/usr/lib64/python3.11/multiprocessing/forkserver.py', - 'PYMODULE'), - ('multiprocessing.heap', - '/usr/lib64/python3.11/multiprocessing/heap.py', - 'PYMODULE'), - ('multiprocessing.managers', - '/usr/lib64/python3.11/multiprocessing/managers.py', - 'PYMODULE'), - ('multiprocessing.pool', - '/usr/lib64/python3.11/multiprocessing/pool.py', - 'PYMODULE'), - ('multiprocessing.popen_fork', - '/usr/lib64/python3.11/multiprocessing/popen_fork.py', - 'PYMODULE'), - ('multiprocessing.popen_forkserver', - '/usr/lib64/python3.11/multiprocessing/popen_forkserver.py', - 'PYMODULE'), - ('multiprocessing.popen_spawn_posix', - '/usr/lib64/python3.11/multiprocessing/popen_spawn_posix.py', - 'PYMODULE'), - ('multiprocessing.popen_spawn_win32', - '/usr/lib64/python3.11/multiprocessing/popen_spawn_win32.py', - 'PYMODULE'), - ('multiprocessing.process', - '/usr/lib64/python3.11/multiprocessing/process.py', - 'PYMODULE'), - ('multiprocessing.queues', - '/usr/lib64/python3.11/multiprocessing/queues.py', - 'PYMODULE'), - ('multiprocessing.reduction', - '/usr/lib64/python3.11/multiprocessing/reduction.py', - 'PYMODULE'), - ('multiprocessing.resource_sharer', - '/usr/lib64/python3.11/multiprocessing/resource_sharer.py', - 'PYMODULE'), - ('multiprocessing.resource_tracker', - '/usr/lib64/python3.11/multiprocessing/resource_tracker.py', - 'PYMODULE'), - ('multiprocessing.shared_memory', - '/usr/lib64/python3.11/multiprocessing/shared_memory.py', - 'PYMODULE'), - ('multiprocessing.sharedctypes', - '/usr/lib64/python3.11/multiprocessing/sharedctypes.py', - 'PYMODULE'), - ('multiprocessing.spawn', - '/usr/lib64/python3.11/multiprocessing/spawn.py', - 'PYMODULE'), - ('multiprocessing.synchronize', - '/usr/lib64/python3.11/multiprocessing/synchronize.py', - 'PYMODULE'), - ('multiprocessing.util', - '/usr/lib64/python3.11/multiprocessing/util.py', - 'PYMODULE'), - ('netrc', '/usr/lib64/python3.11/netrc.py', 'PYMODULE'), - ('nturl2path', '/usr/lib64/python3.11/nturl2path.py', 'PYMODULE'), - ('numbers', '/usr/lib64/python3.11/numbers.py', 'PYMODULE'), - ('opcode', '/usr/lib64/python3.11/opcode.py', 'PYMODULE'), - ('pathlib', '/usr/lib64/python3.11/pathlib.py', 'PYMODULE'), - ('pickle', '/usr/lib64/python3.11/pickle.py', 'PYMODULE'), - ('pkgutil', '/usr/lib64/python3.11/pkgutil.py', 'PYMODULE'), - ('platform', '/usr/lib64/python3.11/platform.py', 'PYMODULE'), - ('pprint', '/usr/lib64/python3.11/pprint.py', 'PYMODULE'), - ('py_compile', '/usr/lib64/python3.11/py_compile.py', 'PYMODULE'), - ('pyglet', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/__init__.py', - 'PYMODULE'), - ('pyglet.app', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/app/__init__.py', - 'PYMODULE'), - ('pyglet.app.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/app/base.py', - 'PYMODULE'), - ('pyglet.app.cocoa', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/app/cocoa.py', - 'PYMODULE'), - ('pyglet.app.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/app/win32.py', - 'PYMODULE'), - ('pyglet.app.xlib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/app/xlib.py', - 'PYMODULE'), - ('pyglet.canvas', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/canvas/__init__.py', - 'PYMODULE'), - ('pyglet.canvas.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/canvas/base.py', - 'PYMODULE'), - ('pyglet.canvas.cocoa', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/canvas/cocoa.py', - 'PYMODULE'), - ('pyglet.canvas.headless', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/canvas/headless.py', - 'PYMODULE'), - ('pyglet.canvas.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/canvas/win32.py', - 'PYMODULE'), - ('pyglet.canvas.xlib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/canvas/xlib.py', - 'PYMODULE'), - ('pyglet.canvas.xlib_vidmoderestore', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/canvas/xlib_vidmoderestore.py', - 'PYMODULE'), - ('pyglet.clock', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/clock.py', - 'PYMODULE'), - ('pyglet.customtypes', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/customtypes.py', - 'PYMODULE'), - ('pyglet.event', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/event.py', - 'PYMODULE'), - ('pyglet.extlibs', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/extlibs/__init__.py', - 'PYMODULE'), - ('pyglet.extlibs.earcut', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/extlibs/earcut.py', - 'PYMODULE'), - ('pyglet.extlibs.png', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/extlibs/png.py', - 'PYMODULE'), - ('pyglet.font', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/__init__.py', - 'PYMODULE'), - ('pyglet.font.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/base.py', - 'PYMODULE'), - ('pyglet.font.directwrite', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/directwrite.py', - 'PYMODULE'), - ('pyglet.font.fontconfig', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/fontconfig.py', - 'PYMODULE'), - ('pyglet.font.freetype', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/freetype.py', - 'PYMODULE'), - ('pyglet.font.freetype_lib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/freetype_lib.py', - 'PYMODULE'), - ('pyglet.font.quartz', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/quartz.py', - 'PYMODULE'), - ('pyglet.font.user', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/user.py', - 'PYMODULE'), - ('pyglet.font.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/font/win32.py', - 'PYMODULE'), - ('pyglet.gl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/__init__.py', - 'PYMODULE'), - ('pyglet.gl.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/base.py', - 'PYMODULE'), - ('pyglet.gl.cocoa', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/cocoa.py', - 'PYMODULE'), - ('pyglet.gl.gl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/gl.py', - 'PYMODULE'), - ('pyglet.gl.gl_compat', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/gl_compat.py', - 'PYMODULE'), - ('pyglet.gl.gl_info', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/gl_info.py', - 'PYMODULE'), - ('pyglet.gl.glx', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/glx.py', - 'PYMODULE'), - ('pyglet.gl.glx_info', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/glx_info.py', - 'PYMODULE'), - ('pyglet.gl.glxext_arb', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/glxext_arb.py', - 'PYMODULE'), - ('pyglet.gl.glxext_mesa', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/glxext_mesa.py', - 'PYMODULE'), - ('pyglet.gl.headless', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/headless.py', - 'PYMODULE'), - ('pyglet.gl.lib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/lib.py', - 'PYMODULE'), - ('pyglet.gl.lib_agl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/lib_agl.py', - 'PYMODULE'), - ('pyglet.gl.lib_glx', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/lib_glx.py', - 'PYMODULE'), - ('pyglet.gl.lib_wgl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/lib_wgl.py', - 'PYMODULE'), - ('pyglet.gl.wgl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/wgl.py', - 'PYMODULE'), - ('pyglet.gl.wgl_info', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/wgl_info.py', - 'PYMODULE'), - ('pyglet.gl.wglext_arb', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/wglext_arb.py', - 'PYMODULE'), - ('pyglet.gl.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/win32.py', - 'PYMODULE'), - ('pyglet.gl.xlib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gl/xlib.py', - 'PYMODULE'), - ('pyglet.graphics', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/graphics/__init__.py', - 'PYMODULE'), - ('pyglet.graphics.allocation', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/graphics/allocation.py', - 'PYMODULE'), - ('pyglet.graphics.shader', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/graphics/shader.py', - 'PYMODULE'), - ('pyglet.graphics.vertexarray', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/graphics/vertexarray.py', - 'PYMODULE'), - ('pyglet.graphics.vertexbuffer', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/graphics/vertexbuffer.py', - 'PYMODULE'), - ('pyglet.graphics.vertexdomain', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/graphics/vertexdomain.py', - 'PYMODULE'), - ('pyglet.gui', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gui/__init__.py', - 'PYMODULE'), - ('pyglet.gui.frame', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gui/frame.py', - 'PYMODULE'), - ('pyglet.gui.ninepatch', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gui/ninepatch.py', - 'PYMODULE'), - ('pyglet.gui.widgets', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/gui/widgets.py', - 'PYMODULE'), - ('pyglet.image', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/__init__.py', - 'PYMODULE'), - ('pyglet.image.animation', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/animation.py', - 'PYMODULE'), - ('pyglet.image.atlas', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/atlas.py', - 'PYMODULE'), - ('pyglet.image.buffer', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/buffer.py', - 'PYMODULE'), - ('pyglet.image.codecs', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/__init__.py', - 'PYMODULE'), - ('pyglet.image.codecs.bmp', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/bmp.py', - 'PYMODULE'), - ('pyglet.image.codecs.dds', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/dds.py', - 'PYMODULE'), - ('pyglet.image.codecs.gdiplus', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/gdiplus.py', - 'PYMODULE'), - ('pyglet.image.codecs.gdkpixbuf2', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/gdkpixbuf2.py', - 'PYMODULE'), - ('pyglet.image.codecs.gif', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/gif.py', - 'PYMODULE'), - ('pyglet.image.codecs.pil', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/pil.py', - 'PYMODULE'), - ('pyglet.image.codecs.png', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/png.py', - 'PYMODULE'), - ('pyglet.image.codecs.quartz', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/quartz.py', - 'PYMODULE'), - ('pyglet.image.codecs.s3tc', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/s3tc.py', - 'PYMODULE'), - ('pyglet.image.codecs.wic', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/image/codecs/wic.py', - 'PYMODULE'), - ('pyglet.input', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/__init__.py', - 'PYMODULE'), - ('pyglet.input.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/base.py', - 'PYMODULE'), - ('pyglet.input.controller', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/controller.py', - 'PYMODULE'), - ('pyglet.input.controller_db', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/controller_db.py', - 'PYMODULE'), - ('pyglet.input.linux', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/linux/__init__.py', - 'PYMODULE'), - ('pyglet.input.linux.evdev', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/linux/evdev.py', - 'PYMODULE'), - ('pyglet.input.linux.evdev_constants', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/linux/evdev_constants.py', - 'PYMODULE'), - ('pyglet.input.linux.x11_xinput', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/linux/x11_xinput.py', - 'PYMODULE'), - ('pyglet.input.linux.x11_xinput_tablet', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/linux/x11_xinput_tablet.py', - 'PYMODULE'), - ('pyglet.input.macos', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/macos/__init__.py', - 'PYMODULE'), - ('pyglet.input.macos.darwin_hid', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/macos/darwin_hid.py', - 'PYMODULE'), - ('pyglet.input.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/win32/__init__.py', - 'PYMODULE'), - ('pyglet.input.win32.directinput', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/win32/directinput.py', - 'PYMODULE'), - ('pyglet.input.win32.wintab', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/win32/wintab.py', - 'PYMODULE'), - ('pyglet.input.win32.xinput', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/input/win32/xinput.py', - 'PYMODULE'), - ('pyglet.lib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/lib.py', - 'PYMODULE'), - ('pyglet.libs', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/__init__.py', - 'PYMODULE'), - ('pyglet.libs.darwin', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/darwin/__init__.py', - 'PYMODULE'), - ('pyglet.libs.darwin.cocoapy', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/darwin/cocoapy/__init__.py', - 'PYMODULE'), - ('pyglet.libs.darwin.cocoapy.cocoalibs', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/darwin/cocoapy/cocoalibs.py', - 'PYMODULE'), - ('pyglet.libs.darwin.cocoapy.cocoatypes', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/darwin/cocoapy/cocoatypes.py', - 'PYMODULE'), - ('pyglet.libs.darwin.cocoapy.runtime', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/darwin/cocoapy/runtime.py', - 'PYMODULE'), - ('pyglet.libs.darwin.coreaudio', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/darwin/coreaudio.py', - 'PYMODULE'), - ('pyglet.libs.darwin.quartzkey', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/darwin/quartzkey.py', - 'PYMODULE'), - ('pyglet.libs.egl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/egl/__init__.py', - 'PYMODULE'), - ('pyglet.libs.egl.egl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/egl/egl.py', - 'PYMODULE'), - ('pyglet.libs.egl.eglext', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/egl/eglext.py', - 'PYMODULE'), - ('pyglet.libs.egl.lib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/egl/lib.py', - 'PYMODULE'), - ('pyglet.libs.ioctl', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/ioctl.py', - 'PYMODULE'), - ('pyglet.libs.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/__init__.py', - 'PYMODULE'), - ('pyglet.libs.win32.com', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/com.py', - 'PYMODULE'), - ('pyglet.libs.win32.constants', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/constants.py', - 'PYMODULE'), - ('pyglet.libs.win32.context_managers', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/context_managers.py', - 'PYMODULE'), - ('pyglet.libs.win32.dinput', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/dinput.py', - 'PYMODULE'), - ('pyglet.libs.win32.libwintab', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/libwintab.py', - 'PYMODULE'), - ('pyglet.libs.win32.types', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/types.py', - 'PYMODULE'), - ('pyglet.libs.win32.winkey', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/win32/winkey.py', - 'PYMODULE'), - ('pyglet.libs.x11', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/x11/__init__.py', - 'PYMODULE'), - ('pyglet.libs.x11.cursorfont', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/x11/cursorfont.py', - 'PYMODULE'), - ('pyglet.libs.x11.xf86vmode', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/x11/xf86vmode.py', - 'PYMODULE'), - ('pyglet.libs.x11.xinerama', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/x11/xinerama.py', - 'PYMODULE'), - ('pyglet.libs.x11.xinput', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/x11/xinput.py', - 'PYMODULE'), - ('pyglet.libs.x11.xlib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/x11/xlib.py', - 'PYMODULE'), - ('pyglet.libs.x11.xsync', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/libs/x11/xsync.py', - 'PYMODULE'), - ('pyglet.math', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/math.py', - 'PYMODULE'), - ('pyglet.media', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/__init__.py', - 'PYMODULE'), - ('pyglet.media.buffered_logger', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/buffered_logger.py', - 'PYMODULE'), - ('pyglet.media.codecs', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/__init__.py', - 'PYMODULE'), - ('pyglet.media.codecs.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/base.py', - 'PYMODULE'), - ('pyglet.media.codecs.coreaudio', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/coreaudio.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg_lib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg_lib/__init__.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg_lib.compat', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg_lib/compat.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg_lib.libavcodec', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg_lib/libavcodec.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg_lib.libavformat', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg_lib/libavformat.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg_lib.libavutil', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg_lib/libavutil.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg_lib.libswresample', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg_lib/libswresample.py', - 'PYMODULE'), - ('pyglet.media.codecs.ffmpeg_lib.libswscale', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/ffmpeg_lib/libswscale.py', - 'PYMODULE'), - ('pyglet.media.codecs.gstreamer', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/gstreamer.py', - 'PYMODULE'), - ('pyglet.media.codecs.pyogg', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/pyogg.py', - 'PYMODULE'), - ('pyglet.media.codecs.wave', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/wave.py', - 'PYMODULE'), - ('pyglet.media.codecs.wmf', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/codecs/wmf.py', - 'PYMODULE'), - ('pyglet.media.devices', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/devices/__init__.py', - 'PYMODULE'), - ('pyglet.media.devices.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/devices/base.py', - 'PYMODULE'), - ('pyglet.media.devices.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/devices/win32.py', - 'PYMODULE'), - ('pyglet.media.drivers', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/__init__.py', - 'PYMODULE'), - ('pyglet.media.drivers.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/base.py', - 'PYMODULE'), - ('pyglet.media.drivers.directsound', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/directsound/__init__.py', - 'PYMODULE'), - ('pyglet.media.drivers.directsound.adaptation', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/directsound/adaptation.py', - 'PYMODULE'), - ('pyglet.media.drivers.directsound.exceptions', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/directsound/exceptions.py', - 'PYMODULE'), - ('pyglet.media.drivers.directsound.interface', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/directsound/interface.py', - 'PYMODULE'), - ('pyglet.media.drivers.directsound.lib_dsound', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/directsound/lib_dsound.py', - 'PYMODULE'), - ('pyglet.media.drivers.listener', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/listener.py', - 'PYMODULE'), - ('pyglet.media.drivers.openal', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/openal/__init__.py', - 'PYMODULE'), - ('pyglet.media.drivers.openal.adaptation', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/openal/adaptation.py', - 'PYMODULE'), - ('pyglet.media.drivers.openal.interface', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/openal/interface.py', - 'PYMODULE'), - ('pyglet.media.drivers.openal.lib_alc', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/openal/lib_alc.py', - 'PYMODULE'), - ('pyglet.media.drivers.openal.lib_openal', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/openal/lib_openal.py', - 'PYMODULE'), - ('pyglet.media.drivers.pulse', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/pulse/__init__.py', - 'PYMODULE'), - ('pyglet.media.drivers.pulse.adaptation', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/pulse/adaptation.py', - 'PYMODULE'), - ('pyglet.media.drivers.pulse.interface', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/pulse/interface.py', - 'PYMODULE'), - ('pyglet.media.drivers.pulse.lib_pulseaudio', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/pulse/lib_pulseaudio.py', - 'PYMODULE'), - ('pyglet.media.drivers.silent', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/silent/__init__.py', - 'PYMODULE'), - ('pyglet.media.drivers.silent.adaptation', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/silent/adaptation.py', - 'PYMODULE'), - ('pyglet.media.drivers.xaudio2', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/xaudio2/__init__.py', - 'PYMODULE'), - ('pyglet.media.drivers.xaudio2.adaptation', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/xaudio2/adaptation.py', - 'PYMODULE'), - ('pyglet.media.drivers.xaudio2.interface', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/xaudio2/interface.py', - 'PYMODULE'), - ('pyglet.media.drivers.xaudio2.lib_xaudio2', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/drivers/xaudio2/lib_xaudio2.py', - 'PYMODULE'), - ('pyglet.media.exceptions', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/exceptions.py', - 'PYMODULE'), - ('pyglet.media.player', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/player.py', - 'PYMODULE'), - ('pyglet.media.player_worker_thread', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/player_worker_thread.py', - 'PYMODULE'), - ('pyglet.media.synthesis', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/media/synthesis.py', - 'PYMODULE'), - ('pyglet.model', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/model/__init__.py', - 'PYMODULE'), - ('pyglet.model.codecs', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/model/codecs/__init__.py', - 'PYMODULE'), - ('pyglet.model.codecs.obj', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/model/codecs/obj.py', - 'PYMODULE'), - ('pyglet.resource', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/resource.py', - 'PYMODULE'), - ('pyglet.shapes', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/shapes.py', - 'PYMODULE'), - ('pyglet.sprite', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/sprite.py', - 'PYMODULE'), - ('pyglet.text', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/__init__.py', - 'PYMODULE'), - ('pyglet.text.caret', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/caret.py', - 'PYMODULE'), - ('pyglet.text.document', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/document.py', - 'PYMODULE'), - ('pyglet.text.formats', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/formats/__init__.py', - 'PYMODULE'), - ('pyglet.text.formats.attributed', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/formats/attributed.py', - 'PYMODULE'), - ('pyglet.text.formats.html', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/formats/html.py', - 'PYMODULE'), - ('pyglet.text.formats.plaintext', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/formats/plaintext.py', - 'PYMODULE'), - ('pyglet.text.formats.structured', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/formats/structured.py', - 'PYMODULE'), - ('pyglet.text.layout', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/layout/__init__.py', - 'PYMODULE'), - ('pyglet.text.layout.base', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/layout/base.py', - 'PYMODULE'), - ('pyglet.text.layout.incremental', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/layout/incremental.py', - 'PYMODULE'), - ('pyglet.text.layout.scrolling', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/layout/scrolling.py', - 'PYMODULE'), - ('pyglet.text.runlist', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/text/runlist.py', - 'PYMODULE'), - ('pyglet.util', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/util.py', - 'PYMODULE'), - ('pyglet.window', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/__init__.py', - 'PYMODULE'), - ('pyglet.window.cocoa', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/cocoa/__init__.py', - 'PYMODULE'), - ('pyglet.window.cocoa.pyglet_delegate', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/cocoa/pyglet_delegate.py', - 'PYMODULE'), - ('pyglet.window.cocoa.pyglet_textview', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/cocoa/pyglet_textview.py', - 'PYMODULE'), - ('pyglet.window.cocoa.pyglet_view', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/cocoa/pyglet_view.py', - 'PYMODULE'), - ('pyglet.window.cocoa.pyglet_window', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/cocoa/pyglet_window.py', - 'PYMODULE'), - ('pyglet.window.cocoa.systemcursor', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/cocoa/systemcursor.py', - 'PYMODULE'), - ('pyglet.window.event', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/event.py', - 'PYMODULE'), - ('pyglet.window.headless', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/headless/__init__.py', - 'PYMODULE'), - ('pyglet.window.key', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/key.py', - 'PYMODULE'), - ('pyglet.window.mouse', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/mouse.py', - 'PYMODULE'), - ('pyglet.window.win32', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/win32/__init__.py', - 'PYMODULE'), - ('pyglet.window.xlib', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/pyglet/window/xlib/__init__.py', - 'PYMODULE'), - ('queue', '/usr/lib64/python3.11/queue.py', 'PYMODULE'), - ('quopri', '/usr/lib64/python3.11/quopri.py', 'PYMODULE'), - ('random', '/usr/lib64/python3.11/random.py', 'PYMODULE'), - ('runpy', '/usr/lib64/python3.11/runpy.py', 'PYMODULE'), - ('sdl2', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/__init__.py', - 'PYMODULE'), - ('sdl2._internal', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/_internal.py', - 'PYMODULE'), - ('sdl2._sdl_init', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/_sdl_init.py', - 'PYMODULE'), - ('sdl2.audio', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/audio.py', - 'PYMODULE'), - ('sdl2.blendmode', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/blendmode.py', - 'PYMODULE'), - ('sdl2.clipboard', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/clipboard.py', - 'PYMODULE'), - ('sdl2.cpuinfo', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/cpuinfo.py', - 'PYMODULE'), - ('sdl2.dll', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/dll.py', - 'PYMODULE'), - ('sdl2.endian', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/endian.py', - 'PYMODULE'), - ('sdl2.error', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/error.py', - 'PYMODULE'), - ('sdl2.events', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/events.py', - 'PYMODULE'), - ('sdl2.ext', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/__init__.py', - 'PYMODULE'), - ('sdl2.ext.algorithms', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/algorithms.py', - 'PYMODULE'), - ('sdl2.ext.array', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/array.py', - 'PYMODULE'), - ('sdl2.ext.bitmapfont', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/bitmapfont.py', - 'PYMODULE'), - ('sdl2.ext.color', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/color.py', - 'PYMODULE'), - ('sdl2.ext.common', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/common.py', - 'PYMODULE'), - ('sdl2.ext.compat', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/compat.py', - 'PYMODULE'), - ('sdl2.ext.displays', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/displays.py', - 'PYMODULE'), - ('sdl2.ext.draw', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/draw.py', - 'PYMODULE'), - ('sdl2.ext.ebs', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/ebs.py', - 'PYMODULE'), - ('sdl2.ext.err', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/err.py', - 'PYMODULE'), - ('sdl2.ext.events', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/events.py', - 'PYMODULE'), - ('sdl2.ext.image', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/image.py', - 'PYMODULE'), - ('sdl2.ext.input', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/input.py', - 'PYMODULE'), - ('sdl2.ext.mouse', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/mouse.py', - 'PYMODULE'), - ('sdl2.ext.msgbox', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/msgbox.py', - 'PYMODULE'), - ('sdl2.ext.pixelaccess', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/pixelaccess.py', - 'PYMODULE'), - ('sdl2.ext.renderer', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/renderer.py', - 'PYMODULE'), - ('sdl2.ext.resources', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/resources.py', - 'PYMODULE'), - ('sdl2.ext.sprite', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/sprite.py', - 'PYMODULE'), - ('sdl2.ext.spritesystem', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/spritesystem.py', - 'PYMODULE'), - ('sdl2.ext.surface', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/surface.py', - 'PYMODULE'), - ('sdl2.ext.ttf', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/ttf.py', - 'PYMODULE'), - ('sdl2.ext.uisystem', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/uisystem.py', - 'PYMODULE'), - ('sdl2.ext.window', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/ext/window.py', - 'PYMODULE'), - ('sdl2.filesystem', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/filesystem.py', - 'PYMODULE'), - ('sdl2.gamecontroller', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/gamecontroller.py', - 'PYMODULE'), - ('sdl2.gesture', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/gesture.py', - 'PYMODULE'), - ('sdl2.guid', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/guid.py', - 'PYMODULE'), - ('sdl2.haptic', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/haptic.py', - 'PYMODULE'), - ('sdl2.hidapi', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/hidapi.py', - 'PYMODULE'), - ('sdl2.hints', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/hints.py', - 'PYMODULE'), - ('sdl2.joystick', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/joystick.py', - 'PYMODULE'), - ('sdl2.keyboard', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/keyboard.py', - 'PYMODULE'), - ('sdl2.keycode', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/keycode.py', - 'PYMODULE'), - ('sdl2.loadso', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/loadso.py', - 'PYMODULE'), - ('sdl2.locale', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/locale.py', - 'PYMODULE'), - ('sdl2.log', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/log.py', - 'PYMODULE'), - ('sdl2.messagebox', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/messagebox.py', - 'PYMODULE'), - ('sdl2.metal', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/metal.py', - 'PYMODULE'), - ('sdl2.misc', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/misc.py', - 'PYMODULE'), - ('sdl2.mouse', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/mouse.py', - 'PYMODULE'), - ('sdl2.pixels', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/pixels.py', - 'PYMODULE'), - ('sdl2.platform', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/platform.py', - 'PYMODULE'), - ('sdl2.power', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/power.py', - 'PYMODULE'), - ('sdl2.rect', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/rect.py', - 'PYMODULE'), - ('sdl2.render', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/render.py', - 'PYMODULE'), - ('sdl2.rwops', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/rwops.py', - 'PYMODULE'), - ('sdl2.scancode', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/scancode.py', - 'PYMODULE'), - ('sdl2.sdlimage', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/sdlimage.py', - 'PYMODULE'), - ('sdl2.sdlttf', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/sdlttf.py', - 'PYMODULE'), - ('sdl2.sensor', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/sensor.py', - 'PYMODULE'), - ('sdl2.shape', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/shape.py', - 'PYMODULE'), - ('sdl2.stdinc', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/stdinc.py', - 'PYMODULE'), - ('sdl2.surface', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/surface.py', - 'PYMODULE'), - ('sdl2.syswm', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/syswm.py', - 'PYMODULE'), - ('sdl2.timer', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/timer.py', - 'PYMODULE'), - ('sdl2.touch', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/touch.py', - 'PYMODULE'), - ('sdl2.version', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/version.py', - 'PYMODULE'), - ('sdl2.video', - '/home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/sdl2/video.py', - 'PYMODULE'), - ('secrets', '/usr/lib64/python3.11/secrets.py', 'PYMODULE'), - ('selectors', '/usr/lib64/python3.11/selectors.py', 'PYMODULE'), - ('shlex', '/usr/lib64/python3.11/shlex.py', 'PYMODULE'), - ('shutil', '/usr/lib64/python3.11/shutil.py', 'PYMODULE'), - ('signal', '/usr/lib64/python3.11/signal.py', 'PYMODULE'), - ('socket', '/usr/lib64/python3.11/socket.py', 'PYMODULE'), - ('ssl', '/usr/lib64/python3.11/ssl.py', 'PYMODULE'), - ('statistics', '/usr/lib64/python3.11/statistics.py', 'PYMODULE'), - ('string', '/usr/lib64/python3.11/string.py', 'PYMODULE'), - ('stringprep', '/usr/lib64/python3.11/stringprep.py', 'PYMODULE'), - ('subprocess', '/usr/lib64/python3.11/subprocess.py', 'PYMODULE'), - ('tarfile', '/usr/lib64/python3.11/tarfile.py', 'PYMODULE'), - ('tempfile', '/usr/lib64/python3.11/tempfile.py', 'PYMODULE'), - ('textwrap', '/usr/lib64/python3.11/textwrap.py', 'PYMODULE'), - ('threading', '/usr/lib64/python3.11/threading.py', 'PYMODULE'), - ('token', '/usr/lib64/python3.11/token.py', 'PYMODULE'), - ('tokenize', '/usr/lib64/python3.11/tokenize.py', 'PYMODULE'), - ('tracemalloc', '/usr/lib64/python3.11/tracemalloc.py', 'PYMODULE'), - ('typing', '/usr/lib64/python3.11/typing.py', 'PYMODULE'), - ('urllib', '/usr/lib64/python3.11/urllib/__init__.py', 'PYMODULE'), - ('urllib.error', '/usr/lib64/python3.11/urllib/error.py', 'PYMODULE'), - ('urllib.parse', '/usr/lib64/python3.11/urllib/parse.py', 'PYMODULE'), - ('urllib.request', '/usr/lib64/python3.11/urllib/request.py', 'PYMODULE'), - ('urllib.response', '/usr/lib64/python3.11/urllib/response.py', 'PYMODULE'), - ('uuid', '/usr/lib64/python3.11/uuid.py', 'PYMODULE'), - ('wave', '/usr/lib64/python3.11/wave.py', 'PYMODULE'), - ('xml', '/usr/lib64/python3.11/xml/__init__.py', 'PYMODULE'), - ('xml.etree', '/usr/lib64/python3.11/xml/etree/__init__.py', 'PYMODULE'), - ('xml.etree.ElementInclude', - '/usr/lib64/python3.11/xml/etree/ElementInclude.py', - 'PYMODULE'), - ('xml.etree.ElementPath', - '/usr/lib64/python3.11/xml/etree/ElementPath.py', - 'PYMODULE'), - ('xml.etree.ElementTree', - '/usr/lib64/python3.11/xml/etree/ElementTree.py', - 'PYMODULE'), - ('xml.etree.cElementTree', - '/usr/lib64/python3.11/xml/etree/cElementTree.py', - 'PYMODULE'), - ('xml.parsers', '/usr/lib64/python3.11/xml/parsers/__init__.py', 'PYMODULE'), - ('xml.parsers.expat', - '/usr/lib64/python3.11/xml/parsers/expat.py', - 'PYMODULE'), - ('xml.sax', '/usr/lib64/python3.11/xml/sax/__init__.py', 'PYMODULE'), - ('xml.sax._exceptions', - '/usr/lib64/python3.11/xml/sax/_exceptions.py', - 'PYMODULE'), - ('xml.sax.expatreader', - '/usr/lib64/python3.11/xml/sax/expatreader.py', - 'PYMODULE'), - ('xml.sax.handler', '/usr/lib64/python3.11/xml/sax/handler.py', 'PYMODULE'), - ('xml.sax.saxutils', '/usr/lib64/python3.11/xml/sax/saxutils.py', 'PYMODULE'), - ('xml.sax.xmlreader', - '/usr/lib64/python3.11/xml/sax/xmlreader.py', - 'PYMODULE'), - ('xmlrpc', '/usr/lib64/python3.11/xmlrpc/__init__.py', 'PYMODULE'), - ('xmlrpc.client', '/usr/lib64/python3.11/xmlrpc/client.py', 'PYMODULE'), - ('zipfile', '/usr/lib64/python3.11/zipfile.py', 'PYMODULE'), - ('zipimport', '/usr/lib64/python3.11/zipimport.py', 'PYMODULE')]) diff --git a/build/engine_demo/base_library.zip b/build/engine_demo/base_library.zip deleted file mode 100644 index cf49962..0000000 Binary files a/build/engine_demo/base_library.zip and /dev/null differ diff --git a/build/engine_demo/engine_demo.pkg b/build/engine_demo/engine_demo.pkg deleted file mode 100644 index 40b8ca9..0000000 Binary files a/build/engine_demo/engine_demo.pkg and /dev/null differ diff --git a/build/engine_demo/localpycs/pyimod01_archive.pyc b/build/engine_demo/localpycs/pyimod01_archive.pyc deleted file mode 100644 index 0fc17ff..0000000 Binary files a/build/engine_demo/localpycs/pyimod01_archive.pyc and /dev/null differ diff --git a/build/engine_demo/localpycs/pyimod02_importers.pyc b/build/engine_demo/localpycs/pyimod02_importers.pyc deleted file mode 100644 index 35cee88..0000000 Binary files a/build/engine_demo/localpycs/pyimod02_importers.pyc and /dev/null differ diff --git a/build/engine_demo/localpycs/pyimod03_ctypes.pyc b/build/engine_demo/localpycs/pyimod03_ctypes.pyc deleted file mode 100644 index c580d98..0000000 Binary files a/build/engine_demo/localpycs/pyimod03_ctypes.pyc and /dev/null differ diff --git a/build/engine_demo/localpycs/struct.pyc b/build/engine_demo/localpycs/struct.pyc deleted file mode 100644 index 3fa7004..0000000 Binary files a/build/engine_demo/localpycs/struct.pyc and /dev/null differ diff --git a/build/engine_demo/warn-engine_demo.txt b/build/engine_demo/warn-engine_demo.txt deleted file mode 100644 index 171a5fd..0000000 --- a/build/engine_demo/warn-engine_demo.txt +++ /dev/null @@ -1,49 +0,0 @@ - -This file lists modules PyInstaller was not able to find. This does not -necessarily mean this module is required for running your program. Python and -Python 3rd-party packages include a lot of conditional or optional modules. For -example the module 'ntpath' only exists on Windows, whereas the module -'posixpath' only exists on Posix systems. - -Types if import: -* top-level: imported at the top-level - look at these first -* conditional: imported within an if-statement -* delayed: imported within a function -* optional: imported within a try-except-statement - -IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for - tracking down the missing module yourself. Thanks! - -missing module named _winapi - imported by encodings (delayed, conditional, optional), subprocess (conditional), ntpath (optional), mimetypes (optional), multiprocessing.connection (optional), multiprocessing.spawn (delayed, conditional), multiprocessing.reduction (conditional), multiprocessing.shared_memory (conditional), multiprocessing.heap (conditional), multiprocessing.popen_spawn_win32 (top-level) -missing module named msvcrt - imported by subprocess (optional), getpass (optional), multiprocessing.spawn (delayed, conditional), multiprocessing.popen_spawn_win32 (top-level), pyglet.extlibs.png (delayed, conditional) -missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), zipimport (top-level) -excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level) -missing module named org - imported by pickle (optional) -missing module named winreg - imported by importlib._bootstrap_external (conditional), platform (delayed, optional), mimetypes (optional), urllib.request (delayed, conditional, optional) -missing module named nt - imported by shutil (conditional), importlib._bootstrap_external (conditional), os (delayed, conditional, optional), ntpath (optional), ctypes (delayed, conditional) -missing module named 'org.python' - imported by copy (optional), xml.sax (delayed, conditional) -missing module named _scproxy - imported by urllib.request (conditional) -missing module named 'java.lang' - imported by platform (delayed, optional), xml.sax._exceptions (conditional) -missing module named multiprocessing.BufferTooShort - imported by multiprocessing (top-level), multiprocessing.connection (top-level) -missing module named multiprocessing.AuthenticationError - imported by multiprocessing (top-level), multiprocessing.connection (top-level) -missing module named multiprocessing.get_context - imported by multiprocessing (top-level), multiprocessing.pool (top-level), multiprocessing.managers (top-level), multiprocessing.sharedctypes (top-level) -missing module named multiprocessing.TimeoutError - imported by multiprocessing (top-level), multiprocessing.pool (top-level) -missing module named multiprocessing.set_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level) -missing module named multiprocessing.get_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level) -missing module named multiprocessing.Pool - imported by multiprocessing (optional), sdl2.ext.events (optional) -missing module named pyimod02_importers - imported by /home/enne2/Sviluppo/enne2engine/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py (delayed) -missing module named collections.Iterable - imported by collections (optional), sdl2.ext.compat (optional) -missing module named collections.Callable - imported by collections (conditional, optional), sdl2.rwops (conditional, optional), sdl2.ext.compat (optional) -missing module named vms_lib - imported by platform (delayed, optional) -missing module named java - imported by platform (delayed) -missing module named _winreg - imported by platform (delayed, optional) -missing module named pyogg - imported by pyglet.media.codecs.pyogg (top-level) -missing module named 'gi.repository' - imported by pyglet.media.codecs.gstreamer (optional) -missing module named gi - imported by pyglet.media.codecs.gstreamer (optional) -missing module named olefile - imported by PIL.FpxImagePlugin (top-level), PIL.MicImagePlugin (top-level) -missing module named typing_extensions - imported by PIL._typing (conditional, optional) -missing module named numpy - imported by PIL._typing (conditional, optional), sdl2.ext.pixelaccess (optional) -missing module named defusedxml - imported by PIL.Image (optional) -missing module named sdl2dll - imported by sdl2.dll (optional) -missing module named urllib2 - imported by sdl2.ext.resources (conditional) -missing module named urlparse - imported by sdl2.ext.resources (conditional) diff --git a/build/engine_demo/xref-engine_demo.html b/build/engine_demo/xref-engine_demo.html deleted file mode 100644 index bdb457d..0000000 --- a/build/engine_demo/xref-engine_demo.html +++ /dev/null @@ -1,20598 +0,0 @@ - - - - - modulegraph cross reference for engine_demo.py, pyi_rth_inspect.py, pyi_rth_multiprocessing.py, pyi_rth_pkgutil.py - - - -

modulegraph cross reference for engine_demo.py, pyi_rth_inspect.py, pyi_rth_multiprocessing.py, pyi_rth_pkgutil.py

- -
- - engine_demo.py -Script
-imports: - _collections_abc - • _weakrefset - • abc - • codecs - • collections - • collections.abc - • copyreg - • encodings - • encodings.aliases - • encodings.ascii - • encodings.base64_codec - • encodings.big5 - • encodings.big5hkscs - • encodings.bz2_codec - • encodings.charmap - • encodings.cp037 - • encodings.cp1006 - • encodings.cp1026 - • encodings.cp1125 - • encodings.cp1140 - • encodings.cp1250 - • encodings.cp1251 - • encodings.cp1252 - • encodings.cp1253 - • encodings.cp1254 - • encodings.cp1255 - • encodings.cp1256 - • encodings.cp1257 - • encodings.cp1258 - • encodings.cp273 - • encodings.cp424 - • encodings.cp437 - • encodings.cp500 - • encodings.cp720 - • encodings.cp737 - • encodings.cp775 - • encodings.cp850 - • encodings.cp852 - • encodings.cp855 - • encodings.cp856 - • encodings.cp857 - • encodings.cp858 - • encodings.cp860 - • encodings.cp861 - • encodings.cp862 - • encodings.cp863 - • encodings.cp864 - • encodings.cp865 - • encodings.cp866 - • encodings.cp869 - • encodings.cp874 - • encodings.cp875 - • encodings.cp932 - • encodings.cp949 - • encodings.cp950 - • encodings.euc_jis_2004 - • encodings.euc_jisx0213 - • encodings.euc_jp - • encodings.euc_kr - • encodings.gb18030 - • encodings.gb2312 - • encodings.gbk - • encodings.hex_codec - • encodings.hp_roman8 - • encodings.hz - • encodings.idna - • encodings.iso2022_jp - • encodings.iso2022_jp_1 - • encodings.iso2022_jp_2 - • encodings.iso2022_jp_2004 - • encodings.iso2022_jp_3 - • encodings.iso2022_jp_ext - • encodings.iso2022_kr - • encodings.iso8859_1 - • encodings.iso8859_10 - • encodings.iso8859_11 - • encodings.iso8859_13 - • encodings.iso8859_14 - • encodings.iso8859_15 - • encodings.iso8859_16 - • encodings.iso8859_2 - • encodings.iso8859_3 - • encodings.iso8859_4 - • encodings.iso8859_5 - • encodings.iso8859_6 - • encodings.iso8859_7 - • encodings.iso8859_8 - • encodings.iso8859_9 - • encodings.johab - • encodings.koi8_r - • encodings.koi8_t - • encodings.koi8_u - • encodings.kz1048 - • encodings.latin_1 - • encodings.mac_arabic - • encodings.mac_croatian - • encodings.mac_cyrillic - • encodings.mac_farsi - • encodings.mac_greek - • encodings.mac_iceland - • encodings.mac_latin2 - • encodings.mac_roman - • encodings.mac_romanian - • encodings.mac_turkish - • encodings.mbcs - • encodings.oem - • encodings.palmos - • encodings.ptcp154 - • encodings.punycode - • encodings.quopri_codec - • encodings.raw_unicode_escape - • encodings.rot_13 - • encodings.shift_jis - • encodings.shift_jis_2004 - • encodings.shift_jisx0213 - • encodings.tis_620 - • encodings.undefined - • encodings.unicode_escape - • encodings.utf_16 - • encodings.utf_16_be - • encodings.utf_16_le - • encodings.utf_32 - • encodings.utf_32_be - • encodings.utf_32_le - • encodings.utf_7 - • encodings.utf_8 - • encodings.utf_8_sig - • encodings.uu_codec - • encodings.zlib_codec - • enne2engine.Entities.entity - • enne2engine.controls - • enne2engine.pyglet_wrapper - • enne2engine.sdl2_wrapper - • enum - • functools - • genericpath - • heapq - • io - • keyword - • linecache - • locale - • ntpath - • operator - • os - • posixpath - • pyi_rth_inspect.py - • pyi_rth_multiprocessing.py - • pyi_rth_pkgutil.py - • re - • re._casefix - • re._compiler - • re._constants - • re._parser - • reprlib - • sre_compile - • sre_constants - • sre_parse - • stat - • sys - • traceback - • types - • warnings - • weakref - -
- -
- -
- - pyi_rth_inspect.py -Script
-imports: - inspect - • os - • sys - • zipfile - -
-
-imported by: - engine_demo.py - -
- -
- -
- - pyi_rth_multiprocessing.py -Script
-imports: - multiprocessing - • multiprocessing.spawn - • subprocess - • sys - -
-
-imported by: - engine_demo.py - -
- -
- -
- - pyi_rth_pkgutil.py -Script
-imports: - pkgutil - • pyimod02_importers - -
-
-imported by: - engine_demo.py - -
- -
- -
- - 'gi.repository' -MissingModule
-imported by: - pyglet.media.codecs.gstreamer - -
- -
- -
- - 'java.lang' -MissingModule
-imported by: - platform - • xml.sax._exceptions - -
- -
- -
- - 'org.python' -MissingModule
-imported by: - copy - • xml.sax - -
- -
- -
- - PIL -Package
-imports: - PIL - • PIL.BmpImagePlugin - • PIL.ExifTags - • PIL.GifImagePlugin - • PIL.GimpGradientFile - • PIL.GimpPaletteFile - • PIL.Image - • PIL.ImageChops - • PIL.ImageCms - • PIL.ImageColor - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageMath - • PIL.ImageMode - • PIL.ImageOps - • PIL.ImagePalette - • PIL.ImageQt - • PIL.ImageSequence - • PIL.ImageShow - • PIL.ImageTk - • PIL.ImageWin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.PaletteFile - • PIL.PdfParser - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.TiffImagePlugin - • PIL.TiffTags - • PIL._imaging - • PIL._imagingcms - • PIL._imagingmath - • PIL._imagingtk - • PIL._version - • PIL._webp - • PIL.features - • __future__ - -
-
-imported by: - PIL - • PIL.BlpImagePlugin - • PIL.BmpImagePlugin - • PIL.BufrStubImagePlugin - • PIL.CurImagePlugin - • PIL.DcxImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.ExifTags - • PIL.FitsImagePlugin - • PIL.FliImagePlugin - • PIL.FpxImagePlugin - • PIL.FtexImagePlugin - • PIL.GbrImagePlugin - • PIL.GifImagePlugin - • PIL.GimpGradientFile - • PIL.GimpPaletteFile - • PIL.GribStubImagePlugin - • PIL.Hdf5StubImagePlugin - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageChops - • PIL.ImageCms - • PIL.ImageColor - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageMath - • PIL.ImageMode - • PIL.ImageOps - • PIL.ImagePalette - • PIL.ImageQt - • PIL.ImageSequence - • PIL.ImageShow - • PIL.ImageTk - • PIL.ImageWin - • PIL.ImtImagePlugin - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.JpegPresets - • PIL.McIdasImagePlugin - • PIL.MicImagePlugin - • PIL.MpegImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PaletteFile - • PIL.PalmImagePlugin - • PIL.PcdImagePlugin - • PIL.PcxImagePlugin - • PIL.PdfImagePlugin - • PIL.PdfParser - • PIL.PixarImagePlugin - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.PsdImagePlugin - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.SunImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.TiffTags - • PIL.WebPImagePlugin - • PIL.WmfImagePlugin - • PIL.XVThumbImagePlugin - • PIL.XbmImagePlugin - • PIL.XpmImagePlugin - • PIL._binary - • PIL._deprecate - • PIL._imaging - • PIL._imagingcms - • PIL._imagingmath - • PIL._imagingtk - • PIL._typing - • PIL._util - • PIL._version - • PIL._webp - • PIL.features - • pyglet.font.user - • pyglet.image.codecs.pil - • sdl2.ext.image - -
- -
- -
- - PIL.BlpImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.JpegImagePlugin - • __future__ - • abc - • enum - • io - • os - • struct - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.BmpImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - • os - • typing - -
-
-imported by: - PIL - • PIL.CurImagePlugin - • PIL.IcoImagePlugin - • PIL.Image - -
- -
- -
- - PIL.BufrStubImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.CurImagePlugin -SourceModule
-imports: - PIL - • PIL.BmpImagePlugin - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.DcxImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.PcxImagePlugin - • PIL._binary - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.DdsImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - • enum - • io - • struct - • sys - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.EpsImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • io - • os - • re - • shutil - • subprocess - • sys - • tempfile - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.ExifTags -SourceModule
-imports: - PIL - • __future__ - • enum - -
-
-imported by: - PIL - • PIL.Image - • PIL.ImageOps - • PIL.TiffImagePlugin - -
- -
- -
- - PIL.FitsImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • gzip - • math - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.FliImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - • os - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.FpxImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • olefile - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.FtexImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • enum - • io - • struct - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.GbrImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.GifImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageChops - • PIL.ImageFile - • PIL.ImageMath - • PIL.ImageOps - • PIL.ImagePalette - • PIL.ImageSequence - • PIL._binary - • PIL._imaging - • PIL._typing - • __future__ - • copy - • enum - • functools - • io - • itertools - • math - • os - • subprocess - • typing - -
-
-imported by: - PIL - • PIL.Image - -
- -
- -
- - PIL.GimpGradientFile -SourceModule
-imports: - PIL - • PIL._binary - • __future__ - • math - • typing - -
-
-imported by: - PIL - • PIL.ImagePalette - -
- -
- -
- - PIL.GimpPaletteFile -SourceModule
-imports: - PIL - • PIL._binary - • __future__ - • re - • typing - -
-
-imported by: - PIL - • PIL.ImagePalette - -
- -
- -
- - PIL.GribStubImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.Hdf5StubImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.IcnsImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.Jpeg2KImagePlugin - • PIL.PngImagePlugin - • PIL._deprecate - • PIL.features - • __future__ - • io - • os - • struct - • sys - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.IcoImagePlugin -SourceModule
-imports: - PIL - • PIL.BmpImagePlugin - • PIL.Image - • PIL.ImageFile - • PIL.PngImagePlugin - • PIL._binary - • __future__ - • io - • math - • typing - • warnings - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.ImImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • __future__ - • os - • re - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.Image -SourceModule
-imports: - PIL - • PIL.BlpImagePlugin - • PIL.BmpImagePlugin - • PIL.BufrStubImagePlugin - • PIL.CurImagePlugin - • PIL.DcxImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.ExifTags - • PIL.FitsImagePlugin - • PIL.FliImagePlugin - • PIL.FpxImagePlugin - • PIL.FtexImagePlugin - • PIL.GbrImagePlugin - • PIL.GifImagePlugin - • PIL.GribStubImagePlugin - • PIL.Hdf5StubImagePlugin - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.ImImagePlugin - • PIL.ImageCms - • PIL.ImageColor - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageMode - • PIL.ImagePalette - • PIL.ImageQt - • PIL.ImageShow - • PIL.ImtImagePlugin - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.McIdasImagePlugin - • PIL.MicImagePlugin - • PIL.MpegImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PalmImagePlugin - • PIL.PcdImagePlugin - • PIL.PcxImagePlugin - • PIL.PdfImagePlugin - • PIL.PixarImagePlugin - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.PsdImagePlugin - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.SunImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.TiffTags - • PIL.WebPImagePlugin - • PIL.WmfImagePlugin - • PIL.XVThumbImagePlugin - • PIL.XbmImagePlugin - • PIL.XpmImagePlugin - • PIL._binary - • PIL._deprecate - • PIL._imaging - • PIL._typing - • PIL._util - • __future__ - • abc - • atexit - • builtins - • collections.abc - • defusedxml - • enum - • io - • logging - • math - • mmap - • os - • re - • struct - • sys - • tempfile - • types - • typing - • warnings - • xml.etree.ElementTree - -
-
-imported by: - PIL - • PIL.BlpImagePlugin - • PIL.BmpImagePlugin - • PIL.BufrStubImagePlugin - • PIL.CurImagePlugin - • PIL.DcxImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.FitsImagePlugin - • PIL.FliImagePlugin - • PIL.FpxImagePlugin - • PIL.FtexImagePlugin - • PIL.GbrImagePlugin - • PIL.GifImagePlugin - • PIL.GribStubImagePlugin - • PIL.Hdf5StubImagePlugin - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.ImImagePlugin - • PIL.ImageChops - • PIL.ImageCms - • PIL.ImageColor - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageMath - • PIL.ImageOps - • PIL.ImagePalette - • PIL.ImageQt - • PIL.ImageSequence - • PIL.ImageShow - • PIL.ImageTk - • PIL.ImageWin - • PIL.ImtImagePlugin - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.McIdasImagePlugin - • PIL.MicImagePlugin - • PIL.MpegImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PalmImagePlugin - • PIL.PcdImagePlugin - • PIL.PcxImagePlugin - • PIL.PdfImagePlugin - • PIL.PixarImagePlugin - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.PsdImagePlugin - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.SunImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.WebPImagePlugin - • PIL.WmfImagePlugin - • PIL.XVThumbImagePlugin - • PIL.XbmImagePlugin - • PIL.XpmImagePlugin - • PIL.features - • pyglet.font.user - • pyglet.image.codecs.pil - • sdl2.ext.image - • sdl2.ext.spritesystem - -
- -
- -
- - PIL.ImageChops -SourceModule
-imports: - PIL - • PIL.Image - • __future__ - -
-
-imported by: - PIL - • PIL.GifImagePlugin - • PIL.PngImagePlugin - -
- -
- -
- - PIL.ImageCms -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageWin - • PIL._deprecate - • PIL._imagingcms - • PIL._typing - • PIL._util - • __future__ - • enum - • functools - • operator - • sys - • typing - -
-
-imported by: - PIL - • PIL.Image - -
- -
- -
- - PIL.ImageColor -SourceModule
-imports: - PIL - • PIL.Image - • __future__ - • colorsys - • functools - • re - -
-
-imported by: - PIL - • PIL.Image - • PIL.ImageOps - • PIL.ImagePalette - -
- -
- -
- - PIL.ImageFile -SourceModule
-imports: - PIL - • PIL.Image - • PIL._deprecate - • PIL._typing - • PIL._util - • __future__ - • abc - • io - • itertools - • mmap - • os - • struct - • sys - • typing - -
-
-imported by: - PIL - • PIL.BlpImagePlugin - • PIL.BmpImagePlugin - • PIL.BufrStubImagePlugin - • PIL.CurImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.FitsImagePlugin - • PIL.FliImagePlugin - • PIL.FpxImagePlugin - • PIL.FtexImagePlugin - • PIL.GbrImagePlugin - • PIL.GifImagePlugin - • PIL.GribStubImagePlugin - • PIL.Hdf5StubImagePlugin - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageQt - • PIL.ImageTk - • PIL.ImtImagePlugin - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.McIdasImagePlugin - • PIL.MpegImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PalmImagePlugin - • PIL.PcdImagePlugin - • PIL.PcxImagePlugin - • PIL.PdfImagePlugin - • PIL.PixarImagePlugin - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.PsdImagePlugin - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.SunImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.WebPImagePlugin - • PIL.WmfImagePlugin - • PIL.XVThumbImagePlugin - • PIL.XbmImagePlugin - • PIL.XpmImagePlugin - -
- -
- -
- - PIL.ImageFilter -SourceModule
-imports: - PIL - • PIL.Image - • PIL._imaging - • PIL._typing - • __future__ - • abc - • collections.abc - • functools - • types - • typing - -
-
-imported by: - PIL - • PIL.Image - -
- -
- -
- - PIL.ImageMath -SourceModule
-imports: - PIL - • PIL.Image - • PIL._deprecate - • PIL._imagingmath - • __future__ - • builtins - • types - • typing - -
-
-imported by: - PIL - • PIL.GifImagePlugin - -
- -
- -
- - PIL.ImageMode -SourceModule
-imports: - PIL - • PIL._deprecate - • __future__ - • functools - • sys - • typing - -
-
-imported by: - PIL - • PIL.Image - -
- -
- -
- - PIL.ImageOps -SourceModule
-imports: - PIL - • PIL.ExifTags - • PIL.Image - • PIL.ImageColor - • PIL.ImagePalette - • __future__ - • collections.abc - • functools - • operator - • re - • typing - -
-
-imported by: - PIL - • PIL.GifImagePlugin - • PIL.TiffImagePlugin - -
- -
- -
- - PIL.ImagePalette -SourceModule
-imports: - PIL - • PIL.GimpGradientFile - • PIL.GimpPaletteFile - • PIL.Image - • PIL.ImageColor - • PIL.PaletteFile - • __future__ - • array - • collections.abc - • random - • typing - -
-
-imported by: - PIL - • PIL.BmpImagePlugin - • PIL.DdsImagePlugin - • PIL.FliImagePlugin - • PIL.GifImagePlugin - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageOps - • PIL.Jpeg2KImagePlugin - • PIL.PcxImagePlugin - • PIL.PngImagePlugin - • PIL.PsdImagePlugin - • PIL.SunImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.XVThumbImagePlugin - • PIL.XpmImagePlugin - -
- -
- -
- - PIL.ImageQt -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._util - • __future__ - • io - • sys - • typing - -
-
-imported by: - PIL - • PIL.Image - -
- -
- -
- - PIL.ImageSequence -SourceModule
-imports: - PIL - • PIL.Image - • __future__ - • typing - -
-
-imported by: - PIL - • PIL.GifImagePlugin - • PIL.MpoImagePlugin - • PIL.PdfImagePlugin - • PIL.PngImagePlugin - -
- -
- -
- - PIL.ImageShow -SourceModule
-imports: - PIL - • PIL.Image - • __future__ - • abc - • os - • shlex - • shutil - • subprocess - • sys - • typing - -
-
-imported by: - PIL - • PIL.Image - -
- -
- -
- - PIL.ImageTk -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._imagingtk - • PIL._typing - • __future__ - • io - • typing - -
-
-imported by: - PIL - • PIL.SpiderImagePlugin - -
- -
- -
- - PIL.ImageWin -SourceModule
-imports: - PIL - • PIL.Image - • __future__ - -
-
-imported by: - PIL - • PIL.ImageCms - -
- -
- -
- - PIL.ImtImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • re - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.IptcImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.JpegImagePlugin - • PIL.TiffImagePlugin - • PIL._binary - • PIL._deprecate - • __future__ - • collections.abc - • io - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.Jpeg2KImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - • collections.abc - • io - • os - • struct - • typing - -
-
-imported by: - PIL - • PIL.IcnsImagePlugin - • PIL.Image - -
- -
- -
- - PIL.JpegImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.JpegPresets - • PIL.MpoImagePlugin - • PIL.TiffImagePlugin - • PIL._binary - • PIL._deprecate - • __future__ - • array - • io - • math - • os - • struct - • subprocess - • sys - • tempfile - • typing - • warnings - -
-
-imported by: - PIL - • PIL.BlpImagePlugin - • PIL.Image - • PIL.IptcImagePlugin - • PIL.MpoImagePlugin - -
- -
- -
- - PIL.JpegPresets -SourceModule
-imports: - PIL - • __future__ - -
-
-imported by: - PIL.JpegImagePlugin - -
- -
- -
- - PIL.McIdasImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • struct - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.MicImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.TiffImagePlugin - • __future__ - • olefile - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.MpegImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • PIL._typing - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.MpoImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImageSequence - • PIL.JpegImagePlugin - • PIL.TiffImagePlugin - • PIL._binary - • __future__ - • itertools - • os - • struct - • typing - -
-
-imported by: - PIL.Image - • PIL.JpegImagePlugin - -
- -
- -
- - PIL.MspImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • io - • struct - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.PaletteFile -SourceModule
-imports: - PIL - • PIL._binary - • __future__ - • typing - -
-
-imported by: - PIL - • PIL.ImagePalette - -
- -
- -
- - PIL.PalmImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.PcdImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.PcxImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - • io - • logging - • typing - -
-
-imported by: - PIL.DcxImagePlugin - • PIL.Image - -
- -
- -
- - PIL.PdfImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImageSequence - • PIL.PdfParser - • PIL.features - • __future__ - • io - • math - • os - • time - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.PdfParser -SourceModule
-imports: - PIL - • __future__ - • calendar - • codecs - • collections - • mmap - • os - • re - • time - • typing - • zlib - -
-
-imported by: - PIL - • PIL.PdfImagePlugin - -
- -
- -
- - PIL.PixarImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.PngImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageChops - • PIL.ImageFile - • PIL.ImagePalette - • PIL.ImageSequence - • PIL._binary - • PIL._imaging - • __future__ - • collections.abc - • enum - • io - • itertools - • logging - • re - • struct - • typing - • warnings - • zlib - -
-
-imported by: - PIL - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.Image - -
- -
- -
- - PIL.PpmImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • math - • typing - -
-
-imported by: - PIL - • PIL.Image - -
- -
- -
- - PIL.PsdImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - • functools - • io - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.QoiImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • os - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.SgiImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • os - • struct - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.SpiderImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImageTk - • __future__ - • os - • struct - • sys - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.SunImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.TgaImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - • typing - • warnings - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.TiffImagePlugin -SourceModule
-imports: - PIL - • PIL.ExifTags - • PIL.Image - • PIL.ImageFile - • PIL.ImageOps - • PIL.ImagePalette - • PIL.TiffTags - • PIL._binary - • PIL._deprecate - • PIL._typing - • PIL._util - • __future__ - • collections.abc - • fractions - • io - • itertools - • logging - • math - • numbers - • os - • struct - • typing - • warnings - -
-
-imported by: - PIL - • PIL.Image - • PIL.IptcImagePlugin - • PIL.JpegImagePlugin - • PIL.MicImagePlugin - • PIL.MpoImagePlugin - -
- -
- -
- - PIL.TiffTags -SourceModule
-imports: - PIL - • __future__ - • typing - -
-
-imported by: - PIL - • PIL.Image - • PIL.TiffImagePlugin - -
- -
- -
- - PIL.WebPImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._webp - • __future__ - • io - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.WmfImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.XVThumbImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.XbmImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • re - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.XpmImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - • re - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL._binary -SourceModule
-imports: - PIL - • __future__ - • struct - -
-
-imported by: - PIL.BmpImagePlugin - • PIL.CurImagePlugin - • PIL.DcxImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.FliImagePlugin - • PIL.FpxImagePlugin - • PIL.GbrImagePlugin - • PIL.GifImagePlugin - • PIL.GimpGradientFile - • PIL.GimpPaletteFile - • PIL.IcoImagePlugin - • PIL.Image - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.MpegImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PaletteFile - • PIL.PalmImagePlugin - • PIL.PcxImagePlugin - • PIL.PixarImagePlugin - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.PsdImagePlugin - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SunImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.WmfImagePlugin - • PIL.XVThumbImagePlugin - • PIL.XpmImagePlugin - -
- -
- -
- - PIL._deprecate -SourceModule
-imports: - PIL - • __future__ - • warnings - -
-
-imported by: - PIL.IcnsImagePlugin - • PIL.Image - • PIL.ImageCms - • PIL.ImageFile - • PIL.ImageMath - • PIL.ImageMode - • PIL.IptcImagePlugin - • PIL.JpegImagePlugin - • PIL.TiffImagePlugin - • PIL.features - -
- -
- -
- - PIL._imaging /home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imaging.cpython-311-x86_64-linux-gnu.so
-imports: - PIL - -
-
-imported by: - PIL - • PIL.GifImagePlugin - • PIL.Image - • PIL.ImageFilter - • PIL.PngImagePlugin - -
- -
- -
- - PIL._imagingcms /home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imagingcms.cpython-311-x86_64-linux-gnu.so
-imports: - PIL - -
-
-imported by: - PIL - • PIL.ImageCms - -
- -
- -
- - PIL._imagingmath /home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imagingmath.cpython-311-x86_64-linux-gnu.so
-imports: - PIL - -
-
-imported by: - PIL - • PIL.ImageMath - -
- -
- -
- - PIL._imagingtk /home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_imagingtk.cpython-311-x86_64-linux-gnu.so
-imports: - PIL - -
-
-imported by: - PIL - • PIL.ImageTk - -
- -
- -
- - PIL._typing -SourceModule
-imports: - PIL - • __future__ - • collections.abc - • numbers - • numpy - • os - • sys - • types - • typing - • typing_extensions - -
-
-imported by: - PIL.GifImagePlugin - • PIL.Image - • PIL.ImageCms - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageTk - • PIL.MpegImagePlugin - • PIL.TiffImagePlugin - • PIL._util - -
- -
- -
- - PIL._util -SourceModule
-imports: - PIL - • PIL._typing - • __future__ - • os - • typing - -
-
-imported by: - PIL.Image - • PIL.ImageCms - • PIL.ImageFile - • PIL.ImageQt - • PIL.TiffImagePlugin - -
- -
- -
- - PIL._version -SourceModule
-imports: - PIL - • __future__ - -
-
-imported by: - PIL - -
- -
- -
- - PIL._webp /home/enne2/Sviluppo/enne2engine/.venv/lib64/python3.11/site-packages/PIL/_webp.cpython-311-x86_64-linux-gnu.so
-imports: - PIL - -
-
-imported by: - PIL - • PIL.WebPImagePlugin - -
- -
- -
- - PIL.features -SourceModule
-imports: - PIL - • PIL.Image - • PIL._deprecate - • __future__ - • collections - • os - • sys - • typing - • warnings - -
-
-imported by: - PIL - • PIL.IcnsImagePlugin - • PIL.PdfImagePlugin - -
- -
- -
- - __future__ -SourceModule
-imported by: - PIL - • PIL.BlpImagePlugin - • PIL.BmpImagePlugin - • PIL.BufrStubImagePlugin - • PIL.CurImagePlugin - • PIL.DcxImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.ExifTags - • PIL.FitsImagePlugin - • PIL.FliImagePlugin - • PIL.FpxImagePlugin - • PIL.FtexImagePlugin - • PIL.GbrImagePlugin - • PIL.GifImagePlugin - • PIL.GimpGradientFile - • PIL.GimpPaletteFile - • PIL.GribStubImagePlugin - • PIL.Hdf5StubImagePlugin - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageChops - • PIL.ImageCms - • PIL.ImageColor - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageMath - • PIL.ImageMode - • PIL.ImageOps - • PIL.ImagePalette - • PIL.ImageQt - • PIL.ImageSequence - • PIL.ImageShow - • PIL.ImageTk - • PIL.ImageWin - • PIL.ImtImagePlugin - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.JpegPresets - • PIL.McIdasImagePlugin - • PIL.MicImagePlugin - • PIL.MpegImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PaletteFile - • PIL.PalmImagePlugin - • PIL.PcdImagePlugin - • PIL.PcxImagePlugin - • PIL.PdfImagePlugin - • PIL.PdfParser - • PIL.PixarImagePlugin - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.PsdImagePlugin - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.SunImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.TiffTags - • PIL.WebPImagePlugin - • PIL.WmfImagePlugin - • PIL.XVThumbImagePlugin - • PIL.XbmImagePlugin - • PIL.XpmImagePlugin - • PIL._binary - • PIL._deprecate - • PIL._typing - • PIL._util - • PIL._version - • PIL.features - • pyglet - • pyglet.app - • pyglet.app.base - • pyglet.canvas.base - • pyglet.canvas.cocoa - • pyglet.canvas.xlib - • pyglet.clock - • pyglet.event - • pyglet.font - • pyglet.font.base - • pyglet.font.directwrite - • pyglet.font.fontconfig - • pyglet.font.freetype - • pyglet.font.freetype_lib - • pyglet.font.quartz - • pyglet.font.user - • pyglet.font.win32 - • pyglet.gl - • pyglet.gl.base - • pyglet.gl.cocoa - • pyglet.gl.gl - • pyglet.gl.gl_info - • pyglet.gl.glx - • pyglet.gl.glx_info - • pyglet.gl.headless - • pyglet.gl.lib - • pyglet.gl.lib_agl - • pyglet.gl.lib_glx - • pyglet.gl.lib_wgl - • pyglet.gl.wgl_info - • pyglet.gl.win32 - • pyglet.gl.xlib - • pyglet.graphics - • pyglet.graphics.allocation - • pyglet.graphics.shader - • pyglet.graphics.vertexarray - • pyglet.graphics.vertexbuffer - • pyglet.graphics.vertexdomain - • pyglet.gui.frame - • pyglet.gui.ninepatch - • pyglet.gui.widgets - • pyglet.image - • pyglet.image.animation - • pyglet.image.atlas - • pyglet.image.buffer - • pyglet.image.codecs - • pyglet.input - • pyglet.input.base - • pyglet.input.controller - • pyglet.input.win32 - • pyglet.lib - • pyglet.libs.darwin.cocoapy.runtime - • pyglet.libs.ioctl - • pyglet.libs.win32.dinput - • pyglet.libs.x11.xlib - • pyglet.math - • pyglet.media - • pyglet.media.codecs.ffmpeg - • pyglet.media.player - • pyglet.media.player_worker_thread - • pyglet.media.synthesis - • pyglet.model - • pyglet.model.codecs - • pyglet.resource - • pyglet.shapes - • pyglet.sprite - • pyglet.text - • pyglet.text.caret - • pyglet.text.document - • pyglet.text.formats.attributed - • pyglet.text.formats.html - • pyglet.text.formats.plaintext - • pyglet.text.formats.structured - • pyglet.text.layout - • pyglet.text.layout.base - • pyglet.text.layout.incremental - • pyglet.text.layout.scrolling - • pyglet.text.runlist - • pyglet.window - • pyglet.window.cocoa - • pyglet.window.cocoa.pyglet_delegate - • pyglet.window.cocoa.pyglet_textview - • pyglet.window.cocoa.pyglet_view - • pyglet.window.cocoa.pyglet_window - • pyglet.window.cocoa.systemcursor - • pyglet.window.event - • pyglet.window.headless - • pyglet.window.key - • pyglet.window.mouse - • pyglet.window.win32 - • pyglet.window.xlib - • sdl2.dll - -
- -
- -
- - _abc (builtin module)
-imported by: - abc - -
- -
- -
- - _ast (builtin module)
-imported by: - ast - -
- -
- -
- - _bisect /usr/lib64/python3.11/lib-dynload/_bisect.cpython-311-x86_64-linux-gnu.so
-imported by: - bisect - -
- -
- -
- - _blake2 /usr/lib64/python3.11/lib-dynload/_blake2.cpython-311-x86_64-linux-gnu.so
-imported by: - hashlib - -
- -
- -
- - _bz2 /usr/lib64/python3.11/lib-dynload/_bz2.cpython-311-x86_64-linux-gnu.so
-imported by: - bz2 - -
- -
- -
- - _codecs (builtin module)
-imported by: - codecs - -
- -
- -
- - _codecs_cn /usr/lib64/python3.11/lib-dynload/_codecs_cn.cpython-311-x86_64-linux-gnu.so
-imported by: - encodings.gb18030 - • encodings.gb2312 - • encodings.gbk - • encodings.hz - -
- -
- -
- - _codecs_hk /usr/lib64/python3.11/lib-dynload/_codecs_hk.cpython-311-x86_64-linux-gnu.so
-imported by: - encodings.big5hkscs - -
- -
- -
- - _codecs_iso2022 /usr/lib64/python3.11/lib-dynload/_codecs_iso2022.cpython-311-x86_64-linux-gnu.so
-imported by: - encodings.iso2022_jp - • encodings.iso2022_jp_1 - • encodings.iso2022_jp_2 - • encodings.iso2022_jp_2004 - • encodings.iso2022_jp_3 - • encodings.iso2022_jp_ext - • encodings.iso2022_kr - -
- -
- -
- - _codecs_jp /usr/lib64/python3.11/lib-dynload/_codecs_jp.cpython-311-x86_64-linux-gnu.so
-imported by: - encodings.cp932 - • encodings.euc_jis_2004 - • encodings.euc_jisx0213 - • encodings.euc_jp - • encodings.shift_jis - • encodings.shift_jis_2004 - • encodings.shift_jisx0213 - -
- -
- -
- - _codecs_kr /usr/lib64/python3.11/lib-dynload/_codecs_kr.cpython-311-x86_64-linux-gnu.so
-imported by: - encodings.cp949 - • encodings.euc_kr - • encodings.johab - -
- -
- -
- - _codecs_tw /usr/lib64/python3.11/lib-dynload/_codecs_tw.cpython-311-x86_64-linux-gnu.so
-imported by: - encodings.big5 - • encodings.cp950 - -
- -
- -
- - _collections (builtin module)
-imported by: - collections - • threading - -
- -
- -
- - _collections_abc -SourceModule
-imports: - abc - • sys - -
-
-imported by: - collections - • collections.abc - • contextlib - • engine_demo.py - • locale - • os - • pathlib - • random - • types - • weakref - -
- -
- -
- - _compat_pickle -SourceModule
-imported by: - _pickle - • pickle - -
- -
- -
- - _compression -SourceModule
-imports: - io - • sys - -
-
-imported by: - bz2 - • gzip - • lzma - -
- -
- -
- - _contextvars /usr/lib64/python3.11/lib-dynload/_contextvars.cpython-311-x86_64-linux-gnu.so
-imported by: - contextvars - -
- -
- -
- - _csv /usr/lib64/python3.11/lib-dynload/_csv.cpython-311-x86_64-linux-gnu.so
-imported by: - csv - -
- -
- -
- - _ctypes /usr/lib64/python3.11/lib-dynload/_ctypes.cpython-311-x86_64-linux-gnu.so
-imported by: - ctypes - • ctypes.macholib.dyld - • pyglet.gl.base - • pyglet.graphics.shader - • pyglet.graphics.vertexbuffer - • pyglet.graphics.vertexdomain - • pyglet.media.codecs.ffmpeg - • pyglet.window.xlib - -
- -
- -
- - _datetime /usr/lib64/python3.11/lib-dynload/_datetime.cpython-311-x86_64-linux-gnu.so
-imports: - _strptime - • time - -
-
-imported by: - datetime - -
- -
- -
- - _decimal /usr/lib64/python3.11/lib-dynload/_decimal.cpython-311-x86_64-linux-gnu.so
-imported by: - decimal - -
- -
- -
- - _elementtree /usr/lib64/python3.11/lib-dynload/_elementtree.cpython-311-x86_64-linux-gnu.so
-imports: - pyexpat - • xml.etree.ElementInclude - • xml.etree.ElementPath - • xml.etree.ElementTree - • xml.etree.cElementTree - -
-
-imported by: - xml.etree.ElementTree - -
- -
- -
- - _frozen_importlib -ExcludedModule
-imported by: - importlib - • importlib.abc - • zipimport - -
- -
- -
- - _frozen_importlib_external -MissingModule
-imported by: - importlib - • importlib._bootstrap - • importlib.abc - • zipimport - -
- -
- -
- - _functools (builtin module)
-imported by: - functools - -
- -
- -
- - _hashlib /usr/lib64/python3.11/lib-dynload/_hashlib.cpython-311-x86_64-linux-gnu.so
-imported by: - hashlib - • hmac - -
- -
- -
- - _heapq /usr/lib64/python3.11/lib-dynload/_heapq.cpython-311-x86_64-linux-gnu.so
-imported by: - heapq - -
- -
- -
- - _imp (builtin module)
-imported by: - importlib - • importlib._bootstrap_external - • importlib.util - • zipimport - -
- -
- -
- - _io (builtin module)
-imported by: - importlib._bootstrap_external - • io - • zipimport - -
- -
- -
- - _json /usr/lib64/python3.11/lib-dynload/_json.cpython-311-x86_64-linux-gnu.so
-imports: - json.decoder - -
-
-imported by: - json.decoder - • json.encoder - • json.scanner - -
- -
- -
- - _locale (builtin module)
-imported by: - locale - -
- -
- -
- - _lzma /usr/lib64/python3.11/lib-dynload/_lzma.cpython-311-x86_64-linux-gnu.so
-imported by: - lzma - -
- -
- -
- - _markupbase -SourceModule
-imports: - re - -
-
-imported by: - html.parser - -
- -
- -
- - _md5 /usr/lib64/python3.11/lib-dynload/_md5.cpython-311-x86_64-linux-gnu.so
-imported by: - hashlib - -
- -
- -
- - _multibytecodec /usr/lib64/python3.11/lib-dynload/_multibytecodec.cpython-311-x86_64-linux-gnu.so
-imported by: - encodings.big5 - • encodings.big5hkscs - • encodings.cp932 - • encodings.cp949 - • encodings.cp950 - • encodings.euc_jis_2004 - • encodings.euc_jisx0213 - • encodings.euc_jp - • encodings.euc_kr - • encodings.gb18030 - • encodings.gb2312 - • encodings.gbk - • encodings.hz - • encodings.iso2022_jp - • encodings.iso2022_jp_1 - • encodings.iso2022_jp_2 - • encodings.iso2022_jp_2004 - • encodings.iso2022_jp_3 - • encodings.iso2022_jp_ext - • encodings.iso2022_kr - • encodings.johab - • encodings.shift_jis - • encodings.shift_jis_2004 - • encodings.shift_jisx0213 - -
- -
- -
- - _multiprocessing /usr/lib64/python3.11/lib-dynload/_multiprocessing.cpython-311-x86_64-linux-gnu.so
-imported by: - multiprocessing.connection - • multiprocessing.queues - • multiprocessing.resource_tracker - • multiprocessing.synchronize - -
- -
- -
- - _opcode /usr/lib64/python3.11/lib-dynload/_opcode.cpython-311-x86_64-linux-gnu.so
-imported by: - opcode - -
- -
- -
- - _operator (builtin module)
-imported by: - hmac - • operator - -
- -
- -
- - _pickle /usr/lib64/python3.11/lib-dynload/_pickle.cpython-311-x86_64-linux-gnu.so
-imports: - _compat_pickle - • codecs - • copyreg - -
-
-imported by: - pickle - -
- -
- -
- - _posixshmem /usr/lib64/python3.11/lib-dynload/_posixshmem.cpython-311-x86_64-linux-gnu.so
-imported by: - multiprocessing.resource_tracker - • multiprocessing.shared_memory - -
- -
- -
- - _posixsubprocess /usr/lib64/python3.11/lib-dynload/_posixsubprocess.cpython-311-x86_64-linux-gnu.so
-imports: - gc - -
-
-imported by: - multiprocessing.util - • subprocess - -
- -
- -
- - _py_abc -SourceModule
-imports: - _weakrefset - -
-
-imported by: - abc - -
- -
- -
- - _pydecimal -SourceModule
-imports: - collections - • contextvars - • itertools - • locale - • math - • numbers - • re - • sys - -
-
-imported by: - decimal - -
- -
- -
- - _queue /usr/lib64/python3.11/lib-dynload/_queue.cpython-311-x86_64-linux-gnu.so
-imported by: - queue - -
- -
- -
- - _random /usr/lib64/python3.11/lib-dynload/_random.cpython-311-x86_64-linux-gnu.so
-imported by: - random - -
- -
- -
- - _scproxy -MissingModule
-imported by: - urllib.request - -
- -
- -
- - _sha1 /usr/lib64/python3.11/lib-dynload/_sha1.cpython-311-x86_64-linux-gnu.so
-imported by: - hashlib - -
- -
- -
- - _sha256 /usr/lib64/python3.11/lib-dynload/_sha256.cpython-311-x86_64-linux-gnu.so
-imported by: - hashlib - -
- -
- -
- - _sha3 /usr/lib64/python3.11/lib-dynload/_sha3.cpython-311-x86_64-linux-gnu.so
-imported by: - hashlib - -
- -
- -
- - _sha512 /usr/lib64/python3.11/lib-dynload/_sha512.cpython-311-x86_64-linux-gnu.so
-imported by: - hashlib - • random - -
- -
- -
- - _signal (builtin module)
-imported by: - signal - -
- -
- -
- - _socket /usr/lib64/python3.11/lib-dynload/_socket.cpython-311-x86_64-linux-gnu.so
-imported by: - socket - -
- -
- -
- - _sre (builtin module)
-imports: - copy - • re - -
-
-imported by: - re._compiler - • re._constants - -
- -
- -
- - _ssl /usr/lib64/python3.11/lib-dynload/_ssl.cpython-311-x86_64-linux-gnu.so
-imports: - socket - -
-
-imported by: - ssl - -
- -
- -
- - _stat (builtin module)
-imported by: - stat - -
- -
- -
- - _statistics /usr/lib64/python3.11/lib-dynload/_statistics.cpython-311-x86_64-linux-gnu.so
-imported by: - statistics - -
- -
- -
- - _string (builtin module)
-imported by: - string - -
- -
- -
- - _strptime -SourceModule
-imports: - _thread - • calendar - • datetime - • locale - • re - • time - -
-
-imported by: - _datetime - • datetime - • time - -
- -
- -
- - _struct /usr/lib64/python3.11/lib-dynload/_struct.cpython-311-x86_64-linux-gnu.so
-imported by: - struct - -
- -
- -
- - _thread (builtin module)
-imported by: - _strptime - • dataclasses - • functools - • reprlib - • tempfile - • threading - -
- -
- -
- - _threading_local -SourceModule
-imports: - contextlib - • threading - • weakref - -
-
-imported by: - threading - -
- -
- -
- - _tokenize (builtin module)
-imported by: - tokenize - -
- -
- -
- - _tracemalloc (builtin module)
-imported by: - tracemalloc - -
- -
- -
- - _typing /usr/lib64/python3.11/lib-dynload/_typing.cpython-311-x86_64-linux-gnu.so
-imported by: - typing - -
- -
- -
- - _uuid /usr/lib64/python3.11/lib-dynload/_uuid.cpython-311-x86_64-linux-gnu.so
-imported by: - uuid - -
- -
- -
- - _warnings (builtin module)
-imported by: - importlib._bootstrap_external - • warnings - • zipimport - -
- -
- -
- - _weakref (builtin module)
-imported by: - _weakrefset - • collections - • pyglet.graphics.shader - • weakref - • xml.sax.expatreader - -
- -
- -
- - _weakrefset -SourceModule
-imports: - _weakref - • types - -
-
-imported by: - _py_abc - • engine_demo.py - • multiprocessing.process - • threading - • weakref - -
- -
- -
- - _winapi -MissingModule
-imported by: - encodings - • mimetypes - • multiprocessing.connection - • multiprocessing.heap - • multiprocessing.popen_spawn_win32 - • multiprocessing.reduction - • multiprocessing.shared_memory - • multiprocessing.spawn - • ntpath - • subprocess - -
- -
- -
- - _winreg -MissingModule
-imported by: - platform - -
- -
- -
- - abc -SourceModule
-imports: - _abc - • _py_abc - -
-
-imported by: - PIL.BlpImagePlugin - • PIL.Image - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageShow - • _collections_abc - • contextlib - • dataclasses - • email._policybase - • engine_demo.py - • functools - • importlib._abc - • importlib.abc - • importlib.metadata - • importlib.resources.abc - • inspect - • io - • multiprocessing.reduction - • numbers - • os - • pyglet.font.base - • pyglet.gl.base - • pyglet.graphics.vertexbuffer - • pyglet.image - • pyglet.media.codecs.pyogg - • pyglet.media.devices.base - • pyglet.media.drivers.base - • pyglet.media.drivers.listener - • pyglet.shapes - • pyglet.text - • pyglet.text.document - • pyglet.text.layout.base - • pyglet.window - • sdl2.ext.sprite - • selectors - • typing - -
- -
- -
- - argparse -SourceModule
-imports: - copy - • gettext - • os - • re - • shutil - • sys - • textwrap - • warnings - -
-
-imported by: - ast - • calendar - • dis - • gzip - • inspect - • py_compile - • tarfile - • tokenize - • zipfile - -
- -
- -
- - array /usr/lib64/python3.11/lib-dynload/array.cpython-311-x86_64-linux-gnu.so
-imported by: - PIL.ImagePalette - • PIL.JpegImagePlugin - • multiprocessing.dummy - • multiprocessing.managers - • multiprocessing.reduction - • pyglet.extlibs.png - • pyglet.image.codecs.png - • sdl2.endian - • socket - -
- -
- -
- - ast -SourceModule
-imports: - _ast - • argparse - • collections - • contextlib - • enum - • inspect - • sys - • warnings - -
-
-imported by: - inspect - • pyglet.text.formats.attributed - • traceback - -
- -
- -
- - atexit (builtin module)
-imported by: - PIL.Image - • logging - • multiprocessing.util - • pyglet.libs.win32 - • pyglet.media.codecs.gstreamer - • pyglet.media.devices - • pyglet.media.drivers - • weakref - -
- -
- -
- - base64 -SourceModule
-imports: - binascii - • getopt - • re - • struct - • sys - -
-
-imported by: - email._encoded_words - • email.base64mime - • email.encoders - • encodings.base64_codec - • secrets - • ssl - • urllib.request - • xmlrpc.client - -
- -
- -
- - binascii /usr/lib64/python3.11/lib-dynload/binascii.cpython-311-x86_64-linux-gnu.so
-imported by: - base64 - • email._encoded_words - • email.base64mime - • email.contentmanager - • email.header - • email.message - • encodings.hex_codec - • encodings.uu_codec - • quopri - • secrets - • zipfile - -
- -
- -
- - bisect -SourceModule
-imports: - _bisect - -
-
-imported by: - multiprocessing.heap - • random - • statistics - • urllib.request - -
- -
- -
- - builtins (builtin module)
-imported by: - PIL.Image - • PIL.ImageMath - • bz2 - • codecs - • dataclasses - • enum - • gettext - • gzip - • inspect - • locale - • lzma - • operator - • reprlib - • subprocess - • tarfile - • tokenize - • warnings - • wave - -
- -
- -
- - bz2 -SourceModule
-imports: - _bz2 - • _compression - • builtins - • io - • os - -
-
-imported by: - encodings.bz2_codec - • shutil - • tarfile - • zipfile - -
- -
- -
- - calendar -SourceModule
-imports: - argparse - • datetime - • itertools - • locale - • sys - -
-
-imported by: - PIL.PdfParser - • _strptime - • email._parseaddr - • http.cookiejar - • ssl - -
- -
- -
- - codecs -SourceModule
-imports: - _codecs - • builtins - • encodings - • sys - -
-
-imported by: - PIL.PdfParser - • _pickle - • encodings - • encodings.ascii - • encodings.base64_codec - • encodings.big5 - • encodings.big5hkscs - • encodings.bz2_codec - • encodings.charmap - • encodings.cp037 - • encodings.cp1006 - • encodings.cp1026 - • encodings.cp1125 - • encodings.cp1140 - • encodings.cp1250 - • encodings.cp1251 - • encodings.cp1252 - • encodings.cp1253 - • encodings.cp1254 - • encodings.cp1255 - • encodings.cp1256 - • encodings.cp1257 - • encodings.cp1258 - • encodings.cp273 - • encodings.cp424 - • encodings.cp437 - • encodings.cp500 - • encodings.cp720 - • encodings.cp737 - • encodings.cp775 - • encodings.cp850 - • encodings.cp852 - • encodings.cp855 - • encodings.cp856 - • encodings.cp857 - • encodings.cp858 - • encodings.cp860 - • encodings.cp861 - • encodings.cp862 - • encodings.cp863 - • encodings.cp864 - • encodings.cp865 - • encodings.cp866 - • encodings.cp869 - • encodings.cp874 - • encodings.cp875 - • encodings.cp932 - • encodings.cp949 - • encodings.cp950 - • encodings.euc_jis_2004 - • encodings.euc_jisx0213 - • encodings.euc_jp - • encodings.euc_kr - • encodings.gb18030 - • encodings.gb2312 - • encodings.gbk - • encodings.hex_codec - • encodings.hp_roman8 - • encodings.hz - • encodings.idna - • encodings.iso2022_jp - • encodings.iso2022_jp_1 - • encodings.iso2022_jp_2 - • encodings.iso2022_jp_2004 - • encodings.iso2022_jp_3 - • encodings.iso2022_jp_ext - • encodings.iso2022_kr - • encodings.iso8859_1 - • encodings.iso8859_10 - • encodings.iso8859_11 - • encodings.iso8859_13 - • encodings.iso8859_14 - • encodings.iso8859_15 - • encodings.iso8859_16 - • encodings.iso8859_2 - • encodings.iso8859_3 - • encodings.iso8859_4 - • encodings.iso8859_5 - • encodings.iso8859_6 - • encodings.iso8859_7 - • encodings.iso8859_8 - • encodings.iso8859_9 - • encodings.johab - • encodings.koi8_r - • encodings.koi8_t - • encodings.koi8_u - • encodings.kz1048 - • encodings.latin_1 - • encodings.mac_arabic - • encodings.mac_croatian - • encodings.mac_cyrillic - • encodings.mac_farsi - • encodings.mac_greek - • encodings.mac_iceland - • encodings.mac_latin2 - • encodings.mac_roman - • encodings.mac_romanian - • encodings.mac_turkish - • encodings.mbcs - • encodings.oem - • encodings.palmos - • encodings.ptcp154 - • encodings.punycode - • encodings.quopri_codec - • encodings.raw_unicode_escape - • encodings.rot_13 - • encodings.shift_jis - • encodings.shift_jis_2004 - • encodings.shift_jisx0213 - • encodings.tis_620 - • encodings.undefined - • encodings.unicode_escape - • encodings.utf_16 - • encodings.utf_16_be - • encodings.utf_16_le - • encodings.utf_32 - • encodings.utf_32_be - • encodings.utf_32_le - • encodings.utf_7 - • encodings.utf_8 - • encodings.utf_8_sig - • encodings.uu_codec - • encodings.zlib_codec - • engine_demo.py - • json - • pickle - • tokenize - • xml.sax.saxutils - -
- -
- -
- - collections -Package
-imports: - _collections - • _collections_abc - • _weakref - • collections.Callable - • collections.Iterable - • copy - • heapq - • itertools - • keyword - • operator - • reprlib - • sys - -
-
-imported by: - PIL.PdfParser - • PIL.features - • _pydecimal - • ast - • collections.abc - • concurrent.futures._base - • contextlib - • dis - • email.feedparser - • engine_demo.py - • enne2engine.isogeometry - • functools - • importlib.metadata - • importlib.metadata._collections - • importlib.resources.readers - • inspect - • multiprocessing.heap - • multiprocessing.pool - • multiprocessing.queues - • pkgutil - • platform - • pprint - • pyglet.clock - • pyglet.extlibs.png - • pyglet.font.fontconfig - • pyglet.graphics.shader - • pyglet.input.win32.wintab - • pyglet.media.codecs.ffmpeg - • pyglet.media.codecs.ffmpeg_lib.compat - • pyglet.media.drivers.base - • pyglet.media.drivers.directsound.interface - • pyglet.media.drivers.openal.adaptation - • pyglet.media.drivers.openal.interface - • pyglet.media.drivers.pulse.adaptation - • pyglet.media.drivers.xaudio2.adaptation - • pyglet.media.drivers.xaudio2.interface - • pyglet.media.player - • pyglet.window - • queue - • sdl2.ext.compat - • sdl2.ext.mouse - • sdl2.rwops - • selectors - • shlex - • shutil - • ssl - • statistics - • string - • threading - • tokenize - • typing - • urllib.parse - • wave - • xml.etree.ElementTree - -
- -
- -
- - collections.Callable -MissingModule
-imported by: - collections - • sdl2.ext.compat - • sdl2.rwops - -
- -
- -
- - collections.Iterable -MissingModule
-imported by: - collections - • sdl2.ext.compat - -
- -
- -
- - collections.abc -SourceModule
-imports: - _collections_abc - • collections - -
-
-imported by: - PIL.Image - • PIL.ImageFilter - • PIL.ImageOps - • PIL.ImagePalette - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.PngImagePlugin - • PIL.TiffImagePlugin - • PIL._typing - • engine_demo.py - • http.client - • inspect - • logging - • pyglet - • pyglet.customtypes - • pyglet.image - • pyglet.math - • sdl2.ext.compat - • sdl2.rwops - • selectors - • traceback - • tracemalloc - • typing - • xml.etree.ElementTree - -
- -
- -
- - colorsys -SourceModule
-imported by: - PIL.ImageColor - -
- -
- -
- - concurrent -Package
-imported by: - concurrent.futures - -
- -
- -
- - concurrent.futures -Package
-imports: - concurrent - • concurrent.futures._base - • concurrent.futures.process - • concurrent.futures.thread - -
-
-imported by: - concurrent.futures._base - • concurrent.futures.process - • concurrent.futures.thread - • pyglet.input.linux.evdev - -
- -
- -
- - concurrent.futures._base -SourceModule
-imports: - collections - • concurrent.futures - • logging - • threading - • time - • types - -
-
-imported by: - concurrent.futures - • concurrent.futures.process - • concurrent.futures.thread - -
- -
- -
- - concurrent.futures.process -SourceModule
-imports: - concurrent.futures - • concurrent.futures._base - • functools - • itertools - • multiprocessing - • multiprocessing.connection - • multiprocessing.queues - • multiprocessing.synchronize - • os - • queue - • sys - • threading - • traceback - • weakref - -
-
-imported by: - concurrent.futures - -
- -
- -
- - concurrent.futures.thread -SourceModule
-imports: - concurrent.futures - • concurrent.futures._base - • itertools - • os - • queue - • threading - • types - • weakref - -
-
-imported by: - concurrent.futures - -
- -
- -
- - contextlib -SourceModule
-imports: - _collections_abc - • abc - • collections - • functools - • os - • sys - • types - -
-
-imported by: - _threading_local - • ast - • getpass - • importlib.metadata - • importlib.resources._adapters - • importlib.resources._common - • importlib.util - • pyglet.lib - • pyglet.libs.darwin.cocoapy - • pyglet.libs.darwin.cocoapy.runtime - • pyglet.libs.win32.context_managers - • pyglet.text.formats.html - • subprocess - • traceback - • typing - • urllib.request - • xml.etree.ElementTree - • zipfile - -
- -
- -
- - contextvars -SourceModule
-imports: - _contextvars - -
-
-imported by: - _pydecimal - -
- -
- -
- - copy -SourceModule
-imports: - 'org.python' - • copyreg - • types - • weakref - -
-
-imported by: - PIL.GifImagePlugin - • _sre - • argparse - • collections - • dataclasses - • email.generator - • gettext - • http.cookiejar - • pyglet.font.directwrite - • tarfile - • weakref - • xml.etree.ElementInclude - -
- -
- -
- - copyreg -SourceModule
-imports: - functools - • operator - -
-
-imported by: - _pickle - • copy - • engine_demo.py - • multiprocessing.reduction - • pickle - • re - -
- -
- -
- - csv -SourceModule
-imports: - _csv - • io - • re - -
-
-imported by: - importlib.metadata - -
- -
- -
- - ctypes -Package
-imports: - _ctypes - • ctypes._endian - • nt - • os - • struct - • sys - • types - -
-
-imported by: - ctypes._aix - • ctypes._endian - • ctypes.macholib - • ctypes.util - • ctypes.wintypes - • enne2engine.sdl2_utils.gui - • enne2engine.sdl2_wrapper - • multiprocessing.sharedctypes - • pyglet - • pyglet.app.win32 - • pyglet.canvas.cocoa - • pyglet.canvas.headless - • pyglet.canvas.xlib - • pyglet.canvas.xlib_vidmoderestore - • pyglet.customtypes - • pyglet.font.directwrite - • pyglet.font.fontconfig - • pyglet.font.freetype - • pyglet.font.freetype_lib - • pyglet.font.quartz - • pyglet.font.win32 - • pyglet.gl.cocoa - • pyglet.gl.gl - • pyglet.gl.gl_compat - • pyglet.gl.gl_info - • pyglet.gl.glx - • pyglet.gl.glx_info - • pyglet.gl.glxext_arb - • pyglet.gl.glxext_mesa - • pyglet.gl.headless - • pyglet.gl.lib - • pyglet.gl.lib_glx - • pyglet.gl.lib_wgl - • pyglet.gl.wgl - • pyglet.gl.wgl_info - • pyglet.gl.wglext_arb - • pyglet.gl.win32 - • pyglet.gl.xlib - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.graphics.vertexarray - • pyglet.graphics.vertexbuffer - • pyglet.graphics.vertexdomain - • pyglet.image - • pyglet.image.codecs.bmp - • pyglet.image.codecs.gdkpixbuf2 - • pyglet.image.codecs.quartz - • pyglet.image.codecs.s3tc - • pyglet.input.linux.evdev - • pyglet.input.linux.x11_xinput - • pyglet.input.macos.darwin_hid - • pyglet.input.win32.directinput - • pyglet.input.win32.wintab - • pyglet.lib - • pyglet.libs.darwin.cocoapy.cocoalibs - • pyglet.libs.darwin.cocoapy.cocoatypes - • pyglet.libs.darwin.cocoapy.runtime - • pyglet.libs.darwin.coreaudio - • pyglet.libs.egl.egl - • pyglet.libs.egl.eglext - • pyglet.libs.egl.lib - • pyglet.libs.ioctl - • pyglet.libs.win32.com - • pyglet.libs.win32.context_managers - • pyglet.libs.win32.dinput - • pyglet.libs.win32.libwintab - • pyglet.libs.win32.types - • pyglet.libs.x11.xf86vmode - • pyglet.libs.x11.xinerama - • pyglet.libs.x11.xinput - • pyglet.libs.x11.xlib - • pyglet.libs.x11.xsync - • pyglet.media.codecs.base - • pyglet.media.codecs.coreaudio - • pyglet.media.codecs.ffmpeg - • pyglet.media.codecs.ffmpeg_lib.libavcodec - • pyglet.media.codecs.ffmpeg_lib.libavformat - • pyglet.media.codecs.ffmpeg_lib.libavutil - • pyglet.media.codecs.ffmpeg_lib.libswresample - • pyglet.media.codecs.ffmpeg_lib.libswscale - • pyglet.media.codecs.pyogg - • pyglet.media.drivers.base - • pyglet.media.drivers.directsound.adaptation - • pyglet.media.drivers.directsound.interface - • pyglet.media.drivers.directsound.lib_dsound - • pyglet.media.drivers.openal.interface - • pyglet.media.drivers.openal.lib_alc - • pyglet.media.drivers.openal.lib_openal - • pyglet.media.drivers.pulse.adaptation - • pyglet.media.drivers.pulse.interface - • pyglet.media.drivers.pulse.lib_pulseaudio - • pyglet.media.drivers.xaudio2.lib_xaudio2 - • pyglet.window.cocoa - • pyglet.window.cocoa.pyglet_view - • pyglet.window.cocoa.pyglet_window - • pyglet.window.win32 - • pyglet.window.xlib - • sdl2._internal - • sdl2._sdl_init - • sdl2.audio - • sdl2.blendmode - • sdl2.clipboard - • sdl2.cpuinfo - • sdl2.dll - • sdl2.error - • sdl2.events - • sdl2.ext.array - • sdl2.ext.common - • sdl2.ext.displays - • sdl2.ext.draw - • sdl2.ext.input - • sdl2.ext.mouse - • sdl2.ext.msgbox - • sdl2.ext.pixelaccess - • sdl2.ext.renderer - • sdl2.ext.sprite - • sdl2.ext.ttf - • sdl2.ext.window - • sdl2.filesystem - • sdl2.gamecontroller - • sdl2.gesture - • sdl2.guid - • sdl2.haptic - • sdl2.hidapi - • sdl2.hints - • sdl2.joystick - • sdl2.keyboard - • sdl2.loadso - • sdl2.locale - • sdl2.log - • sdl2.messagebox - • sdl2.metal - • sdl2.misc - • sdl2.mouse - • sdl2.pixels - • sdl2.platform - • sdl2.power - • sdl2.rect - • sdl2.render - • sdl2.rwops - • sdl2.scancode - • sdl2.sdlimage - • sdl2.sdlttf - • sdl2.sensor - • sdl2.shape - • sdl2.stdinc - • sdl2.surface - • sdl2.syswm - • sdl2.timer - • sdl2.touch - • sdl2.version - • sdl2.video - -
- -
- -
- - ctypes._aix -SourceModule
-imports: - ctypes - • os - • re - • subprocess - • sys - -
-
-imported by: - ctypes.util - -
- -
- -
- - ctypes._endian -SourceModule
-imports: - ctypes - • sys - -
-
-imported by: - ctypes - -
- -
- -
- - ctypes.macholib -Package
-imports: - ctypes - -
-
-imported by: - ctypes.macholib.dyld - • ctypes.macholib.dylib - • ctypes.macholib.framework - -
- -
- -
- - ctypes.macholib.dyld -SourceModule
-imports: - _ctypes - • ctypes.macholib - • ctypes.macholib.dylib - • ctypes.macholib.framework - • itertools - • os - -
-
-imported by: - ctypes.util - -
- -
- -
- - ctypes.macholib.dylib -SourceModule
-imports: - ctypes.macholib - • re - -
-
-imported by: - ctypes.macholib.dyld - -
- -
- -
- - ctypes.macholib.framework -SourceModule
-imports: - ctypes.macholib - • re - -
-
-imported by: - ctypes.macholib.dyld - -
- -
- -
- - ctypes.util -SourceModule
-imports: - ctypes - • ctypes._aix - • ctypes.macholib.dyld - • importlib.machinery - • os - • re - • shutil - • struct - • subprocess - • sys - • tempfile - -
-
-imported by: - pyglet.lib - • pyglet.libs.darwin.cocoapy.cocoalibs - • pyglet.libs.darwin.cocoapy.runtime - • pyglet.libs.darwin.coreaudio - • sdl2.dll - -
- -
- -
- - ctypes.wintypes -SourceModule
-imports: - ctypes - -
-
-imported by: - pyglet.font.directwrite - • pyglet.libs.win32.context_managers - • pyglet.libs.win32.libwintab - • pyglet.libs.win32.types - • pyglet.window.win32 - -
- -
- -
- - dataclasses -SourceModule
-imports: - _thread - • abc - • builtins - • copy - • functools - • inspect - • itertools - • keyword - • re - • sys - • types - -
-
-imported by: - pprint - • pyglet - • pyglet.media.codecs.ffmpeg - -
- -
- -
- - datetime -SourceModule
-imports: - _datetime - • _strptime - • math - • operator - • sys - • time - -
-
-imported by: - _strptime - • calendar - • email.utils - • http.cookiejar - • xmlrpc.client - -
- -
- -
- - decimal -SourceModule
-imports: - _decimal - • _pydecimal - -
-
-imported by: - fractions - • statistics - • xmlrpc.client - -
- -
- -
- - defusedxml -MissingModule
-imported by: - PIL.Image - -
- -
- -
- - dis -SourceModule
-imports: - argparse - • collections - • io - • opcode - • sys - • types - -
-
-imported by: - inspect - -
- -
- -
- - email -Package
-imports: - email._header_value_parser - • email.charset - • email.errors - • email.header - • email.parser - -
-
-imported by: - email._encoded_words - • email._header_value_parser - • email._parseaddr - • email._policybase - • email.base64mime - • email.charset - • email.contentmanager - • email.encoders - • email.errors - • email.feedparser - • email.generator - • email.header - • email.headerregistry - • email.iterators - • email.message - • email.parser - • email.policy - • email.quoprimime - • email.utils - • importlib.metadata - • urllib.request - -
- -
- -
- - email._encoded_words -SourceModule
-imports: - base64 - • binascii - • email - • email.errors - • functools - • re - • string - -
-
-imported by: - email._header_value_parser - • email.message - -
- -
- -
- - email._header_value_parser -SourceModule
-imports: - email - • email._encoded_words - • email.errors - • email.utils - • operator - • re - • string - • sys - • urllib - -
-
-imported by: - email - • email.headerregistry - -
- -
- -
- - email._parseaddr -SourceModule
-imports: - calendar - • email - • time - -
-
-imported by: - email.utils - -
- -
- -
- - email._policybase -SourceModule
-imports: - abc - • email - • email.charset - • email.header - • email.utils - -
-
-imported by: - email.feedparser - • email.message - • email.parser - • email.policy - -
- -
- -
- - email.base64mime -SourceModule
-imports: - base64 - • binascii - • email - -
-
-imported by: - email.charset - • email.header - -
- -
- -
- - email.charset -SourceModule
-imports: - email - • email.base64mime - • email.encoders - • email.errors - • email.quoprimime - • functools - -
-
-imported by: - email - • email._policybase - • email.contentmanager - • email.header - • email.message - • email.utils - -
- -
- -
- - email.contentmanager -SourceModule
-imports: - binascii - • email - • email.charset - • email.errors - • email.message - • email.quoprimime - -
-
-imported by: - email.policy - -
- -
- -
- - email.encoders -SourceModule
-imports: - base64 - • email - • quopri - -
-
-imported by: - email.charset - -
- -
- -
- - email.errors -SourceModule
-imports: - email - -
-
-imported by: - email - • email._encoded_words - • email._header_value_parser - • email.charset - • email.contentmanager - • email.feedparser - • email.generator - • email.header - • email.headerregistry - • email.message - -
- -
- -
- - email.feedparser -SourceModule
-imports: - collections - • email - • email._policybase - • email.errors - • email.message - • io - • re - -
-
-imported by: - email.parser - -
- -
- -
- - email.generator -SourceModule
-imports: - copy - • email - • email.errors - • email.utils - • io - • random - • re - • sys - • time - -
-
-imported by: - email.message - -
- -
- -
- - email.header -SourceModule
-imports: - binascii - • email - • email.base64mime - • email.charset - • email.errors - • email.quoprimime - • re - -
-
-imported by: - email - • email._policybase - -
- -
- -
- - email.headerregistry -SourceModule
-imports: - email - • email._header_value_parser - • email.errors - • email.utils - • types - -
-
-imported by: - email.policy - -
- -
- -
- - email.iterators -SourceModule
-imports: - email - • io - • sys - -
-
-imported by: - email.message - -
- -
- -
- - email.message -SourceModule
-imports: - binascii - • email - • email._encoded_words - • email._policybase - • email.charset - • email.errors - • email.generator - • email.iterators - • email.policy - • email.utils - • io - • quopri - • re - -
-
-imported by: - email.contentmanager - • email.feedparser - • email.policy - • http.client - • importlib.metadata._adapters - -
- -
- -
- - email.parser -SourceModule
-imports: - email - • email._policybase - • email.feedparser - • io - -
-
-imported by: - email - • http.client - -
- -
- -
- - email.policy -SourceModule
-imports: - email - • email._policybase - • email.contentmanager - • email.headerregistry - • email.message - • email.utils - • re - • sys - -
-
-imported by: - email.message - -
- -
- -
- - email.quoprimime -SourceModule
-imports: - email - • re - • string - -
-
-imported by: - email.charset - • email.contentmanager - • email.header - -
- -
- -
- - email.utils -SourceModule
-imports: - datetime - • email - • email._parseaddr - • email.charset - • os - • random - • re - • socket - • time - • urllib.parse - -
-
-imported by: - email._header_value_parser - • email._policybase - • email.generator - • email.headerregistry - • email.message - • email.policy - • urllib.request - -
- -
- -
- - encodings -Package
-imports: - _winapi - • codecs - • encodings - • encodings.aliases - • encodings.ascii - • encodings.base64_codec - • encodings.big5 - • encodings.big5hkscs - • encodings.bz2_codec - • encodings.charmap - • encodings.cp037 - • encodings.cp1006 - • encodings.cp1026 - • encodings.cp1125 - • encodings.cp1140 - • encodings.cp1250 - • encodings.cp1251 - • encodings.cp1252 - • encodings.cp1253 - • encodings.cp1254 - • encodings.cp1255 - • encodings.cp1256 - • encodings.cp1257 - • encodings.cp1258 - • encodings.cp273 - • encodings.cp424 - • encodings.cp437 - • encodings.cp500 - • encodings.cp720 - • encodings.cp737 - • encodings.cp775 - • encodings.cp850 - • encodings.cp852 - • encodings.cp855 - • encodings.cp856 - • encodings.cp857 - • encodings.cp858 - • encodings.cp860 - • encodings.cp861 - • encodings.cp862 - • encodings.cp863 - • encodings.cp864 - • encodings.cp865 - • encodings.cp866 - • encodings.cp869 - • encodings.cp874 - • encodings.cp875 - • encodings.cp932 - • encodings.cp949 - • encodings.cp950 - • encodings.euc_jis_2004 - • encodings.euc_jisx0213 - • encodings.euc_jp - • encodings.euc_kr - • encodings.gb18030 - • encodings.gb2312 - • encodings.gbk - • encodings.hex_codec - • encodings.hp_roman8 - • encodings.hz - • encodings.idna - • encodings.iso2022_jp - • encodings.iso2022_jp_1 - • encodings.iso2022_jp_2 - • encodings.iso2022_jp_2004 - • encodings.iso2022_jp_3 - • encodings.iso2022_jp_ext - • encodings.iso2022_kr - • encodings.iso8859_1 - • encodings.iso8859_10 - • encodings.iso8859_11 - • encodings.iso8859_13 - • encodings.iso8859_14 - • encodings.iso8859_15 - • encodings.iso8859_16 - • encodings.iso8859_2 - • encodings.iso8859_3 - • encodings.iso8859_4 - • encodings.iso8859_5 - • encodings.iso8859_6 - • encodings.iso8859_7 - • encodings.iso8859_8 - • encodings.iso8859_9 - • encodings.johab - • encodings.koi8_r - • encodings.koi8_t - • encodings.koi8_u - • encodings.kz1048 - • encodings.latin_1 - • encodings.mac_arabic - • encodings.mac_croatian - • encodings.mac_cyrillic - • encodings.mac_farsi - • encodings.mac_greek - • encodings.mac_iceland - • encodings.mac_latin2 - • encodings.mac_roman - • encodings.mac_romanian - • encodings.mac_turkish - • encodings.mbcs - • encodings.oem - • encodings.palmos - • encodings.ptcp154 - • encodings.punycode - • encodings.quopri_codec - • encodings.raw_unicode_escape - • encodings.rot_13 - • encodings.shift_jis - • encodings.shift_jis_2004 - • encodings.shift_jisx0213 - • encodings.tis_620 - • encodings.undefined - • encodings.unicode_escape - • encodings.utf_16 - • encodings.utf_16_be - • encodings.utf_16_le - • encodings.utf_32 - • encodings.utf_32_be - • encodings.utf_32_le - • encodings.utf_7 - • encodings.utf_8 - • encodings.utf_8_sig - • encodings.uu_codec - • encodings.zlib_codec - • sys - -
-
-imported by: - codecs - • encodings - • encodings.aliases - • encodings.ascii - • encodings.base64_codec - • encodings.big5 - • encodings.big5hkscs - • encodings.bz2_codec - • encodings.charmap - • encodings.cp037 - • encodings.cp1006 - • encodings.cp1026 - • encodings.cp1125 - • encodings.cp1140 - • encodings.cp1250 - • encodings.cp1251 - • encodings.cp1252 - • encodings.cp1253 - • encodings.cp1254 - • encodings.cp1255 - • encodings.cp1256 - • encodings.cp1257 - • encodings.cp1258 - • encodings.cp273 - • encodings.cp424 - • encodings.cp437 - • encodings.cp500 - • encodings.cp720 - • encodings.cp737 - • encodings.cp775 - • encodings.cp850 - • encodings.cp852 - • encodings.cp855 - • encodings.cp856 - • encodings.cp857 - • encodings.cp858 - • encodings.cp860 - • encodings.cp861 - • encodings.cp862 - • encodings.cp863 - • encodings.cp864 - • encodings.cp865 - • encodings.cp866 - • encodings.cp869 - • encodings.cp874 - • encodings.cp875 - • encodings.cp932 - • encodings.cp949 - • encodings.cp950 - • encodings.euc_jis_2004 - • encodings.euc_jisx0213 - • encodings.euc_jp - • encodings.euc_kr - • encodings.gb18030 - • encodings.gb2312 - • encodings.gbk - • encodings.hex_codec - • encodings.hp_roman8 - • encodings.hz - • encodings.idna - • encodings.iso2022_jp - • encodings.iso2022_jp_1 - • encodings.iso2022_jp_2 - • encodings.iso2022_jp_2004 - • encodings.iso2022_jp_3 - • encodings.iso2022_jp_ext - • encodings.iso2022_kr - • encodings.iso8859_1 - • encodings.iso8859_10 - • encodings.iso8859_11 - • encodings.iso8859_13 - • encodings.iso8859_14 - • encodings.iso8859_15 - • encodings.iso8859_16 - • encodings.iso8859_2 - • encodings.iso8859_3 - • encodings.iso8859_4 - • encodings.iso8859_5 - • encodings.iso8859_6 - • encodings.iso8859_7 - • encodings.iso8859_8 - • encodings.iso8859_9 - • encodings.johab - • encodings.koi8_r - • encodings.koi8_t - • encodings.koi8_u - • encodings.kz1048 - • encodings.latin_1 - • encodings.mac_arabic - • encodings.mac_croatian - • encodings.mac_cyrillic - • encodings.mac_farsi - • encodings.mac_greek - • encodings.mac_iceland - • encodings.mac_latin2 - • encodings.mac_roman - • encodings.mac_romanian - • encodings.mac_turkish - • encodings.mbcs - • encodings.oem - • encodings.palmos - • encodings.ptcp154 - • encodings.punycode - • encodings.quopri_codec - • encodings.raw_unicode_escape - • encodings.rot_13 - • encodings.shift_jis - • encodings.shift_jis_2004 - • encodings.shift_jisx0213 - • encodings.tis_620 - • encodings.undefined - • encodings.unicode_escape - • encodings.utf_16 - • encodings.utf_16_be - • encodings.utf_16_le - • encodings.utf_32 - • encodings.utf_32_be - • encodings.utf_32_le - • encodings.utf_7 - • encodings.utf_8 - • encodings.utf_8_sig - • encodings.uu_codec - • encodings.zlib_codec - • engine_demo.py - • locale - -
- -
- -
- - encodings.aliases -SourceModule
-imports: - encodings - -
-
-imported by: - encodings - • engine_demo.py - • locale - -
- -
- -
- - encodings.ascii -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.base64_codec -SourceModule
-imports: - base64 - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.big5 -SourceModule
-imports: - _codecs_tw - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.big5hkscs -SourceModule
-imports: - _codecs_hk - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.bz2_codec -SourceModule
-imports: - bz2 - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.charmap -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp037 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp1006 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp1026 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp1125 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp1140 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp1250 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp1251 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp1252 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp1253 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp1254 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp1255 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp1256 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp1257 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp1258 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp273 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp424 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp437 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp500 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp720 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp737 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp775 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp850 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp852 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp855 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp856 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp857 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp858 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp860 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp861 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp862 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp863 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp864 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp865 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp866 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp869 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp874 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp875 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp932 -SourceModule
-imports: - _codecs_jp - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp949 -SourceModule
-imports: - _codecs_kr - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.cp950 -SourceModule
-imports: - _codecs_tw - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.euc_jis_2004 -SourceModule
-imports: - _codecs_jp - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.euc_jisx0213 -SourceModule
-imports: - _codecs_jp - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.euc_jp -SourceModule
-imports: - _codecs_jp - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.euc_kr -SourceModule
-imports: - _codecs_kr - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.gb18030 -SourceModule
-imports: - _codecs_cn - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.gb2312 -SourceModule
-imports: - _codecs_cn - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.gbk -SourceModule
-imports: - _codecs_cn - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.hex_codec -SourceModule
-imports: - binascii - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.hp_roman8 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.hz -SourceModule
-imports: - _codecs_cn - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.idna -SourceModule
-imports: - codecs - • encodings - • re - • stringprep - • unicodedata - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso2022_jp -SourceModule
-imports: - _codecs_iso2022 - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso2022_jp_1 -SourceModule
-imports: - _codecs_iso2022 - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso2022_jp_2 -SourceModule
-imports: - _codecs_iso2022 - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso2022_jp_2004 -SourceModule
-imports: - _codecs_iso2022 - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso2022_jp_3 -SourceModule
-imports: - _codecs_iso2022 - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso2022_jp_ext -SourceModule
-imports: - _codecs_iso2022 - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso2022_kr -SourceModule
-imports: - _codecs_iso2022 - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_1 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_10 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_11 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_13 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_14 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_15 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_16 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_2 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_3 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_4 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_5 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_6 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_7 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_8 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.iso8859_9 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.johab -SourceModule
-imports: - _codecs_kr - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.koi8_r -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.koi8_t -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.koi8_u -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.kz1048 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.latin_1 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.mac_arabic -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.mac_croatian -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.mac_cyrillic -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.mac_farsi -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.mac_greek -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.mac_iceland -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.mac_latin2 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.mac_roman -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.mac_romanian -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.mac_turkish -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.mbcs -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.oem -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.palmos -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.ptcp154 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.punycode -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.quopri_codec -SourceModule
-imports: - codecs - • encodings - • io - • quopri - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.raw_unicode_escape -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.rot_13 -SourceModule
-imports: - codecs - • encodings - • sys - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.shift_jis -SourceModule
-imports: - _codecs_jp - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.shift_jis_2004 -SourceModule
-imports: - _codecs_jp - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.shift_jisx0213 -SourceModule
-imports: - _codecs_jp - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.tis_620 -CompiledModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.undefined -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.unicode_escape -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.utf_16 -SourceModule
-imports: - codecs - • encodings - • sys - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.utf_16_be -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.utf_16_le -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.utf_32 -SourceModule
-imports: - codecs - • encodings - • sys - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.utf_32_be -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.utf_32_le -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.utf_7 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.utf_8 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.utf_8_sig -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.uu_codec -SourceModule
-imports: - binascii - • codecs - • encodings - • io - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - encodings.zlib_codec -SourceModule
-imports: - codecs - • encodings - • zlib - -
-
-imported by: - encodings - • engine_demo.py - -
- -
- -
- - enne2engine -NamespacePackage
-imported by: - enne2engine.Entities - • enne2engine.controls - • enne2engine.isogeometry - • enne2engine.pyglet_wrapper - • enne2engine.sdl2_utils - • enne2engine.sdl2_wrapper - • enne2engine.spritemanager - • enne2engine.tilemanager - -
- -
- -
- - enne2engine.Entities -Package
-imports: - enne2engine - -
-
-imported by: - enne2engine.Entities.entity - -
- -
- -
- - enne2engine.Entities.entity -SourceModule
-imports: - enne2engine.Entities - -
-
-imported by: - engine_demo.py - -
- -
- -
- - enne2engine.controls -SourceModule
-imports: - enne2engine - • json - • os - -
-
-imported by: - engine_demo.py - -
- -
- -
- - enne2engine.isogeometry -SourceModule
-imports: - collections - • enne2engine - -
-
-imported by: - enne2engine.sdl2_wrapper - -
- -
- -
- - enne2engine.pyglet_wrapper -SourceModule
-imports: - enne2engine - • enne2engine.tilemanager - • pyglet - -
-
-imported by: - engine_demo.py - -
- -
- -
- - enne2engine.sdl2_utils -Package
-imports: - enne2engine - -
-
-imported by: - enne2engine.sdl2_utils.gui - -
- -
- -
- - enne2engine.sdl2_utils.gui -SourceModule
-imports: - ctypes - • enne2engine.sdl2_utils - • os - • sdl2 - • sdl2.ext - -
-
-imported by: - enne2engine.sdl2_wrapper - -
- -
- -
- - enne2engine.sdl2_wrapper -SourceModule
-imports: - ctypes - • enne2engine - • enne2engine.isogeometry - • enne2engine.sdl2_utils.gui - • enne2engine.spritemanager - • enne2engine.tilemanager - • math - • random - • sdl2 - • sdl2.ext - -
-
-imported by: - engine_demo.py - -
- -
- -
- - enne2engine.spritemanager -SourceModule
-imports: - enne2engine - • json - -
-
-imported by: - enne2engine.sdl2_wrapper - -
- -
- -
- - enne2engine.tilemanager -SourceModule
-imports: - enne2engine - • xml.etree.ElementTree - -
-
-imported by: - enne2engine.pyglet_wrapper - • enne2engine.sdl2_wrapper - -
- -
- -
- - enum -SourceModule
-imports: - builtins - • functools - • operator - • sys - • types - • warnings - -
-
-imported by: - PIL.BlpImagePlugin - • PIL.DdsImagePlugin - • PIL.ExifTags - • PIL.FtexImagePlugin - • PIL.GifImagePlugin - • PIL.Image - • PIL.ImageCms - • PIL.PngImagePlugin - • ast - • engine_demo.py - • http - • inspect - • py_compile - • pyglet.gl.base - • pyglet.input.base - • pyglet.media.devices.base - • re - • signal - • socket - • ssl - • uuid - -
- -
- -
- - errno (builtin module)
-imported by: - gettext - • gzip - • http.client - • multiprocessing.connection - • multiprocessing.forkserver - • multiprocessing.queues - • multiprocessing.shared_memory - • pathlib - • shutil - • socket - • ssl - • subprocess - • tempfile - • xmlrpc.client - -
- -
- -
- - fcntl /usr/lib64/python3.11/lib-dynload/fcntl.cpython-311-x86_64-linux-gnu.so
-imported by: - pyglet.libs.ioctl - • subprocess - -
- -
- -
- - fnmatch -SourceModule
-imports: - functools - • os - • posixpath - • re - -
-
-imported by: - pathlib - • shutil - • tracemalloc - • urllib.request - -
- -
- -
- - fractions -SourceModule
-imports: - decimal - • math - • numbers - • operator - • re - • sys - -
-
-imported by: - PIL.TiffImagePlugin - • statistics - -
- -
- -
- - ftplib -SourceModule
-imports: - netrc - • re - • socket - • ssl - • sys - • warnings - -
-
-imported by: - urllib.request - -
- -
- -
- - functools -SourceModule
-imports: - _functools - • _thread - • abc - • collections - • reprlib - • types - • typing - • weakref - -
-
-imported by: - PIL.GifImagePlugin - • PIL.ImageCms - • PIL.ImageColor - • PIL.ImageFilter - • PIL.ImageMode - • PIL.ImageOps - • PIL.PsdImagePlugin - • concurrent.futures.process - • contextlib - • copyreg - • dataclasses - • email._encoded_words - • email.charset - • engine_demo.py - • enum - • fnmatch - • importlib.metadata - • importlib.metadata._functools - • importlib.resources._common - • importlib.resources._legacy - • importlib.util - • inspect - • ipaddress - • linecache - • locale - • multiprocessing.reduction - • multiprocessing.shared_memory - • operator - • pathlib - • pickle - • pkgutil - • platform - • pyglet.event - • pyglet.graphics.vertexbuffer - • pyglet.window.win32 - • pyglet.window.xlib - • re - • statistics - • tempfile - • threading - • tokenize - • tracemalloc - • types - • typing - • urllib.parse - -
- -
- -
- - gc (builtin module)
-imports: - time - -
-
-imported by: - _posixsubprocess - • weakref - -
- -
- -
- - genericpath -SourceModule
-imports: - os - • stat - -
-
-imported by: - engine_demo.py - • ntpath - • posixpath - -
- -
- -
- - getopt -SourceModule
-imports: - gettext - • os - • sys - -
-
-imported by: - base64 - • mimetypes - • quopri - -
- -
- -
- - getpass -SourceModule
-imports: - contextlib - • io - • msvcrt - • os - • pwd - • sys - • termios - • warnings - -
-
-imported by: - urllib.request - -
- -
- -
- - gettext -SourceModule
-imports: - builtins - • copy - • errno - • locale - • operator - • os - • re - • struct - • sys - • warnings - -
-
-imported by: - argparse - • getopt - -
- -
- -
- - gi -MissingModule
-imported by: - pyglet.media.codecs.gstreamer - -
- -
- -
- - grp /usr/lib64/python3.11/lib-dynload/grp.cpython-311-x86_64-linux-gnu.so
-imported by: - pathlib - • shutil - • subprocess - • tarfile - -
- -
- -
- - gzip -SourceModule
-imports: - _compression - • argparse - • builtins - • errno - • io - • os - • struct - • sys - • time - • warnings - • zlib - -
-
-imported by: - PIL.FitsImagePlugin - • tarfile - • xmlrpc.client - -
- -
- -
- - hashlib -SourceModule
-imports: - _blake2 - • _hashlib - • _md5 - • _sha1 - • _sha256 - • _sha3 - • _sha512 - • logging - • warnings - -
-
-imported by: - hmac - • random - • urllib.request - • uuid - -
- -
- -
- - heapq -SourceModule
-imports: - _heapq - -
-
-imported by: - collections - • engine_demo.py - • pyglet.clock - • queue - -
- -
- -
- - hmac -SourceModule
-imports: - _hashlib - • _operator - • hashlib - • warnings - -
-
-imported by: - multiprocessing.connection - • secrets - -
- -
- -
- - html -Package
-imports: - html.entities - • re - -
-
-imported by: - html.entities - • html.parser - • pyglet.text.formats.html - -
- -
- -
- - html.entities -SourceModule
-imports: - html - -
-
-imported by: - html - • pyglet.text.formats.html - -
- -
- -
- - html.parser -SourceModule
-imports: - _markupbase - • html - • re - -
-
-imported by: - pyglet.text.formats.html - -
- -
- -
- - http -Package
-imports: - enum - -
-
-imported by: - http.client - • http.cookiejar - -
- -
- -
- - http.client -SourceModule
-imports: - collections.abc - • email.message - • email.parser - • errno - • http - • io - • re - • socket - • ssl - • sys - • urllib.parse - • warnings - -
-
-imported by: - http.cookiejar - • urllib.request - • xmlrpc.client - -
- -
- -
- - http.cookiejar -SourceModule
-imports: - calendar - • copy - • datetime - • http - • http.client - • io - • logging - • os - • re - • threading - • time - • traceback - • urllib.parse - • urllib.request - • warnings - -
-
-imported by: - urllib.request - -
- -
- -
- - importlib -Package
-imports: - _frozen_importlib - • _frozen_importlib_external - • _imp - • importlib - • importlib._bootstrap - • importlib._bootstrap_external - • sys - • warnings - -
-
-imported by: - importlib - • importlib._abc - • importlib._bootstrap - • importlib._bootstrap_external - • importlib.abc - • importlib.machinery - • importlib.metadata - • importlib.readers - • importlib.resources - • importlib.resources._common - • importlib.util - • inspect - • pkgutil - -
- -
- -
- - importlib._abc -SourceModule
-imports: - abc - • importlib - • importlib._bootstrap - • warnings - -
-
-imported by: - importlib.abc - • importlib.util - -
- -
- -
- - importlib._bootstrap -SourceModule
-imports: - _frozen_importlib_external - • importlib - -
-
-imported by: - importlib - • importlib._abc - • importlib.machinery - • importlib.util - -
- -
- -
- - importlib._bootstrap_external -SourceModule
-imports: - _imp - • _io - • _warnings - • importlib - • importlib.metadata - • importlib.readers - • marshal - • nt - • posix - • sys - • tokenize - • winreg - -
-
-imported by: - importlib - • importlib.abc - • importlib.machinery - • importlib.util - • py_compile - -
- -
- -
- - importlib.abc -SourceModule
-imports: - _frozen_importlib - • _frozen_importlib_external - • abc - • importlib - • importlib._abc - • importlib._bootstrap_external - • importlib.machinery - • importlib.resources.abc - • warnings - -
-
-imported by: - importlib.metadata - -
- -
- -
- - importlib.machinery -SourceModule
-imports: - importlib - • importlib._bootstrap - • importlib._bootstrap_external - -
-
-imported by: - ctypes.util - • importlib.abc - • inspect - • pkgutil - • py_compile - • runpy - -
- -
- -
- - importlib.metadata -Package
-imports: - abc - • collections - • contextlib - • csv - • email - • functools - • importlib - • importlib.abc - • importlib.metadata - • importlib.metadata._adapters - • importlib.metadata._collections - • importlib.metadata._functools - • importlib.metadata._itertools - • importlib.metadata._meta - • itertools - • operator - • os - • pathlib - • posixpath - • re - • sys - • textwrap - • typing - • warnings - • zipfile - -
-
-imported by: - importlib._bootstrap_external - • importlib.metadata - • importlib.metadata._adapters - • importlib.metadata._collections - • importlib.metadata._functools - • importlib.metadata._itertools - • importlib.metadata._meta - • importlib.metadata._text - -
- -
- -
- - importlib.metadata._adapters -SourceModule
-imports: - email.message - • importlib.metadata - • importlib.metadata._text - • re - • textwrap - -
-
-imported by: - importlib.metadata - -
- -
- -
- - importlib.metadata._collections -SourceModule
-imports: - collections - • importlib.metadata - -
-
-imported by: - importlib.metadata - -
- -
- -
- - importlib.metadata._functools -SourceModule
-imports: - functools - • importlib.metadata - • types - -
-
-imported by: - importlib.metadata - • importlib.metadata._text - -
- -
- -
- - importlib.metadata._itertools -SourceModule
-imports: - importlib.metadata - • itertools - -
-
-imported by: - importlib.metadata - -
- -
- -
- - importlib.metadata._meta -SourceModule
-imports: - importlib.metadata - • typing - -
-
-imported by: - importlib.metadata - -
- -
- -
- - importlib.metadata._text -SourceModule
-imports: - importlib.metadata - • importlib.metadata._functools - • re - -
-
-imported by: - importlib.metadata._adapters - -
- -
- -
- - importlib.readers -SourceModule
-imports: - importlib - • importlib.resources.readers - -
-
-imported by: - importlib._bootstrap_external - • zipimport - -
- -
- -
- - importlib.resources -Package
-imports: - importlib - • importlib.resources - • importlib.resources._common - • importlib.resources._legacy - • importlib.resources.abc - -
-
-imported by: - importlib.resources - • importlib.resources._adapters - • importlib.resources._common - • importlib.resources._itertools - • importlib.resources._legacy - • importlib.resources.abc - • importlib.resources.readers - -
- -
- -
- - importlib.resources._adapters -SourceModule
-imports: - contextlib - • importlib.resources - • importlib.resources.abc - • io - -
-
-imported by: - importlib.resources._common - -
- -
- -
- - importlib.resources._common -SourceModule
-imports: - contextlib - • functools - • importlib - • importlib.resources - • importlib.resources._adapters - • importlib.resources.abc - • os - • pathlib - • tempfile - • types - • typing - -
-
-imported by: - importlib.resources - • importlib.resources._legacy - -
- -
- -
- - importlib.resources._itertools -SourceModule
-imports: - importlib.resources - • itertools - • typing - -
-
-imported by: - importlib.resources.readers - -
- -
- -
- - importlib.resources._legacy -SourceModule
-imports: - functools - • importlib.resources - • importlib.resources._common - • os - • pathlib - • types - • typing - • warnings - -
-
-imported by: - importlib.resources - -
- -
- -
- - importlib.resources.abc -SourceModule
-imports: - abc - • importlib.resources - • io - • os - • typing - -
-
-imported by: - importlib.abc - • importlib.resources - • importlib.resources._adapters - • importlib.resources._common - • importlib.resources.readers - -
- -
- -
- - importlib.resources.readers -SourceModule
-imports: - collections - • importlib.resources - • importlib.resources._itertools - • importlib.resources.abc - • operator - • pathlib - • zipfile - -
-
-imported by: - importlib.readers - -
- -
- -
- - importlib.util -SourceModule
-imports: - _imp - • contextlib - • functools - • importlib - • importlib._abc - • importlib._bootstrap - • importlib._bootstrap_external - • sys - • threading - • types - • warnings - -
-
-imported by: - pkgutil - • py_compile - • runpy - • zipfile - -
- -
- -
- - inspect -SourceModule
-imports: - abc - • argparse - • ast - • builtins - • collections - • collections.abc - • dis - • enum - • functools - • importlib - • importlib.machinery - • itertools - • keyword - • linecache - • operator - • os - • re - • sys - • token - • tokenize - • types - -
-
-imported by: - ast - • dataclasses - • pkgutil - • pyglet.event - • pyglet.window - • pyi_rth_inspect.py - • sdl2.ext.ebs - -
- -
- -
- - io -SourceModule
-imports: - _io - • abc - • warnings - -
-
-imported by: - PIL.BlpImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.FtexImagePlugin - • PIL.GifImagePlugin - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.Image - • PIL.ImageFile - • PIL.ImageQt - • PIL.ImageTk - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.MspImagePlugin - • PIL.PcxImagePlugin - • PIL.PdfImagePlugin - • PIL.PngImagePlugin - • PIL.PsdImagePlugin - • PIL.TiffImagePlugin - • PIL.WebPImagePlugin - • _compression - • bz2 - • csv - • dis - • email.feedparser - • email.generator - • email.iterators - • email.message - • email.parser - • encodings.quopri_codec - • encodings.uu_codec - • engine_demo.py - • getpass - • gzip - • http.client - • http.cookiejar - • importlib.resources._adapters - • importlib.resources.abc - • logging - • lzma - • multiprocessing.connection - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - • multiprocessing.reduction - • os - • pathlib - • pickle - • pprint - • pyglet.extlibs.png - • pyglet.media.codecs.base - • pyglet.resource - • pyglet.window.event - • quopri - • runpy - • sdl2.ext.resources - • sdl2.rwops - • shlex - • socket - • subprocess - • tarfile - • tempfile - • tokenize - • urllib.error - • urllib.request - • uuid - • xml.etree.ElementTree - • xml.sax - • xml.sax.saxutils - • xmlrpc.client - • zipfile - -
- -
- -
- - ipaddress -SourceModule
-imports: - functools - • re - -
-
-imported by: - urllib.parse - • urllib.request - -
- -
- -
- - itertools (builtin module)
-imported by: - PIL.GifImagePlugin - • PIL.ImageFile - • PIL.MpoImagePlugin - • PIL.PngImagePlugin - • PIL.TiffImagePlugin - • _pydecimal - • calendar - • collections - • concurrent.futures.process - • concurrent.futures.thread - • ctypes.macholib.dyld - • dataclasses - • importlib.metadata - • importlib.metadata._itertools - • importlib.resources._itertools - • inspect - • multiprocessing.connection - • multiprocessing.pool - • multiprocessing.process - • multiprocessing.util - • pickle - • platform - • pyglet.extlibs.png - • pyglet.image.codecs.dds - • pyglet.image.codecs.png - • random - • reprlib - • statistics - • threading - • tokenize - • traceback - • weakref - • zipfile - -
- -
- -
- - java -MissingModule
-imported by: - platform - -
- -
- -
- - json -Package
-imports: - codecs - • json.decoder - • json.encoder - • json.scanner - -
-
-imported by: - enne2engine.controls - • enne2engine.spritemanager - • json.decoder - • json.encoder - • json.scanner - -
- -
- -
- - json.decoder -SourceModule
-imports: - _json - • json - • json.scanner - • re - -
-
-imported by: - _json - • json - -
- -
- -
- - json.encoder -SourceModule
-imports: - _json - • json - • re - -
-
-imported by: - json - -
- -
- -
- - json.scanner -SourceModule
-imports: - _json - • json - • re - -
-
-imported by: - json - • json.decoder - -
- -
- -
- - keyword -SourceModule
-imported by: - collections - • dataclasses - • engine_demo.py - • inspect - -
- -
- -
- - linecache -SourceModule
-imports: - functools - • os - • sys - • tokenize - -
-
-imported by: - engine_demo.py - • inspect - • traceback - • tracemalloc - • warnings - -
- -
- -
- - locale -SourceModule
-imports: - _collections_abc - • _locale - • builtins - • encodings - • encodings.aliases - • functools - • os - • re - • sys - • warnings - -
-
-imported by: - _pydecimal - • _strptime - • calendar - • engine_demo.py - • gettext - • pyglet.window.xlib - • subprocess - -
- -
- -
- - logging -Package
-imports: - atexit - • collections.abc - • io - • os - • pickle - • re - • string - • sys - • threading - • time - • traceback - • types - • warnings - • weakref - -
-
-imported by: - PIL.Image - • PIL.PcxImagePlugin - • PIL.PngImagePlugin - • PIL.TiffImagePlugin - • concurrent.futures._base - • hashlib - • http.cookiejar - • multiprocessing.util - -
- -
- -
- - lzma -SourceModule
-imports: - _compression - • _lzma - • builtins - • io - • os - -
-
-imported by: - shutil - • tarfile - • zipfile - -
- -
- -
- - marshal (builtin module)
-imported by: - importlib._bootstrap_external - • pkgutil - • zipimport - -
- -
- -
- - math /usr/lib64/python3.11/lib-dynload/math.cpython-311-x86_64-linux-gnu.so
-imported by: - PIL.FitsImagePlugin - • PIL.GifImagePlugin - • PIL.GimpGradientFile - • PIL.IcoImagePlugin - • PIL.Image - • PIL.JpegImagePlugin - • PIL.PdfImagePlugin - • PIL.PpmImagePlugin - • PIL.TiffImagePlugin - • _pydecimal - • datetime - • enne2engine.sdl2_wrapper - • fractions - • pyglet.extlibs.earcut - • pyglet.extlibs.png - • pyglet.font.directwrite - • pyglet.font.quartz - • pyglet.font.win32 - • pyglet.math - • pyglet.media.drivers.directsound.adaptation - • pyglet.media.drivers.xaudio2.adaptation - • pyglet.media.synthesis - • pyglet.shapes - • pyglet.util - • random - • sdl2.ext.color - • selectors - • statistics - -
- -
- -
- - mimetypes -SourceModule
-imports: - _winapi - • getopt - • os - • posixpath - • sys - • urllib.parse - • winreg - -
-
-imported by: - urllib.request - -
- -
- -
- - mmap /usr/lib64/python3.11/lib-dynload/mmap.cpython-311-x86_64-linux-gnu.so
-imported by: - PIL.Image - • PIL.ImageFile - • PIL.PdfParser - • multiprocessing.heap - • multiprocessing.shared_memory - -
- -
- -
- - msvcrt -MissingModule
-imported by: - getpass - • multiprocessing.popen_spawn_win32 - • multiprocessing.spawn - • pyglet.extlibs.png - • subprocess - -
- -
- -
- - multiprocessing -Package
-imports: - multiprocessing - • multiprocessing.AuthenticationError - • multiprocessing.BufferTooShort - • multiprocessing.Pool - • multiprocessing.TimeoutError - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.forkserver - • multiprocessing.get_context - • multiprocessing.get_start_method - • multiprocessing.pool - • multiprocessing.process - • multiprocessing.reduction - • multiprocessing.resource_sharer - • multiprocessing.resource_tracker - • multiprocessing.set_start_method - • multiprocessing.shared_memory - • multiprocessing.spawn - • multiprocessing.util - • sys - -
-
-imported by: - concurrent.futures.process - • multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.dummy - • multiprocessing.forkserver - • multiprocessing.heap - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.popen_fork - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - • multiprocessing.popen_spawn_win32 - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.reduction - • multiprocessing.resource_sharer - • multiprocessing.resource_tracker - • multiprocessing.shared_memory - • multiprocessing.sharedctypes - • multiprocessing.spawn - • multiprocessing.synchronize - • multiprocessing.util - • pyi_rth_multiprocessing.py - • sdl2.ext.events - -
- -
- -
- - multiprocessing.AuthenticationError -MissingModule
-imported by: - multiprocessing - • multiprocessing.connection - -
- -
- -
- - multiprocessing.BufferTooShort -MissingModule
-imported by: - multiprocessing - • multiprocessing.connection - -
- -
- -
- - multiprocessing.Pool -MissingModule
-imported by: - multiprocessing - • sdl2.ext.events - -
- -
- -
- - multiprocessing.TimeoutError -MissingModule
-imported by: - multiprocessing - • multiprocessing.pool - -
- -
- -
- - multiprocessing.connection -SourceModule
-imports: - _multiprocessing - • _winapi - • errno - • hmac - • io - • itertools - • multiprocessing - • multiprocessing.AuthenticationError - • multiprocessing.BufferTooShort - • multiprocessing.context - • multiprocessing.resource_sharer - • multiprocessing.util - • os - • selectors - • socket - • struct - • sys - • tempfile - • time - • xmlrpc.client - -
-
-imported by: - concurrent.futures.process - • multiprocessing - • multiprocessing.context - • multiprocessing.forkserver - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.popen_fork - • multiprocessing.popen_forkserver - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.resource_sharer - -
- -
- -
- - multiprocessing.context -SourceModule
-imports: - multiprocessing - • multiprocessing.connection - • multiprocessing.forkserver - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.popen_fork - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - • multiprocessing.popen_spawn_win32 - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.reduction - • multiprocessing.sharedctypes - • multiprocessing.spawn - • multiprocessing.synchronize - • multiprocessing.util - • os - • sys - • threading - -
-
-imported by: - multiprocessing - • multiprocessing.connection - • multiprocessing.forkserver - • multiprocessing.heap - • multiprocessing.managers - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - • multiprocessing.popen_spawn_win32 - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.reduction - • multiprocessing.resource_sharer - • multiprocessing.sharedctypes - • multiprocessing.spawn - • multiprocessing.synchronize - -
- -
- -
- - multiprocessing.dummy -Package
-imports: - array - • multiprocessing - • multiprocessing.dummy.connection - • multiprocessing.pool - • queue - • sys - • threading - • weakref - -
-
-imported by: - multiprocessing.dummy.connection - • multiprocessing.pool - -
- -
- -
- - multiprocessing.dummy.connection -SourceModule
-imports: - multiprocessing.dummy - • queue - -
-
-imported by: - multiprocessing.dummy - -
- -
- -
- - multiprocessing.forkserver -SourceModule
-imports: - errno - • multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.process - • multiprocessing.resource_tracker - • multiprocessing.spawn - • multiprocessing.util - • os - • selectors - • signal - • socket - • struct - • sys - • threading - • warnings - -
-
-imported by: - multiprocessing - • multiprocessing.context - • multiprocessing.popen_forkserver - • multiprocessing.util - -
- -
- -
- - multiprocessing.get_context -MissingModule
-imported by: - multiprocessing - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.sharedctypes - -
- -
- -
- - multiprocessing.get_start_method -MissingModule
-imported by: - multiprocessing - • multiprocessing.spawn - -
- -
- -
- - multiprocessing.heap -SourceModule
-imports: - _winapi - • bisect - • collections - • mmap - • multiprocessing - • multiprocessing.context - • multiprocessing.util - • os - • sys - • tempfile - • threading - -
-
-imported by: - multiprocessing.sharedctypes - • multiprocessing.synchronize - -
- -
- -
- - multiprocessing.managers -SourceModule
-imports: - array - • multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.get_context - • multiprocessing.pool - • multiprocessing.process - • multiprocessing.resource_tracker - • multiprocessing.shared_memory - • multiprocessing.util - • os - • queue - • signal - • sys - • threading - • time - • traceback - • types - -
-
-imported by: - multiprocessing.context - -
- -
- -
- - multiprocessing.pool -SourceModule
-imports: - collections - • itertools - • multiprocessing - • multiprocessing.TimeoutError - • multiprocessing.connection - • multiprocessing.dummy - • multiprocessing.get_context - • multiprocessing.util - • os - • queue - • threading - • time - • traceback - • types - • warnings - -
-
-imported by: - multiprocessing - • multiprocessing.context - • multiprocessing.dummy - • multiprocessing.managers - -
- -
- -
- - multiprocessing.popen_fork -SourceModule
-imports: - multiprocessing - • multiprocessing.connection - • multiprocessing.util - • os - • signal - -
-
-imported by: - multiprocessing.context - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - -
- -
- -
- - multiprocessing.popen_forkserver -SourceModule
-imports: - io - • multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.forkserver - • multiprocessing.popen_fork - • multiprocessing.spawn - • multiprocessing.util - • os - -
-
-imported by: - multiprocessing.context - -
- -
- -
- - multiprocessing.popen_spawn_posix -SourceModule
-imports: - io - • multiprocessing - • multiprocessing.context - • multiprocessing.popen_fork - • multiprocessing.resource_tracker - • multiprocessing.spawn - • multiprocessing.util - • os - -
-
-imported by: - multiprocessing.context - -
- -
- -
- - multiprocessing.popen_spawn_win32 -SourceModule
-imports: - _winapi - • msvcrt - • multiprocessing - • multiprocessing.context - • multiprocessing.spawn - • multiprocessing.util - • os - • signal - • sys - -
-
-imported by: - multiprocessing.context - -
- -
- -
- - multiprocessing.process -SourceModule
-imports: - _weakrefset - • itertools - • multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.util - • os - • signal - • sys - • threading - • traceback - -
-
-imported by: - multiprocessing - • multiprocessing.context - • multiprocessing.forkserver - • multiprocessing.managers - • multiprocessing.resource_sharer - • multiprocessing.spawn - • multiprocessing.synchronize - • multiprocessing.util - -
- -
- -
- - multiprocessing.queues -SourceModule
-imports: - _multiprocessing - • collections - • errno - • multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.synchronize - • multiprocessing.util - • os - • queue - • sys - • threading - • time - • traceback - • types - • weakref - -
-
-imported by: - concurrent.futures.process - • multiprocessing.context - -
- -
- -
- - multiprocessing.reduction -SourceModule
-imports: - _winapi - • abc - • array - • copyreg - • functools - • io - • multiprocessing - • multiprocessing.context - • multiprocessing.resource_sharer - • os - • pickle - • socket - • sys - -
-
-imported by: - multiprocessing - • multiprocessing.context - -
- -
- -
- - multiprocessing.resource_sharer -SourceModule
-imports: - multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.process - • multiprocessing.util - • os - • signal - • socket - • sys - • threading - -
-
-imported by: - multiprocessing - • multiprocessing.connection - • multiprocessing.reduction - -
- -
- -
- - multiprocessing.resource_tracker -SourceModule
-imports: - _multiprocessing - • _posixshmem - • multiprocessing - • multiprocessing.spawn - • multiprocessing.util - • os - • signal - • sys - • threading - • warnings - -
-
-imported by: - multiprocessing - • multiprocessing.forkserver - • multiprocessing.managers - • multiprocessing.popen_spawn_posix - • multiprocessing.shared_memory - • multiprocessing.spawn - • multiprocessing.synchronize - • multiprocessing.util - -
- -
- -
- - multiprocessing.set_start_method -MissingModule
-imported by: - multiprocessing - • multiprocessing.spawn - -
- -
- -
- - multiprocessing.shared_memory -SourceModule
-imports: - _posixshmem - • _winapi - • errno - • functools - • mmap - • multiprocessing - • multiprocessing.resource_tracker - • os - • secrets - • struct - • types - -
-
-imported by: - multiprocessing - • multiprocessing.managers - -
- -
- -
- - multiprocessing.sharedctypes -SourceModule
-imports: - ctypes - • multiprocessing - • multiprocessing.context - • multiprocessing.get_context - • multiprocessing.heap - • weakref - -
-
-imported by: - multiprocessing.context - -
- -
- -
- - multiprocessing.spawn -SourceModule
-imports: - _winapi - • msvcrt - • multiprocessing - • multiprocessing.context - • multiprocessing.get_start_method - • multiprocessing.process - • multiprocessing.resource_tracker - • multiprocessing.set_start_method - • multiprocessing.util - • os - • runpy - • sys - • types - -
-
-imported by: - multiprocessing - • multiprocessing.context - • multiprocessing.forkserver - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - • multiprocessing.popen_spawn_win32 - • multiprocessing.resource_tracker - • pyi_rth_multiprocessing.py - -
- -
- -
- - multiprocessing.synchronize -SourceModule
-imports: - _multiprocessing - • multiprocessing - • multiprocessing.context - • multiprocessing.heap - • multiprocessing.process - • multiprocessing.resource_tracker - • multiprocessing.util - • struct - • sys - • tempfile - • threading - • time - -
-
-imported by: - concurrent.futures.process - • multiprocessing.context - • multiprocessing.queues - -
- -
- -
- - multiprocessing.util -SourceModule
-imports: - _posixsubprocess - • atexit - • itertools - • logging - • multiprocessing - • multiprocessing.forkserver - • multiprocessing.process - • multiprocessing.resource_tracker - • os - • shutil - • subprocess - • sys - • tempfile - • threading - • traceback - • weakref - -
-
-imported by: - multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.forkserver - • multiprocessing.heap - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.popen_fork - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - • multiprocessing.popen_spawn_win32 - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.resource_sharer - • multiprocessing.resource_tracker - • multiprocessing.spawn - • multiprocessing.synchronize - -
- -
- -
- - netrc -SourceModule
-imports: - os - • pwd - • shlex - • stat - -
-
-imported by: - ftplib - -
- -
- -
- - nt -MissingModule
-imported by: - ctypes - • importlib._bootstrap_external - • ntpath - • os - • shutil - -
- -
- -
- - ntpath -SourceModule
-imports: - _winapi - • genericpath - • nt - • os - • stat - • string - • sys - -
-
-imported by: - engine_demo.py - • os - • pathlib - -
- -
- -
- - nturl2path -SourceModule
-imports: - string - • urllib.parse - -
-
-imported by: - urllib.request - -
- -
- -
- - numbers -SourceModule
-imports: - abc - -
-
-imported by: - PIL.TiffImagePlugin - • PIL._typing - • _pydecimal - • fractions - • statistics - -
- -
- -
- - numpy -MissingModule
-imported by: - PIL._typing - • sdl2.ext.pixelaccess - -
- -
- -
- - olefile -MissingModule
-imported by: - PIL.FpxImagePlugin - • PIL.MicImagePlugin - -
- -
- -
- - opcode -SourceModule
-imports: - _opcode - -
-
-imported by: - dis - -
- -
- -
- - operator -SourceModule
-imports: - _operator - • builtins - • functools - -
-
-imported by: - PIL.ImageCms - • PIL.ImageOps - • collections - • copyreg - • datetime - • email._header_value_parser - • engine_demo.py - • enum - • fractions - • gettext - • importlib.metadata - • importlib.resources.readers - • inspect - • pathlib - • pyglet.clock - • pyglet.extlibs.png - • pyglet.input.base - • pyglet.math - • random - • statistics - • typing - -
- -
- -
- - org -MissingModule
-imported by: - pickle - -
- -
- -
- - os -SourceModule
-imports: - _collections_abc - • abc - • io - • nt - • ntpath - • os.path - • posix - • posixpath - • stat - • subprocess - • sys - • warnings - -
-
-imported by: - PIL.BlpImagePlugin - • PIL.BmpImagePlugin - • PIL.EpsImagePlugin - • PIL.FliImagePlugin - • PIL.GifImagePlugin - • PIL.IcnsImagePlugin - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageFile - • PIL.ImageShow - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.MpoImagePlugin - • PIL.PdfImagePlugin - • PIL.PdfParser - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.TiffImagePlugin - • PIL._typing - • PIL._util - • PIL.features - • argparse - • bz2 - • concurrent.futures.process - • concurrent.futures.thread - • contextlib - • ctypes - • ctypes._aix - • ctypes.macholib.dyld - • ctypes.util - • email.utils - • engine_demo.py - • enne2engine.controls - • enne2engine.sdl2_utils.gui - • fnmatch - • genericpath - • getopt - • getpass - • gettext - • gzip - • http.cookiejar - • importlib.metadata - • importlib.resources._common - • importlib.resources._legacy - • importlib.resources.abc - • inspect - • linecache - • locale - • logging - • lzma - • mimetypes - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.forkserver - • multiprocessing.heap - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.popen_fork - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - • multiprocessing.popen_spawn_win32 - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.reduction - • multiprocessing.resource_sharer - • multiprocessing.resource_tracker - • multiprocessing.shared_memory - • multiprocessing.spawn - • multiprocessing.util - • netrc - • ntpath - • os.path - • pathlib - • pkgutil - • platform - • posixpath - • py_compile - • pyglet - • pyglet.app.xlib - • pyglet.canvas.xlib_vidmoderestore - • pyglet.extlibs.png - • pyglet.font - • pyglet.font.directwrite - • pyglet.input.controller - • pyglet.input.linux.evdev - • pyglet.lib - • pyglet.media.codecs.wmf - • pyglet.media.drivers.xaudio2.lib_xaudio2 - • pyglet.model.codecs.obj - • pyglet.resource - • pyglet.util - • pyi_rth_inspect.py - • random - • runpy - • sdl2.dll - • sdl2.ext.image - • sdl2.ext.resources - • sdl2.ext.ttf - • sdl2.sdlimage - • sdl2.sdlttf - • shlex - • shutil - • socket - • ssl - • subprocess - • tarfile - • tempfile - • threading - • urllib.request - • uuid - • xml.sax - • xml.sax.saxutils - • zipfile - -
- -
- -
- - os.path -AliasNode
-imports: - os - • posixpath - -
-
-imported by: - os - • pkgutil - • py_compile - • pyglet.event - • pyglet.image.codecs - • pyglet.image.codecs.pil - • pyglet.media.codecs.pyogg - • pyglet.text - • tracemalloc - -
- -
- -
- - pathlib -SourceModule
-imports: - _collections_abc - • errno - • fnmatch - • functools - • grp - • io - • ntpath - • operator - • os - • posixpath - • pwd - • re - • stat - • sys - • urllib.parse - • warnings - -
-
-imported by: - importlib.metadata - • importlib.resources._common - • importlib.resources._legacy - • importlib.resources.readers - • pyglet.font.directwrite - • zipfile - -
- -
- -
- - pickle -SourceModule
-imports: - _compat_pickle - • _pickle - • codecs - • copyreg - • functools - • io - • itertools - • org - • pprint - • re - • struct - • sys - • types - -
-
-imported by: - logging - • multiprocessing.reduction - • pyglet.media.buffered_logger - • tracemalloc - -
- -
- -
- - pkgutil -SourceModule
-imports: - collections - • functools - • importlib - • importlib.machinery - • importlib.util - • inspect - • marshal - • os - • os.path - • re - • sys - • types - • warnings - • zipimport - -
-
-imported by: - pyi_rth_pkgutil.py - • runpy - -
- -
- -
- - platform -SourceModule
-imports: - 'java.lang' - • _winreg - • collections - • functools - • itertools - • java - • os - • re - • socket - • struct - • subprocess - • sys - • vms_lib - • winreg - -
-
-imported by: - pyglet.app - • pyglet.font.directwrite - • pyglet.gl.cocoa - • pyglet.libs.darwin.cocoapy.cocoatypes - • pyglet.libs.darwin.cocoapy.runtime - • pyglet.media.codecs.wmf - • pyglet.media.drivers.xaudio2.lib_xaudio2 - • sdl2.dll - • uuid - -
- -
- -
- - posix (builtin module)
-imports: - resource - -
-
-imported by: - importlib._bootstrap_external - • os - • posixpath - • shutil - -
- -
- -
- - posixpath -SourceModule
-imports: - genericpath - • os - • posix - • pwd - • re - • stat - • sys - -
-
-imported by: - engine_demo.py - • fnmatch - • importlib.metadata - • mimetypes - • os - • os.path - • pathlib - • urllib.request - • zipfile - -
- -
- -
- - pprint -SourceModule
-imports: - collections - • dataclasses - • io - • re - • sys - • time - • types - -
-
-imported by: - pickle - -
- -
- -
- - pwd (builtin module)
-imported by: - getpass - • netrc - • pathlib - • posixpath - • shutil - • subprocess - • tarfile - -
- -
- -
- - py_compile -SourceModule
-imports: - argparse - • enum - • importlib._bootstrap_external - • importlib.machinery - • importlib.util - • os - • os.path - • sys - • traceback - -
-
-imported by: - zipfile - -
- -
- -
- - pyexpat /usr/lib64/python3.11/lib-dynload/pyexpat.cpython-311-x86_64-linux-gnu.so
-imported by: - _elementtree - • xml.etree.ElementTree - • xml.parsers.expat - -
- -
- -
- - pyglet -Package
-imports: - __future__ - • collections.abc - • ctypes - • dataclasses - • os - • pyglet - • pyglet.app - • pyglet.canvas - • pyglet.clock - • pyglet.customtypes - • pyglet.event - • pyglet.font - • pyglet.gl - • pyglet.graphics - • pyglet.gui - • pyglet.image - • pyglet.input - • pyglet.lib - • pyglet.math - • pyglet.media - • pyglet.model - • pyglet.resource - • pyglet.shapes - • pyglet.sprite - • pyglet.text - • pyglet.window - • sys - • types - • typing - -
-
-imported by: - enne2engine.pyglet_wrapper - • pyglet - • pyglet.app - • pyglet.app.base - • pyglet.app.cocoa - • pyglet.app.xlib - • pyglet.canvas - • pyglet.canvas.base - • pyglet.canvas.headless - • pyglet.canvas.xlib - • pyglet.clock - • pyglet.customtypes - • pyglet.event - • pyglet.extlibs - • pyglet.font - • pyglet.font.base - • pyglet.font.directwrite - • pyglet.font.freetype - • pyglet.font.user - • pyglet.font.win32 - • pyglet.gl - • pyglet.gl.base - • pyglet.gl.headless - • pyglet.gl.lib - • pyglet.gl.lib_wgl - • pyglet.gl.win32 - • pyglet.gl.xlib - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.graphics.vertexarray - • pyglet.graphics.vertexbuffer - • pyglet.gui - • pyglet.gui.widgets - • pyglet.image - • pyglet.image.atlas - • pyglet.image.buffer - • pyglet.image.codecs - • pyglet.input - • pyglet.input.controller_db - • pyglet.input.linux.evdev - • pyglet.input.linux.x11_xinput - • pyglet.input.macos.darwin_hid - • pyglet.input.win32 - • pyglet.input.win32.directinput - • pyglet.input.win32.wintab - • pyglet.input.win32.xinput - • pyglet.lib - • pyglet.libs - • pyglet.libs.egl.lib - • pyglet.libs.win32 - • pyglet.math - • pyglet.media - • pyglet.media.codecs - • pyglet.media.codecs.ffmpeg - • pyglet.media.codecs.wmf - • pyglet.media.devices - • pyglet.media.devices.base - • pyglet.media.drivers - • pyglet.media.drivers.base - • pyglet.media.drivers.openal - • pyglet.media.drivers.pulse - • pyglet.media.drivers.xaudio2.interface - • pyglet.media.player - • pyglet.media.player_worker_thread - • pyglet.model - • pyglet.model.codecs.obj - • pyglet.resource - • pyglet.shapes - • pyglet.sprite - • pyglet.text - • pyglet.text.caret - • pyglet.text.document - • pyglet.text.formats.attributed - • pyglet.text.formats.html - • pyglet.text.formats.plaintext - • pyglet.text.formats.structured - • pyglet.text.layout.base - • pyglet.text.layout.scrolling - • pyglet.util - • pyglet.window - • pyglet.window.cocoa - • pyglet.window.cocoa.pyglet_view - • pyglet.window.cocoa.pyglet_window - • pyglet.window.key - • pyglet.window.win32 - • pyglet.window.xlib - -
- -
- -
- - pyglet.app -Package
-imports: - __future__ - • platform - • pyglet - • pyglet.app.base - • pyglet.app.cocoa - • pyglet.app.win32 - • pyglet.app.xlib - • sys - • weakref - -
-
-imported by: - pyglet - • pyglet.app.base - • pyglet.app.cocoa - • pyglet.app.win32 - • pyglet.app.xlib - • pyglet.canvas.base - • pyglet.canvas.xlib - • pyglet.gl - • pyglet.input.win32.directinput - • pyglet.window - • pyglet.window.cocoa.pyglet_view - • pyglet.window.cocoa.pyglet_window - • pyglet.window.win32 - -
- -
- -
- - pyglet.app.base -SourceModule
-imports: - __future__ - • pyglet - • pyglet.app - • pyglet.clock - • pyglet.event - • pyglet.window - • queue - • sys - • threading - • typing - -
-
-imported by: - pyglet.app - • pyglet.app.cocoa - • pyglet.app.win32 - • pyglet.app.xlib - -
- -
- -
- - pyglet.app.cocoa -SourceModule
-imports: - pyglet - • pyglet.app - • pyglet.app.base - • pyglet.libs.darwin - • pyglet.libs.darwin.cocoapy - • pyglet.window - • signal - • time - -
-
-imported by: - pyglet.app - -
- -
- -
- - pyglet.app.win32 -SourceModule
-imports: - ctypes - • pyglet.app - • pyglet.app.base - • pyglet.libs.win32 - • pyglet.libs.win32.constants - • pyglet.libs.win32.types - -
-
-imported by: - pyglet.app - -
- -
- -
- - pyglet.app.xlib -SourceModule
-imports: - os - • pyglet - • pyglet.app - • pyglet.app.base - • select - • threading - -
-
-imported by: - pyglet.app - • pyglet.canvas.xlib - • pyglet.input.linux.evdev - -
- -
- -
- - pyglet.canvas -Package
-imports: - pyglet - • pyglet.canvas - • pyglet.canvas.base - • pyglet.canvas.cocoa - • pyglet.canvas.headless - • pyglet.canvas.win32 - • pyglet.canvas.xlib - • pyglet.canvas.xlib_vidmoderestore - • sys - • weakref - -
-
-imported by: - pyglet - • pyglet.canvas - • pyglet.canvas.base - • pyglet.canvas.cocoa - • pyglet.canvas.headless - • pyglet.canvas.win32 - • pyglet.canvas.xlib - • pyglet.canvas.xlib_vidmoderestore - • pyglet.gl.base - • pyglet.input - • pyglet.window - -
- -
- -
- - pyglet.canvas.base -SourceModule
-imports: - __future__ - • pyglet - • pyglet.app - • pyglet.canvas - • pyglet.gl - • pyglet.window - • typing - -
-
-imported by: - pyglet.canvas - • pyglet.canvas.cocoa - • pyglet.canvas.headless - • pyglet.canvas.win32 - • pyglet.canvas.xlib - • pyglet.input.base - -
- -
- -
- - pyglet.canvas.cocoa -SourceModule
-imports: - __future__ - • ctypes - • pyglet.canvas - • pyglet.canvas.base - • pyglet.libs.darwin.cocoapy - -
-
-imported by: - pyglet.canvas - • pyglet.gl.cocoa - • pyglet.window.cocoa - -
- -
- -
- - pyglet.canvas.headless -SourceModule
-imports: - ctypes - • pyglet - • pyglet.canvas - • pyglet.canvas.base - • pyglet.libs.egl - • pyglet.libs.egl.egl - • pyglet.libs.egl.eglext - • warnings - -
-
-imported by: - pyglet.canvas - • pyglet.gl.headless - • pyglet.window.headless - -
- -
- -
- - pyglet.canvas.win32 -SourceModule
-imports: - pyglet.canvas - • pyglet.canvas.base - • pyglet.libs.win32 - • pyglet.libs.win32.constants - • pyglet.libs.win32.context_managers - • pyglet.libs.win32.types - -
-
-imported by: - pyglet.canvas - • pyglet.gl.win32 - • pyglet.window.win32 - -
- -
- -
- - pyglet.canvas.xlib -SourceModule
-imports: - __future__ - • ctypes - • pyglet - • pyglet.app - • pyglet.app.xlib - • pyglet.canvas - • pyglet.canvas.base - • pyglet.canvas.xlib_vidmoderestore - • pyglet.libs.x11 - • pyglet.libs.x11.xf86vmode - • pyglet.libs.x11.xinerama - • pyglet.libs.x11.xlib - • pyglet.libs.x11.xsync - • traceback - -
-
-imported by: - pyglet.canvas - • pyglet.gl.xlib - • pyglet.window.xlib - -
- -
- -
- - pyglet.canvas.xlib_vidmoderestore -SourceModule
-imports: - ctypes - • os - • pyglet.canvas - • pyglet.libs.x11 - • pyglet.libs.x11.xf86vmode - • pyglet.libs.x11.xlib - • pyglet.util - • signal - • struct - • threading - -
-
-imported by: - pyglet.canvas - • pyglet.canvas.xlib - -
- -
- -
- - pyglet.clock -SourceModule
-imports: - __future__ - • collections - • heapq - • operator - • pyglet - • time - • typing - -
-
-imported by: - pyglet - • pyglet.app.base - • pyglet.sprite - • pyglet.text.caret - -
- -
- -
- - pyglet.customtypes -SourceModule
-imports: - collections.abc - • ctypes - • pyglet - • sys - • typing - -
-
-imported by: - pyglet - • pyglet.text - • pyglet.text.layout.base - • pyglet.text.layout.incremental - • pyglet.text.layout.scrolling - • pyglet.util - -
- -
- -
- - pyglet.event -SourceModule
-imports: - __future__ - • functools - • inspect - • os.path - • pyglet - • typing - • weakref - -
-
-imported by: - pyglet - • pyglet.app.base - • pyglet.gui.widgets - • pyglet.input.base - • pyglet.input.macos.darwin_hid - • pyglet.input.win32.directinput - • pyglet.input.win32.xinput - • pyglet.media.devices.base - • pyglet.sprite - • pyglet.text.caret - • pyglet.text.document - • pyglet.text.layout.incremental - • pyglet.window - • pyglet.window.cocoa - • pyglet.window.headless - • pyglet.window.win32 - • pyglet.window.xlib - -
- -
- -
- - pyglet.extlibs -Package
-imports: - pyglet - • pyglet.extlibs.earcut - -
-
-imported by: - pyglet.extlibs.earcut - • pyglet.extlibs.png - • pyglet.shapes - -
- -
- -
- - pyglet.extlibs.earcut -SourceModule
-imports: - math - • pyglet.extlibs - -
-
-imported by: - pyglet.extlibs - • pyglet.shapes - -
- -
- -
- - pyglet.extlibs.png -SourceModule
-imports: - array - • collections - • io - • itertools - • math - • msvcrt - • operator - • os - • pyglet.extlibs - • re - • struct - • sys - • warnings - • zlib - -
-
-imported by: - pyglet.image.codecs.png - -
- -
- -
- - pyglet.font -Package
-imports: - __future__ - • os - • pyglet - • pyglet.font.base - • pyglet.font.directwrite - • pyglet.font.freetype - • pyglet.font.quartz - • pyglet.font.user - • pyglet.font.win32 - • pyglet.gl - • pyglet.libs.win32.constants - • sys - • typing - • weakref - -
-
-imported by: - pyglet - • pyglet.font.base - • pyglet.font.directwrite - • pyglet.font.fontconfig - • pyglet.font.freetype - • pyglet.font.freetype_lib - • pyglet.font.quartz - • pyglet.font.user - • pyglet.font.win32 - • pyglet.resource - • pyglet.text.document - -
- -
- -
- - pyglet.font.base -SourceModule
-imports: - __future__ - • abc - • pyglet - • pyglet.font - • pyglet.gl - • pyglet.image - • typing - • unicodedata - -
-
-imported by: - pyglet.font - • pyglet.font.directwrite - • pyglet.font.fontconfig - • pyglet.font.freetype - • pyglet.font.freetype_lib - • pyglet.font.quartz - • pyglet.font.user - • pyglet.font.win32 - • pyglet.text.document - • pyglet.text.layout.base - • pyglet.text.layout.incremental - -
- -
- -
- - pyglet.font.directwrite -SourceModule
-imports: - __future__ - • copy - • ctypes - • ctypes.wintypes - • math - • os - • pathlib - • platform - • pyglet - • pyglet.font - • pyglet.font.base - • pyglet.image - • pyglet.image.codecs.wic - • pyglet.libs.win32 - • pyglet.libs.win32.com - • pyglet.libs.win32.constants - • pyglet.util - • typing - -
-
-imported by: - pyglet.font - -
- -
- -
- - pyglet.font.fontconfig -SourceModule
-imports: - __future__ - • collections - • ctypes - • pyglet.font - • pyglet.font.base - • pyglet.font.freetype_lib - • pyglet.lib - • pyglet.util - • typing - -
-
-imported by: - pyglet.font.freetype - -
- -
- -
- - pyglet.font.freetype -SourceModule
-imports: - __future__ - • ctypes - • pyglet - • pyglet.font - • pyglet.font.base - • pyglet.font.fontconfig - • pyglet.font.freetype_lib - • pyglet.image - • pyglet.util - • typing - • warnings - -
-
-imported by: - pyglet.font - -
- -
- -
- - pyglet.font.freetype_lib -SourceModule
-imports: - __future__ - • ctypes - • pyglet.font - • pyglet.font.base - • pyglet.lib - • typing - -
-
-imported by: - pyglet.font.fontconfig - • pyglet.font.freetype - -
- -
- -
- - pyglet.font.quartz -SourceModule
-imports: - __future__ - • ctypes - • math - • pyglet.font - • pyglet.font.base - • pyglet.image - • pyglet.libs.darwin - • pyglet.libs.darwin.cocoapy - • typing - • warnings - -
-
-imported by: - pyglet.font - -
- -
- -
- - pyglet.font.user -SourceModule
-imports: - PIL - • PIL.Image - • __future__ - • pyglet - • pyglet.font - • pyglet.font.base - • pyglet.image - • typing - -
-
-imported by: - pyglet.font - -
- -
- -
- - pyglet.font.win32 -SourceModule
-imports: - __future__ - • ctypes - • math - • pyglet - • pyglet.font - • pyglet.font.base - • pyglet.image - • pyglet.image.codecs.gdiplus - • pyglet.libs.win32 - • pyglet.libs.win32.constants - • pyglet.libs.win32.context_managers - • pyglet.libs.win32.types - • typing - • warnings - -
-
-imported by: - pyglet.font - -
- -
- -
- - pyglet.gl -Package
-imports: - __future__ - • pyglet - • pyglet.app - • pyglet.gl - • pyglet.gl.base - • pyglet.gl.cocoa - • pyglet.gl.gl - • pyglet.gl.gl_compat - • pyglet.gl.gl_info - • pyglet.gl.glx - • pyglet.gl.glx_info - • pyglet.gl.glxext_arb - • pyglet.gl.glxext_mesa - • pyglet.gl.headless - • pyglet.gl.lib - • pyglet.gl.wgl - • pyglet.gl.wgl_info - • pyglet.gl.win32 - • pyglet.gl.xlib - • pyglet.window - • sys - • typing - -
-
-imported by: - pyglet - • pyglet.canvas.base - • pyglet.font - • pyglet.font.base - • pyglet.gl - • pyglet.gl.base - • pyglet.gl.cocoa - • pyglet.gl.gl - • pyglet.gl.gl_compat - • pyglet.gl.gl_info - • pyglet.gl.glx - • pyglet.gl.glx_info - • pyglet.gl.glxext_arb - • pyglet.gl.glxext_mesa - • pyglet.gl.headless - • pyglet.gl.lib - • pyglet.gl.lib_agl - • pyglet.gl.lib_glx - • pyglet.gl.lib_wgl - • pyglet.gl.wgl - • pyglet.gl.wgl_info - • pyglet.gl.wglext_arb - • pyglet.gl.win32 - • pyglet.gl.xlib - • pyglet.graphics.shader - • pyglet.graphics.vertexarray - • pyglet.graphics.vertexbuffer - • pyglet.gui.ninepatch - • pyglet.image - • pyglet.image.buffer - • pyglet.image.codecs.dds - • pyglet.image.codecs.gdkpixbuf2 - • pyglet.image.codecs.s3tc - • pyglet.media.player - • pyglet.model - • pyglet.model.codecs.obj - • pyglet.shapes - • pyglet.sprite - • pyglet.text.caret - • pyglet.text.formats.structured - • pyglet.text.layout.base - • pyglet.text.layout.scrolling - • pyglet.window - -
- -
- -
- - pyglet.gl.base -SourceModule
-imports: - __future__ - • _ctypes - • abc - • enum - • pyglet - • pyglet.canvas - • pyglet.gl - • pyglet.gl.gl_info - • pyglet.graphics.shader - • threading - • typing - • weakref - -
-
-imported by: - pyglet.gl - • pyglet.gl.cocoa - • pyglet.gl.headless - • pyglet.gl.win32 - • pyglet.gl.xlib - -
- -
- -
- - pyglet.gl.cocoa -SourceModule
-imports: - __future__ - • ctypes - • platform - • pyglet.canvas.cocoa - • pyglet.gl - • pyglet.gl.base - • pyglet.libs.darwin - • pyglet.libs.darwin.cocoapy - -
-
-imported by: - pyglet.gl - • pyglet.window.cocoa - -
- -
- -
- - pyglet.gl.gl -SourceModule
-imports: - __future__ - • ctypes - • pyglet.gl - • pyglet.gl.lib - -
-
-imported by: - pyglet.gl - • pyglet.gl.gl_info - • pyglet.gl.wgl_info - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.graphics.vertexbuffer - • pyglet.graphics.vertexdomain - -
- -
- -
- - pyglet.gl.gl_compat -SourceModule
-imports: - ctypes - • pyglet.gl - • pyglet.gl.lib - -
-
-imported by: - pyglet.gl - -
- -
- -
- - pyglet.gl.gl_info -SourceModule
-imports: - __future__ - • ctypes - • pyglet.gl - • pyglet.gl.gl - • pyglet.gl.lib - • pyglet.util - • warnings - -
-
-imported by: - pyglet.gl - • pyglet.gl.base - • pyglet.gl.lib_wgl - • pyglet.gl.wgl_info - • pyglet.gl.win32 - • pyglet.graphics.shader - • pyglet.image - • pyglet.image.codecs.s3tc - -
- -
- -
- - pyglet.gl.glx -SourceModule
-imports: - __future__ - • ctypes - • pyglet.gl - • pyglet.gl.lib - • pyglet.libs.x11.xlib - -
-
-imported by: - pyglet.gl - • pyglet.gl.glx_info - • pyglet.gl.glxext_arb - • pyglet.gl.xlib - -
- -
- -
- - pyglet.gl.glx_info -SourceModule
-imports: - __future__ - • ctypes - • pyglet.gl - • pyglet.gl.glx - • pyglet.libs.x11.xlib - • pyglet.util - • typing - -
-
-imported by: - pyglet.gl - • pyglet.gl.xlib - -
- -
- -
- - pyglet.gl.glxext_arb -SourceModule
-imports: - ctypes - • pyglet.gl - • pyglet.gl.glx - • pyglet.gl.lib - • pyglet.libs.x11.xlib - -
-
-imported by: - pyglet.gl - • pyglet.gl.xlib - -
- -
- -
- - pyglet.gl.glxext_mesa -SourceModule
-imports: - ctypes - • pyglet.gl - • pyglet.gl.lib - -
-
-imported by: - pyglet.gl - • pyglet.gl.xlib - -
- -
- -
- - pyglet.gl.headless -SourceModule
-imports: - __future__ - • ctypes - • pyglet - • pyglet.canvas.headless - • pyglet.gl - • pyglet.gl.base - • pyglet.libs.egl - • pyglet.libs.egl.egl - -
-
-imported by: - pyglet.gl - -
- -
- -
- - pyglet.gl.lib -SourceModule
-imports: - __future__ - • ctypes - • pyglet - • pyglet.gl - • pyglet.gl.lib_agl - • pyglet.gl.lib_glx - • pyglet.gl.lib_wgl - • typing - -
-
-imported by: - pyglet.gl - • pyglet.gl.gl - • pyglet.gl.gl_compat - • pyglet.gl.gl_info - • pyglet.gl.glx - • pyglet.gl.glxext_arb - • pyglet.gl.glxext_mesa - • pyglet.gl.lib_agl - • pyglet.gl.lib_glx - • pyglet.gl.lib_wgl - • pyglet.gl.wgl - • pyglet.gl.wgl_info - • pyglet.gl.wglext_arb - • pyglet.gl.xlib - -
- -
- -
- - pyglet.gl.lib_agl -SourceModule
-imports: - __future__ - • pyglet.gl - • pyglet.gl.lib - • pyglet.lib - • typing - -
-
-imported by: - pyglet.gl.lib - -
- -
- -
- - pyglet.gl.lib_glx -SourceModule
-imports: - __future__ - • ctypes - • pyglet.gl - • pyglet.gl.lib - • pyglet.lib - • pyglet.util - • typing - -
-
-imported by: - pyglet.gl.lib - -
- -
- -
- - pyglet.gl.lib_wgl -SourceModule
-imports: - __future__ - • ctypes - • pyglet - • pyglet.gl - • pyglet.gl.gl_info - • pyglet.gl.lib - • pyglet.lib - • pyglet.util - • typing - -
-
-imported by: - pyglet.gl.lib - -
- -
- -
- - pyglet.gl.wgl -SourceModule
-imports: - ctypes - • pyglet.gl - • pyglet.gl.lib - -
-
-imported by: - pyglet.gl - • pyglet.gl.win32 - -
- -
- -
- - pyglet.gl.wgl_info -SourceModule
-imports: - __future__ - • ctypes - • pyglet.gl - • pyglet.gl.gl - • pyglet.gl.gl_info - • pyglet.gl.lib - • pyglet.gl.wglext_arb - • pyglet.util - • warnings - -
-
-imported by: - pyglet.gl - • pyglet.gl.win32 - -
- -
- -
- - pyglet.gl.wglext_arb -SourceModule
-imports: - ctypes - • pyglet.gl - • pyglet.gl.lib - -
-
-imported by: - pyglet.gl.wgl_info - • pyglet.gl.win32 - -
- -
- -
- - pyglet.gl.win32 -SourceModule
-imports: - __future__ - • ctypes - • pyglet - • pyglet.canvas.win32 - • pyglet.gl - • pyglet.gl.base - • pyglet.gl.gl_info - • pyglet.gl.wgl - • pyglet.gl.wgl_info - • pyglet.gl.wglext_arb - • pyglet.libs.win32 - • pyglet.libs.win32.constants - -
-
-imported by: - pyglet.gl - -
- -
- -
- - pyglet.gl.xlib -SourceModule
-imports: - __future__ - • ctypes - • pyglet - • pyglet.canvas.xlib - • pyglet.gl - • pyglet.gl.base - • pyglet.gl.glx - • pyglet.gl.glx_info - • pyglet.gl.glxext_arb - • pyglet.gl.glxext_mesa - • pyglet.gl.lib - • pyglet.libs.x11.xlib - • typing - • warnings - -
-
-imported by: - pyglet.gl - • pyglet.window.xlib - -
- -
- -
- - pyglet.graphics -Package
-imports: - __future__ - • ctypes - • pyglet - • pyglet.gl.gl - • pyglet.graphics - • pyglet.graphics.allocation - • pyglet.graphics.shader - • pyglet.graphics.vertexarray - • pyglet.graphics.vertexbuffer - • pyglet.graphics.vertexdomain - • typing - • weakref - -
-
-imported by: - pyglet - • pyglet.graphics - • pyglet.graphics.allocation - • pyglet.graphics.shader - • pyglet.graphics.vertexarray - • pyglet.graphics.vertexbuffer - • pyglet.graphics.vertexdomain - • pyglet.gui.ninepatch - • pyglet.gui.widgets - • pyglet.model - • pyglet.model.codecs - • pyglet.resource - • pyglet.shapes - • pyglet.sprite - • pyglet.text - • pyglet.text.caret - • pyglet.text.formats.structured - • pyglet.text.layout.base - • pyglet.text.layout.incremental - • pyglet.text.layout.scrolling - • pyglet.window - -
- -
- -
- - pyglet.graphics.allocation -SourceModule
-imports: - __future__ - • pyglet.graphics - -
-
-imported by: - pyglet.graphics - • pyglet.graphics.vertexdomain - -
- -
- -
- - pyglet.graphics.shader -SourceModule
-imports: - __future__ - • _ctypes - • _weakref - • collections - • ctypes - • pyglet - • pyglet.gl - • pyglet.gl.gl - • pyglet.gl.gl_info - • pyglet.graphics - • pyglet.graphics.vertexbuffer - • pyglet.graphics.vertexdomain - • re - • typing - • warnings - • weakref - -
-
-imported by: - pyglet.gl.base - • pyglet.graphics - • pyglet.graphics.vertexbuffer - • pyglet.graphics.vertexdomain - • pyglet.image - • pyglet.model - • pyglet.resource - • pyglet.shapes - • pyglet.sprite - • pyglet.text - • pyglet.text.formats.structured - • pyglet.text.layout.base - • pyglet.text.layout.incremental - • pyglet.text.layout.scrolling - • pyglet.window - -
- -
- -
- - pyglet.graphics.vertexarray -SourceModule
-imports: - __future__ - • ctypes - • pyglet - • pyglet.gl - • pyglet.graphics - • typing - -
-
-imported by: - pyglet.graphics - • pyglet.graphics.vertexdomain - -
- -
- -
- - pyglet.graphics.vertexbuffer -SourceModule
-imports: - __future__ - • _ctypes - • abc - • ctypes - • functools - • pyglet - • pyglet.gl - • pyglet.gl.gl - • pyglet.graphics - • pyglet.graphics.shader - • sys - • typing - -
-
-imported by: - pyglet.graphics - • pyglet.graphics.shader - • pyglet.graphics.vertexdomain - • pyglet.image - -
- -
- -
- - pyglet.graphics.vertexdomain -SourceModule
-imports: - __future__ - • _ctypes - • ctypes - • pyglet.gl.gl - • pyglet.graphics - • pyglet.graphics.allocation - • pyglet.graphics.shader - • pyglet.graphics.vertexarray - • pyglet.graphics.vertexbuffer - • typing - -
-
-imported by: - pyglet.graphics - • pyglet.graphics.shader - • pyglet.model - • pyglet.text.layout.base - • pyglet.text.layout.incremental - -
- -
- -
- - pyglet.gui -Package
-imports: - pyglet - • pyglet.gui.frame - • pyglet.gui.ninepatch - • pyglet.gui.widgets - -
-
-imported by: - pyglet - • pyglet.gui.frame - • pyglet.gui.ninepatch - • pyglet.gui.widgets - -
- -
- -
- - pyglet.gui.frame -SourceModule
-imports: - __future__ - • pyglet.gui - • pyglet.gui.widgets - • pyglet.window - • typing - -
-
-imported by: - pyglet.gui - -
- -
- -
- - pyglet.gui.ninepatch -SourceModule
-imports: - __future__ - • pyglet.gl - • pyglet.graphics - • pyglet.gui - • pyglet.image - • pyglet.sprite - • pyglet.text.layout - • typing - -
-
-imported by: - pyglet.gui - -
- -
- -
- - pyglet.gui.widgets -SourceModule
-imports: - __future__ - • pyglet - • pyglet.event - • pyglet.graphics - • pyglet.gui - • pyglet.image - • pyglet.text.caret - • pyglet.text.layout - • typing - -
-
-imported by: - pyglet.gui - • pyglet.gui.frame - -
- -
- -
- - pyglet.image -Package
-imports: - __future__ - • abc - • collections.abc - • ctypes - • pyglet - • pyglet.gl - • pyglet.gl.gl_info - • pyglet.graphics.shader - • pyglet.graphics.vertexbuffer - • pyglet.image - • pyglet.image.animation - • pyglet.image.atlas - • pyglet.image.buffer - • pyglet.image.codecs - • pyglet.util - • re - • typing - • weakref - -
-
-imported by: - pyglet - • pyglet.font.base - • pyglet.font.directwrite - • pyglet.font.freetype - • pyglet.font.quartz - • pyglet.font.user - • pyglet.font.win32 - • pyglet.gui.ninepatch - • pyglet.gui.widgets - • pyglet.image - • pyglet.image.animation - • pyglet.image.atlas - • pyglet.image.buffer - • pyglet.image.codecs - • pyglet.image.codecs.bmp - • pyglet.image.codecs.dds - • pyglet.image.codecs.gdiplus - • pyglet.image.codecs.gdkpixbuf2 - • pyglet.image.codecs.pil - • pyglet.image.codecs.png - • pyglet.image.codecs.quartz - • pyglet.image.codecs.s3tc - • pyglet.image.codecs.wic - • pyglet.media.codecs.base - • pyglet.media.codecs.ffmpeg - • pyglet.media.codecs.wmf - • pyglet.media.player - • pyglet.model - • pyglet.resource - • pyglet.sprite - • pyglet.text.formats.html - • pyglet.text.formats.structured - • pyglet.text.layout.base - • pyglet.text.layout.scrolling - -
- -
- -
- - pyglet.image.animation -SourceModule
-imports: - __future__ - • pyglet.image - • pyglet.image.atlas - • typing - -
-
-imported by: - pyglet.image - • pyglet.media.codecs.base - • pyglet.resource - -
- -
- -
- - pyglet.image.atlas -SourceModule
-imports: - __future__ - • pyglet - • pyglet.image - • typing - -
-
-imported by: - pyglet.image - • pyglet.image.animation - • pyglet.resource - -
- -
- -
- - pyglet.image.buffer -SourceModule
-imports: - __future__ - • pyglet - • pyglet.gl - • pyglet.image - • typing - -
-
-imported by: - pyglet.image - -
- -
- -
- - pyglet.image.codecs -Package
-imports: - __future__ - • os.path - • pyglet - • pyglet.image - • pyglet.image.codecs - • pyglet.image.codecs.bmp - • pyglet.image.codecs.dds - • pyglet.image.codecs.gdiplus - • pyglet.image.codecs.gdkpixbuf2 - • pyglet.image.codecs.gif - • pyglet.image.codecs.pil - • pyglet.image.codecs.png - • pyglet.image.codecs.quartz - • pyglet.image.codecs.s3tc - • pyglet.image.codecs.wic - • pyglet.libs.win32.constants - • pyglet.util - -
-
-imported by: - pyglet.image - • pyglet.image.codecs - • pyglet.image.codecs.bmp - • pyglet.image.codecs.dds - • pyglet.image.codecs.gdiplus - • pyglet.image.codecs.gdkpixbuf2 - • pyglet.image.codecs.gif - • pyglet.image.codecs.pil - • pyglet.image.codecs.png - • pyglet.image.codecs.quartz - • pyglet.image.codecs.s3tc - • pyglet.image.codecs.wic - -
- -
- -
- - pyglet.image.codecs.bmp -SourceModule
-imports: - ctypes - • pyglet.image - • pyglet.image.codecs - -
-
-imported by: - pyglet.image.codecs - -
- -
- -
- - pyglet.image.codecs.dds -SourceModule
-imports: - itertools - • pyglet.gl - • pyglet.image - • pyglet.image.codecs - • pyglet.image.codecs.s3tc - • struct - -
-
-imported by: - pyglet.image.codecs - -
- -
- -
- - pyglet.image.codecs.gdiplus -SourceModule
-imports: - pyglet.image - • pyglet.image.codecs - • pyglet.libs.win32 - • pyglet.libs.win32.com - • pyglet.libs.win32.constants - • pyglet.libs.win32.types - -
-
-imported by: - pyglet.font.win32 - • pyglet.image.codecs - -
- -
- -
- - pyglet.image.codecs.gdkpixbuf2 -SourceModule
-imports: - ctypes - • pyglet.gl - • pyglet.image - • pyglet.image.codecs - • pyglet.image.codecs.gif - • pyglet.lib - • pyglet.window - -
-
-imported by: - pyglet.image.codecs - -
- -
- -
- - pyglet.image.codecs.gif -SourceModule
-imports: - pyglet.image.codecs - • struct - -
-
-imported by: - pyglet.image.codecs - • pyglet.image.codecs.gdkpixbuf2 - -
- -
- -
- - pyglet.image.codecs.pil -SourceModule
-imports: - PIL - • PIL.Image - • os.path - • pyglet.image - • pyglet.image.codecs - -
-
-imported by: - pyglet.image.codecs - -
- -
- -
- - pyglet.image.codecs.png -SourceModule
-imports: - array - • itertools - • pyglet.extlibs.png - • pyglet.image - • pyglet.image.codecs - -
-
-imported by: - pyglet.image.codecs - -
- -
- -
- - pyglet.image.codecs.quartz -SourceModule
-imports: - ctypes - • pyglet.image - • pyglet.image.codecs - • pyglet.libs.darwin.cocoapy - -
-
-imported by: - pyglet.image.codecs - -
- -
- -
- - pyglet.image.codecs.s3tc -SourceModule
-imports: - ctypes - • pyglet.gl - • pyglet.gl.gl_info - • pyglet.image - • pyglet.image.codecs - • re - -
-
-imported by: - pyglet.image.codecs - • pyglet.image.codecs.dds - -
- -
- -
- - pyglet.image.codecs.wic -SourceModule
-imports: - pyglet.image - • pyglet.image.codecs - • pyglet.libs.win32 - • pyglet.libs.win32.constants - • pyglet.libs.win32.types - -
-
-imported by: - pyglet.font.directwrite - • pyglet.image.codecs - -
- -
- -
- - pyglet.input -Package
-imports: - __future__ - • pyglet - • pyglet.canvas - • pyglet.input.base - • pyglet.input.linux - • pyglet.input.macos - • pyglet.input.win32 - • sys - • typing - -
-
-imported by: - pyglet - • pyglet.input.base - • pyglet.input.controller - • pyglet.input.controller_db - • pyglet.input.linux - • pyglet.input.macos - • pyglet.input.win32 - • pyglet.input.win32.directinput - -
- -
- -
- - pyglet.input.base -SourceModule
-imports: - __future__ - • enum - • operator - • pyglet.canvas.base - • pyglet.event - • pyglet.input - • pyglet.input.controller - • pyglet.window - • sys - • typing - • warnings - -
-
-imported by: - pyglet.input - • pyglet.input.controller - • pyglet.input.linux.evdev - • pyglet.input.linux.x11_xinput - • pyglet.input.linux.x11_xinput_tablet - • pyglet.input.macos.darwin_hid - • pyglet.input.win32 - • pyglet.input.win32.directinput - • pyglet.input.win32.wintab - • pyglet.input.win32.xinput - -
- -
- -
- - pyglet.input.controller -SourceModule
-imports: - __future__ - • os - • pyglet.input - • pyglet.input.base - • pyglet.input.controller_db - • sys - • warnings - -
-
-imported by: - pyglet.input.base - • pyglet.input.linux.evdev - • pyglet.input.macos.darwin_hid - • pyglet.input.win32.directinput - -
- -
- -
- - pyglet.input.controller_db -SourceModule
-imports: - pyglet - • pyglet.input - -
-
-imported by: - pyglet.input.controller - -
- -
- -
- - pyglet.input.linux -Package
-imports: - pyglet.input - • pyglet.input.linux.evdev - • pyglet.input.linux.x11_xinput - • pyglet.input.linux.x11_xinput_tablet - -
-
-imported by: - pyglet.input - • pyglet.input.linux.evdev - • pyglet.input.linux.evdev_constants - • pyglet.input.linux.x11_xinput - • pyglet.input.linux.x11_xinput_tablet - -
- -
- -
- - pyglet.input.linux.evdev -SourceModule
-imports: - concurrent.futures - • ctypes - • os - • pyglet - • pyglet.app.xlib - • pyglet.input.base - • pyglet.input.controller - • pyglet.input.linux - • pyglet.input.linux.evdev_constants - • pyglet.libs.ioctl - • time - • typing - • warnings - -
-
-imported by: - pyglet.input.linux - -
- -
- -
- - pyglet.input.linux.evdev_constants -SourceModule
-imports: - pyglet.input.linux - -
-
-imported by: - pyglet.input.linux.evdev - -
- -
- -
- - pyglet.input.linux.x11_xinput -SourceModule
-imports: - ctypes - • pyglet - • pyglet.input.base - • pyglet.input.linux - • pyglet.libs.x11 - • pyglet.libs.x11.xinput - • pyglet.libs.x11.xlib - • pyglet.util - -
-
-imported by: - pyglet.input.linux - • pyglet.input.linux.x11_xinput_tablet - -
- -
- -
- - pyglet.input.linux.x11_xinput_tablet -SourceModule
-imports: - pyglet.input.base - • pyglet.input.linux - • pyglet.input.linux.x11_xinput - • pyglet.libs.x11 - • pyglet.libs.x11.xinput - -
-
-imported by: - pyglet.input.linux - -
- -
- -
- - pyglet.input.macos -Package
-imports: - pyglet.input - • pyglet.input.macos.darwin_hid - • warnings - -
-
-imported by: - pyglet.input - • pyglet.input.macos.darwin_hid - -
- -
- -
- - pyglet.input.macos.darwin_hid -SourceModule
-imports: - ctypes - • pyglet - • pyglet.event - • pyglet.input.base - • pyglet.input.controller - • pyglet.input.macos - • pyglet.libs.darwin.cocoapy - • sys - • warnings - -
-
-imported by: - pyglet.input.macos - -
- -
- -
- - pyglet.input.win32 -Package
-imports: - __future__ - • pyglet - • pyglet.input - • pyglet.input.base - • pyglet.input.win32.directinput - • pyglet.input.win32.wintab - • pyglet.input.win32.xinput - • warnings - -
-
-imported by: - pyglet.input - • pyglet.input.win32.directinput - • pyglet.input.win32.wintab - • pyglet.input.win32.xinput - -
- -
- -
- - pyglet.input.win32.directinput -SourceModule
-imports: - ctypes - • pyglet - • pyglet.app - • pyglet.event - • pyglet.input - • pyglet.input.base - • pyglet.input.controller - • pyglet.input.win32 - • pyglet.input.win32.xinput - • pyglet.libs - • pyglet.libs.win32 - • pyglet.libs.win32.com - • pyglet.libs.win32.constants - • pyglet.libs.win32.dinput - • typing - • warnings - -
-
-imported by: - pyglet.input.win32 - -
- -
- -
- - pyglet.input.win32.wintab -SourceModule
-imports: - collections - • ctypes - • pyglet - • pyglet.input.base - • pyglet.input.win32 - • pyglet.libs.win32 - • pyglet.libs.win32.libwintab - • pyglet.util - -
-
-imported by: - pyglet.input.win32 - -
- -
- -
- - pyglet.input.win32.xinput -SourceModule
-imports: - pyglet - • pyglet.event - • pyglet.input.base - • pyglet.input.win32 - • pyglet.libs.win32 - • pyglet.libs.win32.com - • pyglet.libs.win32.constants - • pyglet.libs.win32.types - • threading - • time - • weakref - -
-
-imported by: - pyglet.input.win32 - • pyglet.input.win32.directinput - -
- -
- -
- - pyglet.lib -SourceModule
-imports: - __future__ - • contextlib - • ctypes - • ctypes.util - • os - • pyglet - • re - • sys - • typing - -
-
-imported by: - pyglet - • pyglet.font.fontconfig - • pyglet.font.freetype_lib - • pyglet.gl.lib_agl - • pyglet.gl.lib_glx - • pyglet.gl.lib_wgl - • pyglet.image.codecs.gdkpixbuf2 - • pyglet.libs.egl.egl - • pyglet.libs.x11.xf86vmode - • pyglet.libs.x11.xinerama - • pyglet.libs.x11.xinput - • pyglet.libs.x11.xlib - • pyglet.libs.x11.xsync - • pyglet.media.codecs.ffmpeg - • pyglet.media.codecs.ffmpeg_lib.libavcodec - • pyglet.media.codecs.ffmpeg_lib.libavformat - • pyglet.media.codecs.ffmpeg_lib.libavutil - • pyglet.media.codecs.ffmpeg_lib.libswresample - • pyglet.media.codecs.ffmpeg_lib.libswscale - • pyglet.media.drivers.openal.lib_alc - • pyglet.media.drivers.openal.lib_openal - • pyglet.media.drivers.pulse.lib_pulseaudio - -
- -
- -
- - pyglet.libs -Package
-imports: - pyglet - -
-
-imported by: - pyglet.input.win32.directinput - • pyglet.libs.darwin - • pyglet.libs.egl - • pyglet.libs.ioctl - • pyglet.libs.win32 - • pyglet.libs.x11 - • pyglet.window.cocoa - -
- -
- -
- - pyglet.libs.darwin -Package
-imports: - pyglet.libs - • pyglet.libs.darwin.cocoapy - -
-
-imported by: - pyglet.app.cocoa - • pyglet.font.quartz - • pyglet.gl.cocoa - • pyglet.libs.darwin.cocoapy - • pyglet.libs.darwin.coreaudio - • pyglet.libs.darwin.quartzkey - • pyglet.media.codecs.coreaudio - • pyglet.window.cocoa - • pyglet.window.cocoa.pyglet_view - • pyglet.window.cocoa.pyglet_window - • pyglet.window.cocoa.systemcursor - -
- -
- -
- - pyglet.libs.darwin.cocoapy -Package
-imports: - contextlib - • pyglet.libs.darwin - • pyglet.libs.darwin.cocoapy.cocoalibs - • pyglet.libs.darwin.cocoapy.cocoatypes - • pyglet.libs.darwin.cocoapy.runtime - -
-
-imported by: - pyglet.app.cocoa - • pyglet.canvas.cocoa - • pyglet.font.quartz - • pyglet.gl.cocoa - • pyglet.image.codecs.quartz - • pyglet.input.macos.darwin_hid - • pyglet.libs.darwin - • pyglet.libs.darwin.cocoapy.cocoalibs - • pyglet.libs.darwin.cocoapy.cocoatypes - • pyglet.libs.darwin.cocoapy.runtime - • pyglet.window.cocoa - • pyglet.window.cocoa.pyglet_delegate - • pyglet.window.cocoa.pyglet_textview - • pyglet.window.cocoa.pyglet_view - • pyglet.window.cocoa.pyglet_window - • pyglet.window.cocoa.systemcursor - -
- -
- -
- - pyglet.libs.darwin.cocoapy.cocoalibs -SourceModule
-imports: - ctypes - • ctypes.util - • pyglet.libs.darwin.cocoapy - • pyglet.libs.darwin.cocoapy.cocoatypes - • pyglet.libs.darwin.cocoapy.runtime - -
-
-imported by: - pyglet.libs.darwin.cocoapy - • pyglet.libs.darwin.cocoapy.runtime - -
- -
- -
- - pyglet.libs.darwin.cocoapy.cocoatypes -SourceModule
-imports: - ctypes - • platform - • pyglet.libs.darwin.cocoapy - • struct - • sys - -
-
-imported by: - pyglet.libs.darwin.cocoapy - • pyglet.libs.darwin.cocoapy.cocoalibs - • pyglet.libs.darwin.cocoapy.runtime - -
- -
- -
- - pyglet.libs.darwin.cocoapy.runtime -SourceModule
-imports: - __future__ - • contextlib - • ctypes - • ctypes.util - • platform - • pyglet.libs.darwin.cocoapy - • pyglet.libs.darwin.cocoapy.cocoalibs - • pyglet.libs.darwin.cocoapy.cocoatypes - • struct - • sys - • typing - • weakref - -
-
-imported by: - pyglet.libs.darwin.cocoapy - • pyglet.libs.darwin.cocoapy.cocoalibs - -
- -
- -
- - pyglet.libs.darwin.coreaudio -SourceModule
-imports: - ctypes - • ctypes.util - • pyglet.libs.darwin - • typing - -
-
-imported by: - pyglet.media.codecs.coreaudio - -
- -
- -
- - pyglet.libs.darwin.quartzkey -SourceModule
-imports: - pyglet.libs.darwin - • pyglet.window - • pyglet.window.key - -
-
-imported by: - pyglet.window.cocoa.pyglet_view - -
- -
- -
- - pyglet.libs.egl -Package
-imports: - pyglet.libs - • pyglet.libs.egl.egl - • pyglet.libs.egl.eglext - -
-
-imported by: - pyglet.canvas.headless - • pyglet.gl.headless - • pyglet.libs.egl.egl - • pyglet.libs.egl.eglext - • pyglet.libs.egl.lib - • pyglet.window.headless - -
- -
- -
- - pyglet.libs.egl.egl -SourceModule
-imports: - ctypes - • pyglet.lib - • pyglet.libs.egl - -
-
-imported by: - pyglet.canvas.headless - • pyglet.gl.headless - • pyglet.libs.egl - • pyglet.libs.egl.eglext - • pyglet.window.headless - -
- -
- -
- - pyglet.libs.egl.eglext -SourceModule
-imports: - ctypes - • pyglet.libs.egl - • pyglet.libs.egl.egl - • pyglet.libs.egl.lib - -
-
-imported by: - pyglet.canvas.headless - • pyglet.libs.egl - -
- -
- -
- - pyglet.libs.egl.lib -SourceModule
-imports: - ctypes - • pyglet - • pyglet.libs.egl - • pyglet.util - -
-
-imported by: - pyglet.libs.egl.eglext - -
- -
- -
- - pyglet.libs.ioctl -SourceModule
-imports: - __future__ - • ctypes - • fcntl - • pyglet.libs - • typing - -
-
-imported by: - pyglet.input.linux.evdev - -
- -
- -
- - pyglet.libs.win32 -Package
-imports: - atexit - • pyglet - • pyglet.libs - • pyglet.libs.win32 - • pyglet.libs.win32.com - • pyglet.libs.win32.constants - • pyglet.libs.win32.dinput - • pyglet.libs.win32.libwintab - • pyglet.libs.win32.types - • struct - • traceback - • warnings - -
-
-imported by: - pyglet.app.win32 - • pyglet.canvas.win32 - • pyglet.font.directwrite - • pyglet.font.win32 - • pyglet.gl.win32 - • pyglet.image.codecs.gdiplus - • pyglet.image.codecs.wic - • pyglet.input.win32.directinput - • pyglet.input.win32.wintab - • pyglet.input.win32.xinput - • pyglet.libs.win32 - • pyglet.libs.win32.com - • pyglet.libs.win32.constants - • pyglet.libs.win32.context_managers - • pyglet.libs.win32.dinput - • pyglet.libs.win32.libwintab - • pyglet.libs.win32.types - • pyglet.libs.win32.winkey - • pyglet.media.codecs.wmf - • pyglet.media.devices.win32 - • pyglet.media.drivers.directsound.lib_dsound - • pyglet.media.drivers.xaudio2.lib_xaudio2 - • pyglet.window.win32 - -
- -
- -
- - pyglet.libs.win32.com -SourceModule
-imports: - ctypes - • pyglet.libs.win32 - • pyglet.util - • sys - -
-
-imported by: - pyglet.font.directwrite - • pyglet.image.codecs.gdiplus - • pyglet.input.win32.directinput - • pyglet.input.win32.xinput - • pyglet.libs.win32 - • pyglet.libs.win32.dinput - • pyglet.libs.win32.types - • pyglet.media.codecs.wmf - • pyglet.media.devices.win32 - • pyglet.media.drivers.directsound.lib_dsound - • pyglet.media.drivers.xaudio2.lib_xaudio2 - -
- -
- -
- - pyglet.libs.win32.constants -SourceModule
-imports: - pyglet.libs.win32 - • sys - -
-
-imported by: - pyglet.app.win32 - • pyglet.canvas.win32 - • pyglet.font - • pyglet.font.directwrite - • pyglet.font.win32 - • pyglet.gl.win32 - • pyglet.image.codecs - • pyglet.image.codecs.gdiplus - • pyglet.image.codecs.wic - • pyglet.input.win32.directinput - • pyglet.input.win32.xinput - • pyglet.libs.win32 - • pyglet.libs.win32.winkey - • pyglet.media.codecs - • pyglet.media.codecs.wmf - • pyglet.media.devices.win32 - • pyglet.media.drivers - • pyglet.media.drivers.xaudio2.lib_xaudio2 - • pyglet.window.win32 - -
- -
- -
- - pyglet.libs.win32.context_managers -SourceModule
-imports: - contextlib - • ctypes - • ctypes.wintypes - • pyglet.libs.win32 - • typing - -
-
-imported by: - pyglet.canvas.win32 - • pyglet.font.win32 - -
- -
- -
- - pyglet.libs.win32.dinput -SourceModule
-imports: - __future__ - • ctypes - • pyglet.libs.win32 - • pyglet.libs.win32.com - -
-
-imported by: - pyglet.input.win32.directinput - • pyglet.libs.win32 - -
- -
- -
- - pyglet.libs.win32.libwintab -SourceModule
-imports: - ctypes - • ctypes.wintypes - • pyglet.libs.win32 - -
-
-imported by: - pyglet.input.win32.wintab - • pyglet.libs.win32 - -
- -
- -
- - pyglet.libs.win32.types -SourceModule
-imports: - ctypes - • ctypes.wintypes - • pyglet.libs.win32 - • pyglet.libs.win32.com - • sys - -
-
-imported by: - pyglet.app.win32 - • pyglet.canvas.win32 - • pyglet.font.win32 - • pyglet.image.codecs.gdiplus - • pyglet.image.codecs.wic - • pyglet.input.win32.xinput - • pyglet.libs.win32 - • pyglet.media.codecs.wmf - • pyglet.media.devices.win32 - • pyglet.media.drivers.xaudio2.interface - • pyglet.media.drivers.xaudio2.lib_xaudio2 - • pyglet.window.win32 - -
- -
- -
- - pyglet.libs.win32.winkey -SourceModule
-imports: - pyglet.libs.win32 - • pyglet.libs.win32.constants - • pyglet.window - • pyglet.window.key - -
-
-imported by: - pyglet.window.win32 - -
- -
- -
- - pyglet.libs.x11 -Package
-imports: - pyglet.libs - • pyglet.libs.x11 - • pyglet.libs.x11.cursorfont - • pyglet.libs.x11.xf86vmode - • pyglet.libs.x11.xinerama - • pyglet.libs.x11.xinput - • pyglet.libs.x11.xsync - -
-
-imported by: - pyglet.canvas.xlib - • pyglet.canvas.xlib_vidmoderestore - • pyglet.input.linux.x11_xinput - • pyglet.input.linux.x11_xinput_tablet - • pyglet.libs.x11 - • pyglet.libs.x11.cursorfont - • pyglet.libs.x11.xf86vmode - • pyglet.libs.x11.xinerama - • pyglet.libs.x11.xinput - • pyglet.libs.x11.xlib - • pyglet.libs.x11.xsync - • pyglet.window.xlib - -
- -
- -
- - pyglet.libs.x11.cursorfont -SourceModule
-imports: - pyglet.libs.x11 - -
-
-imported by: - pyglet.libs.x11 - • pyglet.window.xlib - -
- -
- -
- - pyglet.libs.x11.xf86vmode -SourceModule
-imports: - ctypes - • pyglet.lib - • pyglet.libs.x11 - • pyglet.libs.x11.xlib - -
-
-imported by: - pyglet.canvas.xlib - • pyglet.canvas.xlib_vidmoderestore - • pyglet.libs.x11 - -
- -
- -
- - pyglet.libs.x11.xinerama -SourceModule
-imports: - ctypes - • pyglet.lib - • pyglet.libs.x11 - • pyglet.libs.x11.xlib - -
-
-imported by: - pyglet.canvas.xlib - • pyglet.libs.x11 - -
- -
- -
- - pyglet.libs.x11.xinput -SourceModule
-imports: - ctypes - • pyglet.lib - • pyglet.libs.x11 - • pyglet.libs.x11.xlib - -
-
-imported by: - pyglet.input.linux.x11_xinput - • pyglet.input.linux.x11_xinput_tablet - • pyglet.libs.x11 - -
- -
- -
- - pyglet.libs.x11.xlib -SourceModule
-imports: - __future__ - • ctypes - • pyglet.lib - • pyglet.libs.x11 - -
-
-imported by: - pyglet.canvas.xlib - • pyglet.canvas.xlib_vidmoderestore - • pyglet.gl.glx - • pyglet.gl.glx_info - • pyglet.gl.glxext_arb - • pyglet.gl.xlib - • pyglet.input.linux.x11_xinput - • pyglet.libs.x11.xf86vmode - • pyglet.libs.x11.xinerama - • pyglet.libs.x11.xinput - • pyglet.libs.x11.xsync - • pyglet.window.xlib - -
- -
- -
- - pyglet.libs.x11.xsync -SourceModule
-imports: - ctypes - • pyglet.lib - • pyglet.libs.x11 - • pyglet.libs.x11.xlib - -
-
-imported by: - pyglet.canvas.xlib - • pyglet.libs.x11 - • pyglet.window.xlib - -
- -
- -
- - pyglet.math -SourceModule
-imports: - __future__ - • collections.abc - • math - • operator - • pyglet - • typing - • warnings - -
-
-imported by: - pyglet - • pyglet.model - • pyglet.shapes - • pyglet.window - -
- -
- -
- - pyglet.media -Package
-imports: - __future__ - • pyglet - • pyglet.media - • pyglet.media.buffered_logger - • pyglet.media.codecs - • pyglet.media.drivers - • pyglet.media.player - • pyglet.media.synthesis - • typing - -
-
-imported by: - pyglet - • pyglet.media - • pyglet.media.buffered_logger - • pyglet.media.codecs - • pyglet.media.codecs.coreaudio - • pyglet.media.codecs.pyogg - • pyglet.media.codecs.wmf - • pyglet.media.devices - • pyglet.media.drivers - • pyglet.media.drivers.openal.adaptation - • pyglet.media.exceptions - • pyglet.media.player - • pyglet.media.player_worker_thread - • pyglet.media.synthesis - • pyglet.resource - -
- -
- -
- - pyglet.media.buffered_logger -SourceModule
-imports: - pickle - • pyglet.media - • time - -
-
-imported by: - pyglet.media - • pyglet.media.player - -
- -
- -
- - pyglet.media.codecs -Package
-imports: - pyglet - • pyglet.libs.win32.constants - • pyglet.media - • pyglet.media.codecs - • pyglet.media.codecs.base - • pyglet.media.codecs.coreaudio - • pyglet.media.codecs.ffmpeg - • pyglet.media.codecs.ffmpeg_lib - • pyglet.media.codecs.gstreamer - • pyglet.media.codecs.pyogg - • pyglet.media.codecs.wave - • pyglet.media.codecs.wmf - • pyglet.util - • sys - • warnings - -
-
-imported by: - pyglet.media - • pyglet.media.codecs - • pyglet.media.codecs.base - • pyglet.media.codecs.coreaudio - • pyglet.media.codecs.ffmpeg - • pyglet.media.codecs.ffmpeg_lib - • pyglet.media.codecs.gstreamer - • pyglet.media.codecs.pyogg - • pyglet.media.codecs.wave - • pyglet.media.codecs.wmf - • pyglet.media.drivers.base - • pyglet.media.drivers.pulse.adaptation - • pyglet.media.drivers.pulse.interface - • pyglet.media.drivers.xaudio2.adaptation - • pyglet.resource - -
- -
- -
- - pyglet.media.codecs.base -SourceModule
-imports: - ctypes - • io - • pyglet.image - • pyglet.image.animation - • pyglet.media.codecs - • pyglet.media.drivers.base - • pyglet.media.exceptions - • pyglet.media.player - • pyglet.util - • typing - -
-
-imported by: - pyglet.media.codecs - • pyglet.media.codecs.ffmpeg - • pyglet.media.codecs.gstreamer - • pyglet.media.codecs.wave - • pyglet.media.player - • pyglet.media.synthesis - -
- -
- -
- - pyglet.media.codecs.coreaudio -SourceModule
-imports: - ctypes - • pyglet.libs.darwin - • pyglet.libs.darwin.coreaudio - • pyglet.media - • pyglet.media.codecs - -
-
-imported by: - pyglet.media.codecs - -
- -
- -
- - pyglet.media.codecs.ffmpeg -SourceModule
-imports: - __future__ - • _ctypes - • collections - • ctypes - • dataclasses - • pyglet - • pyglet.image - • pyglet.lib - • pyglet.media.codecs - • pyglet.media.codecs.base - • pyglet.media.codecs.ffmpeg_lib - • pyglet.media.codecs.ffmpeg_lib.libavformat - • pyglet.media.codecs.ffmpeg_lib.libavutil - • pyglet.media.codecs.ffmpeg_lib.libswresample - • pyglet.media.exceptions - • pyglet.util - • sys - • typing - -
-
-imported by: - pyglet.media.codecs - -
- -
- -
- - pyglet.media.codecs.ffmpeg_lib -Package
-imports: - pyglet.media.codecs - • pyglet.media.codecs.ffmpeg_lib - • pyglet.media.codecs.ffmpeg_lib.compat - • pyglet.media.codecs.ffmpeg_lib.libavcodec - • pyglet.media.codecs.ffmpeg_lib.libavformat - • pyglet.media.codecs.ffmpeg_lib.libavutil - • pyglet.media.codecs.ffmpeg_lib.libswresample - • pyglet.media.codecs.ffmpeg_lib.libswscale - -
-
-imported by: - pyglet.media.codecs - • pyglet.media.codecs.ffmpeg - • pyglet.media.codecs.ffmpeg_lib - • pyglet.media.codecs.ffmpeg_lib.compat - • pyglet.media.codecs.ffmpeg_lib.libavcodec - • pyglet.media.codecs.ffmpeg_lib.libavformat - • pyglet.media.codecs.ffmpeg_lib.libavutil - • pyglet.media.codecs.ffmpeg_lib.libswresample - • pyglet.media.codecs.ffmpeg_lib.libswscale - -
- -
- -
- - pyglet.media.codecs.ffmpeg_lib.compat -SourceModule
-imports: - collections - • pyglet.media.codecs.ffmpeg_lib - -
-
-imported by: - pyglet.media.codecs.ffmpeg_lib - • pyglet.media.codecs.ffmpeg_lib.libavcodec - • pyglet.media.codecs.ffmpeg_lib.libavformat - • pyglet.media.codecs.ffmpeg_lib.libavutil - • pyglet.media.codecs.ffmpeg_lib.libswresample - • pyglet.media.codecs.ffmpeg_lib.libswscale - -
- -
- -
- - pyglet.media.codecs.ffmpeg_lib.libavcodec -SourceModule
-imports: - ctypes - • pyglet.lib - • pyglet.media.codecs.ffmpeg_lib - • pyglet.media.codecs.ffmpeg_lib.compat - • pyglet.media.codecs.ffmpeg_lib.libavutil - • pyglet.util - -
-
-imported by: - pyglet.media.codecs.ffmpeg_lib - • pyglet.media.codecs.ffmpeg_lib.libavformat - -
- -
- -
- - pyglet.media.codecs.ffmpeg_lib.libavformat -SourceModule
-imports: - ctypes - • pyglet.lib - • pyglet.media.codecs.ffmpeg_lib - • pyglet.media.codecs.ffmpeg_lib.compat - • pyglet.media.codecs.ffmpeg_lib.libavcodec - • pyglet.media.codecs.ffmpeg_lib.libavutil - • pyglet.util - -
-
-imported by: - pyglet.media.codecs.ffmpeg - • pyglet.media.codecs.ffmpeg_lib - -
- -
- -
- - pyglet.media.codecs.ffmpeg_lib.libavutil -SourceModule
-imports: - ctypes - • pyglet.lib - • pyglet.media.codecs.ffmpeg_lib - • pyglet.media.codecs.ffmpeg_lib.compat - • pyglet.util - -
-
-imported by: - pyglet.media.codecs.ffmpeg - • pyglet.media.codecs.ffmpeg_lib - • pyglet.media.codecs.ffmpeg_lib.libavcodec - • pyglet.media.codecs.ffmpeg_lib.libavformat - • pyglet.media.codecs.ffmpeg_lib.libswresample - -
- -
- -
- - pyglet.media.codecs.ffmpeg_lib.libswresample -SourceModule
-imports: - ctypes - • pyglet.lib - • pyglet.media.codecs.ffmpeg_lib - • pyglet.media.codecs.ffmpeg_lib.compat - • pyglet.media.codecs.ffmpeg_lib.libavutil - • pyglet.util - -
-
-imported by: - pyglet.media.codecs.ffmpeg - • pyglet.media.codecs.ffmpeg_lib - -
- -
- -
- - pyglet.media.codecs.ffmpeg_lib.libswscale -SourceModule
-imports: - ctypes - • pyglet.lib - • pyglet.media.codecs.ffmpeg_lib - • pyglet.media.codecs.ffmpeg_lib.compat - • pyglet.util - -
-
-imported by: - pyglet.media.codecs.ffmpeg_lib - -
- -
- -
- - pyglet.media.codecs.gstreamer -SourceModule
-imports: - 'gi.repository' - • atexit - • gi - • pyglet.media.codecs - • pyglet.media.codecs.base - • pyglet.util - • queue - • tempfile - • threading - • weakref - -
-
-imported by: - pyglet.media.codecs - -
- -
- -
- - pyglet.media.codecs.pyogg -SourceModule
-imports: - abc - • ctypes - • os.path - • pyglet.media - • pyglet.media.codecs - • pyglet.util - • pyogg - • warnings - -
-
-imported by: - pyglet.media.codecs - -
- -
- -
- - pyglet.media.codecs.wave -SourceModule
-imports: - pyglet.media.codecs - • pyglet.media.codecs.base - • pyglet.util - • wave - -
-
-imported by: - pyglet.media.codecs - -
- -
- -
- - pyglet.media.codecs.wmf -SourceModule
-imports: - os - • platform - • pyglet - • pyglet.image - • pyglet.libs.win32 - • pyglet.libs.win32.com - • pyglet.libs.win32.constants - • pyglet.libs.win32.types - • pyglet.media - • pyglet.media.codecs - • pyglet.util - • warnings - -
-
-imported by: - pyglet.media.codecs - -
- -
- -
- - pyglet.media.devices -Package
-imports: - atexit - • pyglet - • pyglet.media - • pyglet.media.devices.base - • pyglet.media.devices.win32 - -
-
-imported by: - pyglet.media.devices.base - • pyglet.media.devices.win32 - • pyglet.media.drivers.xaudio2.interface - -
- -
- -
- - pyglet.media.devices.base -SourceModule
-imports: - abc - • enum - • pyglet - • pyglet.event - • pyglet.media.devices - • typing - -
-
-imported by: - pyglet.media.devices - • pyglet.media.devices.win32 - • pyglet.media.drivers.xaudio2.interface - -
- -
- -
- - pyglet.media.devices.win32 -SourceModule
-imports: - pyglet.libs.win32 - • pyglet.libs.win32.com - • pyglet.libs.win32.constants - • pyglet.libs.win32.types - • pyglet.media.devices - • pyglet.media.devices.base - • pyglet.util - • typing - -
-
-imported by: - pyglet.media.devices - -
- -
- -
- - pyglet.media.drivers -Package
-imports: - atexit - • pyglet - • pyglet.libs.win32.constants - • pyglet.media - • pyglet.media.drivers - • pyglet.media.drivers.directsound - • pyglet.media.drivers.openal - • pyglet.media.drivers.pulse - • pyglet.media.drivers.silent - • pyglet.media.drivers.xaudio2 - • sys - • traceback - -
-
-imported by: - pyglet.media - • pyglet.media.drivers - • pyglet.media.drivers.base - • pyglet.media.drivers.directsound - • pyglet.media.drivers.listener - • pyglet.media.drivers.openal - • pyglet.media.drivers.pulse - • pyglet.media.drivers.silent - • pyglet.media.drivers.xaudio2 - • pyglet.media.player - -
- -
- -
- - pyglet.media.drivers.base -SourceModule
-imports: - abc - • collections - • ctypes - • pyglet - • pyglet.media.codecs - • pyglet.media.drivers - • pyglet.util - • weakref - -
-
-imported by: - pyglet.media.codecs.base - • pyglet.media.drivers.directsound.adaptation - • pyglet.media.drivers.openal.adaptation - • pyglet.media.drivers.pulse.adaptation - • pyglet.media.drivers.silent.adaptation - • pyglet.media.drivers.xaudio2.adaptation - • pyglet.media.player_worker_thread - -
- -
- -
- - pyglet.media.drivers.directsound -Package
-imports: - pyglet.media.drivers - • pyglet.media.drivers.directsound - • pyglet.media.drivers.directsound.adaptation - • pyglet.media.drivers.directsound.exceptions - • pyglet.media.drivers.directsound.interface - • pyglet.media.drivers.directsound.lib_dsound - -
-
-imported by: - pyglet.media.drivers - • pyglet.media.drivers.directsound - • pyglet.media.drivers.directsound.adaptation - • pyglet.media.drivers.directsound.exceptions - • pyglet.media.drivers.directsound.interface - • pyglet.media.drivers.directsound.lib_dsound - -
- -
- -
- - pyglet.media.drivers.directsound.adaptation -SourceModule
-imports: - ctypes - • math - • pyglet.media.drivers.base - • pyglet.media.drivers.directsound - • pyglet.media.drivers.directsound.interface - • pyglet.media.drivers.listener - • pyglet.media.player_worker_thread - • pyglet.util - -
-
-imported by: - pyglet.media.drivers.directsound - -
- -
- -
- - pyglet.media.drivers.directsound.exceptions -SourceModule
-imports: - pyglet.media.drivers.directsound - • pyglet.media.exceptions - -
-
-imported by: - pyglet.media.drivers.directsound - • pyglet.media.drivers.directsound.interface - -
- -
- -
- - pyglet.media.drivers.directsound.interface -SourceModule
-imports: - collections - • ctypes - • pyglet.media.drivers.directsound - • pyglet.media.drivers.directsound.exceptions - • pyglet.media.drivers.directsound.lib_dsound - • pyglet.util - • pyglet.window.win32 - • weakref - -
-
-imported by: - pyglet.media.drivers.directsound - • pyglet.media.drivers.directsound.adaptation - -
- -
- -
- - pyglet.media.drivers.directsound.lib_dsound -SourceModule
-imports: - ctypes - • pyglet.libs.win32 - • pyglet.libs.win32.com - • pyglet.media.drivers.directsound - -
-
-imported by: - pyglet.media.drivers.directsound - • pyglet.media.drivers.directsound.interface - -
- -
- -
- - pyglet.media.drivers.listener -SourceModule
-imports: - abc - • pyglet.media.drivers - -
-
-imported by: - pyglet.media.drivers.directsound.adaptation - • pyglet.media.drivers.openal.adaptation - • pyglet.media.drivers.pulse.adaptation - • pyglet.media.drivers.silent.adaptation - • pyglet.media.drivers.xaudio2.adaptation - -
- -
- -
- - pyglet.media.drivers.openal -Package
-imports: - pyglet - • pyglet.media.drivers - • pyglet.media.drivers.openal - • pyglet.media.drivers.openal.adaptation - • pyglet.media.drivers.openal.interface - • pyglet.media.drivers.openal.lib_alc - • pyglet.media.drivers.openal.lib_openal - -
-
-imported by: - pyglet.media.drivers - • pyglet.media.drivers.openal - • pyglet.media.drivers.openal.adaptation - • pyglet.media.drivers.openal.interface - • pyglet.media.drivers.openal.lib_alc - • pyglet.media.drivers.openal.lib_openal - -
- -
- -
- - pyglet.media.drivers.openal.adaptation -SourceModule
-imports: - collections - • pyglet.media - • pyglet.media.drivers.base - • pyglet.media.drivers.listener - • pyglet.media.drivers.openal - • pyglet.media.drivers.openal.interface - • pyglet.media.player_worker_thread - • pyglet.util - • typing - • weakref - -
-
-imported by: - pyglet.media.drivers.openal - -
- -
- -
- - pyglet.media.drivers.openal.interface -SourceModule
-imports: - collections - • ctypes - • pyglet.media.drivers.openal - • pyglet.media.drivers.openal.lib_alc - • pyglet.media.drivers.openal.lib_openal - • pyglet.media.exceptions - • pyglet.util - • weakref - -
-
-imported by: - pyglet.media.drivers.openal - • pyglet.media.drivers.openal.adaptation - -
- -
- -
- - pyglet.media.drivers.openal.lib_alc -SourceModule
-imports: - ctypes - • pyglet.lib - • pyglet.media.drivers.openal - -
-
-imported by: - pyglet.media.drivers.openal - • pyglet.media.drivers.openal.interface - -
- -
- -
- - pyglet.media.drivers.openal.lib_openal -SourceModule
-imports: - ctypes - • pyglet.lib - • pyglet.media.drivers.openal - -
-
-imported by: - pyglet.media.drivers.openal - • pyglet.media.drivers.openal.interface - -
- -
- -
- - pyglet.media.drivers.pulse -Package
-imports: - pyglet - • pyglet.media.drivers - • pyglet.media.drivers.pulse - • pyglet.media.drivers.pulse.adaptation - • pyglet.media.drivers.pulse.lib_pulseaudio - -
-
-imported by: - pyglet.media.drivers - • pyglet.media.drivers.pulse - • pyglet.media.drivers.pulse.adaptation - • pyglet.media.drivers.pulse.interface - • pyglet.media.drivers.pulse.lib_pulseaudio - -
- -
- -
- - pyglet.media.drivers.pulse.adaptation -SourceModule
-imports: - collections - • ctypes - • pyglet.media.codecs - • pyglet.media.drivers.base - • pyglet.media.drivers.listener - • pyglet.media.drivers.pulse - • pyglet.media.drivers.pulse.interface - • pyglet.media.drivers.pulse.lib_pulseaudio - • pyglet.media.player - • pyglet.media.player_worker_thread - • pyglet.util - • threading - • typing - • weakref - -
-
-imported by: - pyglet.media.drivers.pulse - -
- -
- -
- - pyglet.media.drivers.pulse.interface -SourceModule
-imports: - ctypes - • pyglet.media.codecs - • pyglet.media.drivers.pulse - • pyglet.media.drivers.pulse.lib_pulseaudio - • pyglet.media.exceptions - • pyglet.util - • sys - • typing - • weakref - -
-
-imported by: - pyglet.media.drivers.pulse.adaptation - -
- -
- -
- - pyglet.media.drivers.pulse.lib_pulseaudio -SourceModule
-imports: - ctypes - • pyglet.lib - • pyglet.media.drivers.pulse - -
-
-imported by: - pyglet.media.drivers.pulse - • pyglet.media.drivers.pulse.adaptation - • pyglet.media.drivers.pulse.interface - -
- -
- -
- - pyglet.media.drivers.silent -Package
-imports: - pyglet.media.drivers - • pyglet.media.drivers.silent - • pyglet.media.drivers.silent.adaptation - -
-
-imported by: - pyglet.media.drivers - • pyglet.media.drivers.silent - • pyglet.media.drivers.silent.adaptation - -
- -
- -
- - pyglet.media.drivers.silent.adaptation -SourceModule
-imports: - pyglet.media.drivers.base - • pyglet.media.drivers.listener - • pyglet.media.drivers.silent - • pyglet.media.player_worker_thread - -
-
-imported by: - pyglet.media.drivers.silent - -
- -
- -
- - pyglet.media.drivers.xaudio2 -Package
-imports: - pyglet.media.drivers - • pyglet.media.drivers.xaudio2 - • pyglet.media.drivers.xaudio2.adaptation - • pyglet.media.drivers.xaudio2.interface - • pyglet.media.drivers.xaudio2.lib_xaudio2 - -
-
-imported by: - pyglet.media.drivers - • pyglet.media.drivers.xaudio2 - • pyglet.media.drivers.xaudio2.adaptation - • pyglet.media.drivers.xaudio2.interface - • pyglet.media.drivers.xaudio2.lib_xaudio2 - -
- -
- -
- - pyglet.media.drivers.xaudio2.adaptation -SourceModule
-imports: - collections - • math - • pyglet.media.codecs - • pyglet.media.drivers.base - • pyglet.media.drivers.listener - • pyglet.media.drivers.xaudio2 - • pyglet.media.drivers.xaudio2.interface - • pyglet.media.player - • pyglet.media.player_worker_thread - • pyglet.util - • threading - • typing - -
-
-imported by: - pyglet.media.drivers.xaudio2 - -
- -
- -
- - pyglet.media.drivers.xaudio2.interface -SourceModule
-imports: - collections - • pyglet - • pyglet.libs.win32.types - • pyglet.media.devices - • pyglet.media.devices.base - • pyglet.media.drivers.xaudio2 - • pyglet.media.drivers.xaudio2.lib_xaudio2 - • pyglet.util - • threading - • weakref - -
-
-imported by: - pyglet.media.drivers.xaudio2 - • pyglet.media.drivers.xaudio2.adaptation - -
- -
- -
- - pyglet.media.drivers.xaudio2.lib_xaudio2 -SourceModule
-imports: - ctypes - • os - • platform - • pyglet.libs.win32 - • pyglet.libs.win32.com - • pyglet.libs.win32.constants - • pyglet.libs.win32.types - • pyglet.media.drivers.xaudio2 - • pyglet.util - -
-
-imported by: - pyglet.media.drivers.xaudio2 - • pyglet.media.drivers.xaudio2.interface - -
- -
- -
- - pyglet.media.exceptions -SourceModule
-imports: - pyglet.media - -
-
-imported by: - pyglet.media.codecs.base - • pyglet.media.codecs.ffmpeg - • pyglet.media.drivers.directsound.exceptions - • pyglet.media.drivers.openal.interface - • pyglet.media.drivers.pulse.interface - -
- -
- -
- - pyglet.media.player -SourceModule
-imports: - __future__ - • collections - • pyglet - • pyglet.gl - • pyglet.image - • pyglet.media - • pyglet.media.buffered_logger - • pyglet.media.codecs.base - • pyglet.media.drivers - • time - • typing - -
-
-imported by: - pyglet.media - • pyglet.media.codecs.base - • pyglet.media.drivers.pulse.adaptation - • pyglet.media.drivers.xaudio2.adaptation - -
- -
- -
- - pyglet.media.player_worker_thread -SourceModule
-imports: - __future__ - • pyglet - • pyglet.media - • pyglet.media.drivers.base - • pyglet.util - • threading - • time - • typing - -
-
-imported by: - pyglet.media.drivers.directsound.adaptation - • pyglet.media.drivers.openal.adaptation - • pyglet.media.drivers.pulse.adaptation - • pyglet.media.drivers.silent.adaptation - • pyglet.media.drivers.xaudio2.adaptation - -
- -
- -
- - pyglet.media.synthesis -SourceModule
-imports: - __future__ - • math - • pyglet.media - • pyglet.media.codecs.base - • random - • struct - • typing - -
-
-imported by: - pyglet.media - -
- -
- -
- - pyglet.model -Package
-imports: - __future__ - • pyglet - • pyglet.gl - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.graphics.vertexdomain - • pyglet.image - • pyglet.math - • pyglet.model - • pyglet.model.codecs - • typing - -
-
-imported by: - pyglet - • pyglet.model - • pyglet.model.codecs - • pyglet.model.codecs.obj - • pyglet.resource - -
- -
- -
- - pyglet.model.codecs -Package
-imports: - __future__ - • pyglet.graphics - • pyglet.model - • pyglet.model.codecs - • pyglet.model.codecs.obj - • pyglet.util - • typing - -
-
-imported by: - pyglet.model - • pyglet.model.codecs - • pyglet.model.codecs.obj - -
- -
- -
- - pyglet.model.codecs.obj -SourceModule
-imports: - os - • pyglet - • pyglet.gl - • pyglet.model - • pyglet.model.codecs - • pyglet.util - -
-
-imported by: - pyglet.model.codecs - -
- -
- -
- - pyglet.resource -SourceModule
-imports: - __future__ - • io - • os - • pyglet - • pyglet.font - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.image - • pyglet.image.animation - • pyglet.image.atlas - • pyglet.media - • pyglet.media.codecs - • pyglet.model - • pyglet.text.document - • sys - • typing - • urllib.parse - • urllib.request - • weakref - • zipfile - -
-
-imported by: - pyglet - • pyglet.text - • pyglet.text.formats.attributed - • pyglet.text.formats.html - • pyglet.text.formats.plaintext - • pyglet.text.formats.structured - -
- -
- -
- - pyglet.shapes -SourceModule
-imports: - __future__ - • abc - • math - • pyglet - • pyglet.extlibs - • pyglet.extlibs.earcut - • pyglet.gl - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.math - • typing - -
-
-imported by: - pyglet - -
- -
- -
- - pyglet.sprite -SourceModule
-imports: - __future__ - • pyglet - • pyglet.clock - • pyglet.event - • pyglet.gl - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.image - • sys - • typing - • warnings - -
-
-imported by: - pyglet - • pyglet.gui.ninepatch - -
- -
- -
- - pyglet.text -Package
-imports: - __future__ - • abc - • os.path - • pyglet - • pyglet.customtypes - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.resource - • pyglet.text - • pyglet.text.caret - • pyglet.text.document - • pyglet.text.formats - • pyglet.text.formats.attributed - • pyglet.text.formats.html - • pyglet.text.formats.plaintext - • pyglet.text.layout - • pyglet.text.runlist - • typing - -
-
-imported by: - pyglet - • pyglet.text - • pyglet.text.caret - • pyglet.text.document - • pyglet.text.formats - • pyglet.text.formats.plaintext - • pyglet.text.layout - • pyglet.text.layout.base - • pyglet.text.layout.incremental - • pyglet.text.runlist - • pyglet.window - -
- -
- -
- - pyglet.text.caret -SourceModule
-imports: - __future__ - • pyglet - • pyglet.clock - • pyglet.event - • pyglet.gl - • pyglet.graphics - • pyglet.text - • pyglet.text.layout - • pyglet.window - • pyglet.window.key - • re - • time - • typing - -
-
-imported by: - pyglet.gui.widgets - • pyglet.text - -
- -
- -
- - pyglet.text.document -SourceModule
-imports: - __future__ - • abc - • pyglet - • pyglet.event - • pyglet.font - • pyglet.font.base - • pyglet.text - • pyglet.text.layout - • pyglet.text.runlist - • re - • sys - • typing - -
-
-imported by: - pyglet.resource - • pyglet.text - • pyglet.text.formats.structured - • pyglet.text.layout.base - • pyglet.text.layout.incremental - • pyglet.text.layout.scrolling - -
- -
- -
- - pyglet.text.formats -Package
-imports: - pyglet.text - • pyglet.text.formats.attributed - • pyglet.text.formats.html - • pyglet.text.formats.plaintext - • pyglet.text.formats.structured - -
-
-imported by: - pyglet.text - • pyglet.text.formats.attributed - • pyglet.text.formats.html - • pyglet.text.formats.plaintext - • pyglet.text.formats.structured - -
- -
- -
- - pyglet.text.formats.attributed -SourceModule
-imports: - __future__ - • ast - • pyglet - • pyglet.resource - • pyglet.text.formats - • re - • typing - -
-
-imported by: - pyglet.text - • pyglet.text.formats - -
- -
- -
- - pyglet.text.formats.html -SourceModule
-imports: - __future__ - • contextlib - • html - • html.entities - • html.parser - • pyglet - • pyglet.image - • pyglet.resource - • pyglet.text.formats - • pyglet.text.formats.structured - • re - • typing - -
-
-imported by: - pyglet.text - • pyglet.text.formats - -
- -
- -
- - pyglet.text.formats.plaintext -SourceModule
-imports: - __future__ - • pyglet - • pyglet.resource - • pyglet.text - • pyglet.text.formats - • typing - -
-
-imported by: - pyglet.text - • pyglet.text.formats - -
- -
- -
- - pyglet.text.formats.structured -SourceModule
-imports: - __future__ - • pyglet - • pyglet.gl - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.image - • pyglet.resource - • pyglet.text.document - • pyglet.text.formats - • pyglet.text.layout - • re - • typing - -
-
-imported by: - pyglet.text.formats - • pyglet.text.formats.html - -
- -
- -
- - pyglet.text.layout -Package
-imports: - __future__ - • pyglet.text - • pyglet.text.layout.base - • pyglet.text.layout.incremental - • pyglet.text.layout.scrolling - -
-
-imported by: - pyglet.gui.ninepatch - • pyglet.gui.widgets - • pyglet.text - • pyglet.text.caret - • pyglet.text.document - • pyglet.text.formats.structured - • pyglet.text.layout.base - • pyglet.text.layout.incremental - • pyglet.text.layout.scrolling - -
- -
- -
- - pyglet.text.layout.base -SourceModule
-imports: - __future__ - • abc - • pyglet - • pyglet.customtypes - • pyglet.font.base - • pyglet.gl - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.graphics.vertexdomain - • pyglet.image - • pyglet.text - • pyglet.text.document - • pyglet.text.layout - • pyglet.text.runlist - • re - • sys - • typing - -
-
-imported by: - pyglet.text.layout - • pyglet.text.layout.incremental - • pyglet.text.layout.scrolling - -
- -
- -
- - pyglet.text.layout.incremental -SourceModule
-imports: - __future__ - • pyglet.customtypes - • pyglet.event - • pyglet.font.base - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.graphics.vertexdomain - • pyglet.text - • pyglet.text.document - • pyglet.text.layout - • pyglet.text.layout.base - • pyglet.text.layout.scrolling - • pyglet.text.runlist - • sys - • typing - -
-
-imported by: - pyglet.text.layout - -
- -
- -
- - pyglet.text.layout.scrolling -SourceModule
-imports: - __future__ - • pyglet - • pyglet.customtypes - • pyglet.gl - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.image - • pyglet.text.document - • pyglet.text.layout - • pyglet.text.layout.base - • typing - -
-
-imported by: - pyglet.text.layout - • pyglet.text.layout.incremental - -
- -
- -
- - pyglet.text.runlist -SourceModule
-imports: - __future__ - • pyglet.text - • typing - -
-
-imported by: - pyglet.text - • pyglet.text.document - • pyglet.text.layout.base - • pyglet.text.layout.incremental - -
- -
- -
- - pyglet.util -SourceModule
-imports: - math - • os - • pyglet - • pyglet.customtypes - • sys - • typing - -
-
-imported by: - pyglet.canvas.xlib_vidmoderestore - • pyglet.font.directwrite - • pyglet.font.fontconfig - • pyglet.font.freetype - • pyglet.gl.gl_info - • pyglet.gl.glx_info - • pyglet.gl.lib_glx - • pyglet.gl.lib_wgl - • pyglet.gl.wgl_info - • pyglet.image - • pyglet.image.codecs - • pyglet.input.linux.x11_xinput - • pyglet.input.win32.wintab - • pyglet.libs.egl.lib - • pyglet.libs.win32.com - • pyglet.media.codecs - • pyglet.media.codecs.base - • pyglet.media.codecs.ffmpeg - • pyglet.media.codecs.ffmpeg_lib.libavcodec - • pyglet.media.codecs.ffmpeg_lib.libavformat - • pyglet.media.codecs.ffmpeg_lib.libavutil - • pyglet.media.codecs.ffmpeg_lib.libswresample - • pyglet.media.codecs.ffmpeg_lib.libswscale - • pyglet.media.codecs.gstreamer - • pyglet.media.codecs.pyogg - • pyglet.media.codecs.wave - • pyglet.media.codecs.wmf - • pyglet.media.devices.win32 - • pyglet.media.drivers.base - • pyglet.media.drivers.directsound.adaptation - • pyglet.media.drivers.directsound.interface - • pyglet.media.drivers.openal.adaptation - • pyglet.media.drivers.openal.interface - • pyglet.media.drivers.pulse.adaptation - • pyglet.media.drivers.pulse.interface - • pyglet.media.drivers.xaudio2.adaptation - • pyglet.media.drivers.xaudio2.interface - • pyglet.media.drivers.xaudio2.lib_xaudio2 - • pyglet.media.player_worker_thread - • pyglet.model.codecs - • pyglet.model.codecs.obj - • pyglet.window.xlib - -
- -
- -
- - pyglet.window -Package
-imports: - __future__ - • abc - • collections - • inspect - • pyglet - • pyglet.app - • pyglet.canvas - • pyglet.event - • pyglet.gl - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.math - • pyglet.text - • pyglet.window - • pyglet.window.cocoa - • pyglet.window.event - • pyglet.window.headless - • pyglet.window.key - • pyglet.window.mouse - • pyglet.window.win32 - • pyglet.window.xlib - • statistics - • sys - • time - • typing - -
-
-imported by: - pyglet - • pyglet.app.base - • pyglet.app.cocoa - • pyglet.canvas.base - • pyglet.gl - • pyglet.gui.frame - • pyglet.image.codecs.gdkpixbuf2 - • pyglet.input.base - • pyglet.libs.darwin.quartzkey - • pyglet.libs.win32.winkey - • pyglet.text.caret - • pyglet.window - • pyglet.window.cocoa - • pyglet.window.cocoa.pyglet_textview - • pyglet.window.cocoa.pyglet_view - • pyglet.window.event - • pyglet.window.headless - • pyglet.window.key - • pyglet.window.mouse - • pyglet.window.win32 - • pyglet.window.xlib - -
- -
- -
- - pyglet.window.cocoa -Package
-imports: - __future__ - • ctypes - • pyglet - • pyglet.canvas.cocoa - • pyglet.event - • pyglet.gl.cocoa - • pyglet.libs - • pyglet.libs.darwin - • pyglet.libs.darwin.cocoapy - • pyglet.window - • pyglet.window.cocoa - • pyglet.window.cocoa.pyglet_delegate - • pyglet.window.cocoa.pyglet_textview - • pyglet.window.cocoa.pyglet_view - • pyglet.window.cocoa.pyglet_window - • pyglet.window.cocoa.systemcursor - • typing - -
-
-imported by: - pyglet.window - • pyglet.window.cocoa - • pyglet.window.cocoa.pyglet_delegate - • pyglet.window.cocoa.pyglet_textview - • pyglet.window.cocoa.pyglet_view - • pyglet.window.cocoa.pyglet_window - • pyglet.window.cocoa.systemcursor - -
- -
- -
- - pyglet.window.cocoa.pyglet_delegate -SourceModule
-imports: - __future__ - • pyglet.libs.darwin.cocoapy - • pyglet.window.cocoa - • pyglet.window.cocoa.systemcursor - • typing - -
-
-imported by: - pyglet.window.cocoa - -
- -
- -
- - pyglet.window.cocoa.pyglet_textview -SourceModule
-imports: - __future__ - • pyglet.libs.darwin.cocoapy - • pyglet.window - • pyglet.window.cocoa - • pyglet.window.key - • typing - • unicodedata - -
-
-imported by: - pyglet.window.cocoa - • pyglet.window.cocoa.pyglet_view - -
- -
- -
- - pyglet.window.cocoa.pyglet_view -SourceModule
-imports: - __future__ - • ctypes - • pyglet - • pyglet.app - • pyglet.libs.darwin - • pyglet.libs.darwin.cocoapy - • pyglet.libs.darwin.quartzkey - • pyglet.window - • pyglet.window.cocoa - • pyglet.window.cocoa.pyglet_textview - • pyglet.window.key - • pyglet.window.mouse - • typing - -
-
-imported by: - pyglet.window.cocoa - -
- -
- -
- - pyglet.window.cocoa.pyglet_window -SourceModule
-imports: - __future__ - • ctypes - • pyglet - • pyglet.app - • pyglet.libs.darwin - • pyglet.libs.darwin.cocoapy - • pyglet.window.cocoa - • typing - -
-
-imported by: - pyglet.window.cocoa - -
- -
- -
- - pyglet.window.cocoa.systemcursor -SourceModule
-imports: - __future__ - • pyglet.libs.darwin - • pyglet.libs.darwin.cocoapy - • pyglet.window.cocoa - -
-
-imported by: - pyglet.window.cocoa - • pyglet.window.cocoa.pyglet_delegate - -
- -
- -
- - pyglet.window.event -SourceModule
-imports: - __future__ - • io - • pyglet.window - • pyglet.window.key - • pyglet.window.mouse - • sys - • typing - -
-
-imported by: - pyglet.window - -
- -
- -
- - pyglet.window.headless -Package
-imports: - __future__ - • pyglet.canvas.headless - • pyglet.event - • pyglet.libs.egl - • pyglet.libs.egl.egl - • pyglet.window - • typing - -
-
-imported by: - pyglet.window - -
- -
- -
- - pyglet.window.key -SourceModule
-imports: - __future__ - • pyglet - • pyglet.window - -
-
-imported by: - pyglet.libs.darwin.quartzkey - • pyglet.libs.win32.winkey - • pyglet.text.caret - • pyglet.window - • pyglet.window.cocoa.pyglet_textview - • pyglet.window.cocoa.pyglet_view - • pyglet.window.event - • pyglet.window.win32 - • pyglet.window.xlib - -
- -
- -
- - pyglet.window.mouse -SourceModule
-imports: - __future__ - • pyglet.window - -
-
-imported by: - pyglet.window - • pyglet.window.cocoa.pyglet_view - • pyglet.window.event - • pyglet.window.win32 - • pyglet.window.xlib - -
- -
- -
- - pyglet.window.win32 -Package
-imports: - __future__ - • ctypes - • ctypes.wintypes - • functools - • pyglet - • pyglet.app - • pyglet.canvas.win32 - • pyglet.event - • pyglet.libs.win32 - • pyglet.libs.win32.constants - • pyglet.libs.win32.types - • pyglet.libs.win32.winkey - • pyglet.window - • pyglet.window.key - • pyglet.window.mouse - • sys - • typing - • unicodedata - -
-
-imported by: - pyglet.media.drivers.directsound.interface - • pyglet.window - -
- -
- -
- - pyglet.window.xlib -Package
-imports: - __future__ - • _ctypes - • ctypes - • functools - • locale - • pyglet - • pyglet.canvas.xlib - • pyglet.event - • pyglet.gl.xlib - • pyglet.libs.x11 - • pyglet.libs.x11.cursorfont - • pyglet.libs.x11.xlib - • pyglet.libs.x11.xsync - • pyglet.util - • pyglet.window - • pyglet.window.key - • pyglet.window.mouse - • sys - • typing - • unicodedata - • urllib.parse - -
-
-imported by: - pyglet.window - -
- -
- -
- - pyimod02_importers -MissingModule
-imported by: - pyi_rth_pkgutil.py - -
- -
- -
- - pyogg -MissingModule
-imported by: - pyglet.media.codecs.pyogg - -
- -
- -
- - queue -SourceModule
-imports: - _queue - • collections - • heapq - • threading - • time - • types - -
-
-imported by: - concurrent.futures.process - • concurrent.futures.thread - • multiprocessing.dummy - • multiprocessing.dummy.connection - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.queues - • pyglet.app.base - • pyglet.media.codecs.gstreamer - -
- -
- -
- - quopri -SourceModule
-imports: - binascii - • getopt - • io - • sys - -
-
-imported by: - email.encoders - • email.message - • encodings.quopri_codec - -
- -
- -
- - random -SourceModule
-imports: - _collections_abc - • _random - • _sha512 - • bisect - • hashlib - • itertools - • math - • operator - • os - • statistics - • time - • warnings - -
-
-imported by: - PIL.ImagePalette - • email.generator - • email.utils - • enne2engine.sdl2_wrapper - • pyglet.media.synthesis - • secrets - • statistics - • tempfile - • uuid - -
- -
- -
- - re -Package
-imports: - copyreg - • enum - • functools - • re - • re._compiler - • re._constants - • re._parser - • warnings - -
-
-imported by: - PIL.EpsImagePlugin - • PIL.GimpPaletteFile - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageColor - • PIL.ImageOps - • PIL.ImtImagePlugin - • PIL.PdfParser - • PIL.PngImagePlugin - • PIL.XbmImagePlugin - • PIL.XpmImagePlugin - • _markupbase - • _pydecimal - • _sre - • _strptime - • argparse - • base64 - • csv - • ctypes._aix - • ctypes.macholib.dylib - • ctypes.macholib.framework - • ctypes.util - • dataclasses - • email._encoded_words - • email._header_value_parser - • email.feedparser - • email.generator - • email.header - • email.message - • email.policy - • email.quoprimime - • email.utils - • encodings.idna - • engine_demo.py - • fnmatch - • fractions - • ftplib - • gettext - • html - • html.parser - • http.client - • http.cookiejar - • importlib.metadata - • importlib.metadata._adapters - • importlib.metadata._text - • inspect - • ipaddress - • json.decoder - • json.encoder - • json.scanner - • locale - • logging - • pathlib - • pickle - • pkgutil - • platform - • posixpath - • pprint - • pyglet.extlibs.png - • pyglet.graphics.shader - • pyglet.image - • pyglet.image.codecs.s3tc - • pyglet.lib - • pyglet.text.caret - • pyglet.text.document - • pyglet.text.formats.attributed - • pyglet.text.formats.html - • pyglet.text.formats.structured - • pyglet.text.layout.base - • re - • re._casefix - • re._compiler - • re._constants - • re._parser - • sdl2.ext.resources - • sdl2.ext.ttf - • shlex - • sre_compile - • sre_constants - • sre_parse - • string - • tarfile - • textwrap - • tokenize - • typing - • urllib.parse - • urllib.request - • warnings - • xml.etree.ElementPath - • xml.etree.ElementTree - • zipfile - -
- -
- -
- - re._casefix -SourceModule
-imports: - re - -
-
-imported by: - engine_demo.py - • re._compiler - -
- -
- -
- - re._compiler -SourceModule
-imports: - _sre - • re - • re._casefix - • re._constants - • re._parser - • sys - -
-
-imported by: - engine_demo.py - • re - • sre_compile - -
- -
- -
- - re._constants -SourceModule
-imports: - _sre - • re - -
-
-imported by: - engine_demo.py - • re - • re._compiler - • re._parser - • sre_constants - -
- -
- -
- - re._parser -SourceModule
-imports: - re - • re._constants - • unicodedata - • warnings - -
-
-imported by: - engine_demo.py - • re - • re._compiler - • sre_parse - -
- -
- -
- - reprlib -SourceModule
-imports: - _thread - • builtins - • itertools - -
-
-imported by: - collections - • engine_demo.py - • functools - -
- -
- -
- - resource /usr/lib64/python3.11/lib-dynload/resource.cpython-311-x86_64-linux-gnu.so
-imported by: - posix - -
- -
- -
- - runpy -SourceModule
-imports: - importlib.machinery - • importlib.util - • io - • os - • pkgutil - • sys - • warnings - -
-
-imported by: - multiprocessing.spawn - -
- -
- -
- - sdl2 -Package
-imports: - sdl2 - • sdl2._sdl_init - • sdl2.audio - • sdl2.blendmode - • sdl2.clipboard - • sdl2.cpuinfo - • sdl2.dll - • sdl2.endian - • sdl2.error - • sdl2.events - • sdl2.filesystem - • sdl2.gamecontroller - • sdl2.gesture - • sdl2.guid - • sdl2.haptic - • sdl2.hidapi - • sdl2.hints - • sdl2.joystick - • sdl2.keyboard - • sdl2.keycode - • sdl2.loadso - • sdl2.locale - • sdl2.log - • sdl2.messagebox - • sdl2.metal - • sdl2.misc - • sdl2.mouse - • sdl2.pixels - • sdl2.platform - • sdl2.power - • sdl2.rect - • sdl2.render - • sdl2.rwops - • sdl2.scancode - • sdl2.sdlimage - • sdl2.sdlttf - • sdl2.sensor - • sdl2.shape - • sdl2.stdinc - • sdl2.surface - • sdl2.syswm - • sdl2.timer - • sdl2.touch - • sdl2.version - • sdl2.video - -
-
-imported by: - enne2engine.sdl2_utils.gui - • enne2engine.sdl2_wrapper - • sdl2 - • sdl2._internal - • sdl2._sdl_init - • sdl2.audio - • sdl2.blendmode - • sdl2.clipboard - • sdl2.cpuinfo - • sdl2.dll - • sdl2.endian - • sdl2.error - • sdl2.events - • sdl2.ext - • sdl2.ext.bitmapfont - • sdl2.ext.common - • sdl2.ext.displays - • sdl2.ext.draw - • sdl2.ext.err - • sdl2.ext.image - • sdl2.ext.mouse - • sdl2.ext.msgbox - • sdl2.ext.renderer - • sdl2.ext.sprite - • sdl2.ext.spritesystem - • sdl2.ext.surface - • sdl2.ext.ttf - • sdl2.ext.uisystem - • sdl2.ext.window - • sdl2.filesystem - • sdl2.gamecontroller - • sdl2.gesture - • sdl2.guid - • sdl2.haptic - • sdl2.hidapi - • sdl2.hints - • sdl2.joystick - • sdl2.keyboard - • sdl2.keycode - • sdl2.loadso - • sdl2.locale - • sdl2.log - • sdl2.messagebox - • sdl2.metal - • sdl2.misc - • sdl2.mouse - • sdl2.pixels - • sdl2.platform - • sdl2.power - • sdl2.rect - • sdl2.render - • sdl2.rwops - • sdl2.scancode - • sdl2.sdlimage - • sdl2.sdlttf - • sdl2.sensor - • sdl2.shape - • sdl2.stdinc - • sdl2.surface - • sdl2.syswm - • sdl2.timer - • sdl2.touch - • sdl2.version - • sdl2.video - -
- -
- -
- - sdl2._internal -SourceModule
-imports: - ctypes - • sdl2 - • warnings - -
-
-imported by: - sdl2.dll - -
- -
- -
- - sdl2._sdl_init -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.stdinc - -
-
-imported by: - sdl2 - • sdl2.ext.displays - -
- -
- -
- - sdl2.audio -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.endian - • sdl2.rwops - • sdl2.stdinc - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.blendmode -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - -
-
-imported by: - sdl2 - • sdl2.ext.renderer - • sdl2.render - • sdl2.surface - -
- -
- -
- - sdl2.clipboard -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.stdinc - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.cpuinfo -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.stdinc - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.dll -SourceModule
-imports: - __future__ - • ctypes - • ctypes.util - • os - • platform - • sdl2 - • sdl2._internal - • sdl2dll - • sys - • warnings - -
-
-imported by: - sdl2 - • sdl2._sdl_init - • sdl2.audio - • sdl2.blendmode - • sdl2.clipboard - • sdl2.cpuinfo - • sdl2.error - • sdl2.events - • sdl2.ext.common - • sdl2.ext.msgbox - • sdl2.ext.renderer - • sdl2.filesystem - • sdl2.gamecontroller - • sdl2.gesture - • sdl2.guid - • sdl2.haptic - • sdl2.hidapi - • sdl2.hints - • sdl2.joystick - • sdl2.keyboard - • sdl2.loadso - • sdl2.locale - • sdl2.log - • sdl2.messagebox - • sdl2.metal - • sdl2.misc - • sdl2.mouse - • sdl2.pixels - • sdl2.platform - • sdl2.power - • sdl2.rect - • sdl2.render - • sdl2.rwops - • sdl2.sdlimage - • sdl2.sdlttf - • sdl2.sensor - • sdl2.shape - • sdl2.stdinc - • sdl2.surface - • sdl2.syswm - • sdl2.timer - • sdl2.touch - • sdl2.version - • sdl2.video - -
- -
- -
- - sdl2.endian -SourceModule
-imports: - array - • sdl2 - • sys - -
-
-imported by: - sdl2 - • sdl2.audio - • sdl2.ext.image - • sdl2.pixels - -
- -
- -
- - sdl2.error -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - -
-
-imported by: - sdl2 - • sdl2.ext.common - • sdl2.ext.err - • sdl2.ext.image - • sdl2.ext.renderer - • sdl2.sdlimage - • sdl2.sdlttf - -
- -
- -
- - sdl2.events -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.gesture - • sdl2.joystick - • sdl2.keyboard - • sdl2.stdinc - • sdl2.syswm - • sdl2.touch - -
-
-imported by: - sdl2 - • sdl2.ext.common - • sdl2.ext.input - • sdl2.ext.mouse - • sdl2.ext.uisystem - -
- -
- -
- - sdl2.ext -Package
-imports: - sdl2 - • sdl2.ext.algorithms - • sdl2.ext.array - • sdl2.ext.bitmapfont - • sdl2.ext.color - • sdl2.ext.common - • sdl2.ext.displays - • sdl2.ext.draw - • sdl2.ext.ebs - • sdl2.ext.err - • sdl2.ext.events - • sdl2.ext.image - • sdl2.ext.input - • sdl2.ext.mouse - • sdl2.ext.msgbox - • sdl2.ext.pixelaccess - • sdl2.ext.renderer - • sdl2.ext.resources - • sdl2.ext.sprite - • sdl2.ext.spritesystem - • sdl2.ext.surface - • sdl2.ext.ttf - • sdl2.ext.uisystem - • sdl2.ext.window - -
-
-imported by: - enne2engine.sdl2_utils.gui - • enne2engine.sdl2_wrapper - • sdl2.ext.algorithms - • sdl2.ext.array - • sdl2.ext.bitmapfont - • sdl2.ext.color - • sdl2.ext.common - • sdl2.ext.compat - • sdl2.ext.displays - • sdl2.ext.draw - • sdl2.ext.ebs - • sdl2.ext.err - • sdl2.ext.events - • sdl2.ext.image - • sdl2.ext.input - • sdl2.ext.mouse - • sdl2.ext.msgbox - • sdl2.ext.pixelaccess - • sdl2.ext.renderer - • sdl2.ext.resources - • sdl2.ext.sprite - • sdl2.ext.spritesystem - • sdl2.ext.surface - • sdl2.ext.ttf - • sdl2.ext.uisystem - • sdl2.ext.window - -
- -
- -
- - sdl2.ext.algorithms -SourceModule
-imports: - sdl2.ext - • sys - -
-
-imported by: - sdl2.ext - • sdl2.ext.draw - -
- -
- -
- - sdl2.ext.array -SourceModule
-imports: - ctypes - • sdl2.ext - -
-
-imported by: - sdl2.ext - • sdl2.ext.draw - • sdl2.ext.pixelaccess - -
- -
- -
- - sdl2.ext.bitmapfont -SourceModule
-imports: - sdl2 - • sdl2.ext - • sdl2.ext.err - • sdl2.ext.image - • sdl2.ext.sprite - • sdl2.ext.surface - • sdl2.pixels - • sdl2.rect - • sdl2.surface - -
-
-imported by: - sdl2.ext - -
- -
- -
- - sdl2.ext.color -SourceModule
-imports: - math - • sdl2.ext - • sdl2.ext.compat - -
-
-imported by: - sdl2.ext - • sdl2.ext.draw - • sdl2.ext.msgbox - • sdl2.ext.renderer - • sdl2.ext.spritesystem - • sdl2.ext.surface - • sdl2.ext.ttf - -
- -
- -
- - sdl2.ext.common -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.error - • sdl2.events - • sdl2.ext - • sdl2.ext.compat - • sdl2.ext.err - • sdl2.sdlimage - • sdl2.sdlttf - • sdl2.timer - -
-
-imported by: - sdl2.ext - • sdl2.ext.displays - -
- -
- -
- - sdl2.ext.compat -SourceModule
-imports: - collections - • collections.Callable - • collections.Iterable - • collections.abc - • sdl2.ext - • sys - • warnings - -
-
-imported by: - sdl2.ext.color - • sdl2.ext.common - • sdl2.ext.draw - • sdl2.ext.ebs - • sdl2.ext.events - • sdl2.ext.image - • sdl2.ext.input - • sdl2.ext.mouse - • sdl2.ext.msgbox - • sdl2.ext.pixelaccess - • sdl2.ext.renderer - • sdl2.ext.spritesystem - • sdl2.ext.surface - • sdl2.ext.ttf - • sdl2.ext.uisystem - • sdl2.ext.window - -
- -
- -
- - sdl2.ext.displays -SourceModule
-imports: - ctypes - • sdl2 - • sdl2._sdl_init - • sdl2.ext - • sdl2.ext.common - • sdl2.rect - • sdl2.video - -
-
-imported by: - sdl2.ext - • sdl2.ext.window - -
- -
- -
- - sdl2.ext.draw -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.ext - • sdl2.ext.algorithms - • sdl2.ext.array - • sdl2.ext.color - • sdl2.ext.compat - • sdl2.ext.err - • sdl2.ext.surface - • sdl2.pixels - • sdl2.rect - • sdl2.surface - -
-
-imported by: - sdl2.ext - • sdl2.ext.pixelaccess - • sdl2.ext.ttf - -
- -
- -
- - sdl2.ext.ebs -SourceModule
-imports: - inspect - • sdl2.ext - • sdl2.ext.compat - • uuid - -
-
-imported by: - sdl2.ext - • sdl2.ext.spritesystem - • sdl2.ext.uisystem - -
- -
- -
- - sdl2.ext.err -SourceModule
-imports: - sdl2 - • sdl2.error - • sdl2.ext - -
-
-imported by: - sdl2.ext - • sdl2.ext.bitmapfont - • sdl2.ext.common - • sdl2.ext.draw - • sdl2.ext.image - • sdl2.ext.mouse - • sdl2.ext.msgbox - • sdl2.ext.renderer - • sdl2.ext.sprite - • sdl2.ext.spritesystem - • sdl2.ext.surface - • sdl2.ext.ttf - • sdl2.ext.window - -
- -
- -
- - sdl2.ext.events -SourceModule
-imports: - multiprocessing - • multiprocessing.Pool - • sdl2.ext - • sdl2.ext.compat - -
-
-imported by: - sdl2.ext - • sdl2.ext.uisystem - -
- -
- -
- - sdl2.ext.image -SourceModule
-imports: - PIL - • PIL.Image - • os - • sdl2 - • sdl2.endian - • sdl2.error - • sdl2.ext - • sdl2.ext.compat - • sdl2.ext.err - • sdl2.ext.resources - • sdl2.ext.surface - • sdl2.pixels - • sdl2.rwops - • sdl2.sdlimage - • sdl2.surface - -
-
-imported by: - sdl2.ext - • sdl2.ext.bitmapfont - • sdl2.ext.spritesystem - -
- -
- -
- - sdl2.ext.input -SourceModule
-imports: - ctypes - • sdl2.events - • sdl2.ext - • sdl2.ext.compat - • sdl2.keyboard - • sdl2.keycode - • sdl2.mouse - • sdl2.scancode - • sdl2.stdinc - -
-
-imported by: - sdl2.ext - -
- -
- -
- - sdl2.ext.mouse -SourceModule
-imports: - collections - • ctypes - • sdl2 - • sdl2.events - • sdl2.ext - • sdl2.ext.compat - • sdl2.ext.err - • sdl2.ext.window - • sdl2.mouse - -
-
-imported by: - sdl2.ext - -
- -
- -
- - sdl2.ext.msgbox -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.ext - • sdl2.ext.color - • sdl2.ext.compat - • sdl2.ext.err - • sdl2.ext.window - • sdl2.messagebox - -
-
-imported by: - sdl2.ext - -
- -
- -
- - sdl2.ext.pixelaccess -SourceModule
-imports: - ctypes - • numpy - • sdl2.ext - • sdl2.ext.array - • sdl2.ext.compat - • sdl2.ext.draw - • sdl2.ext.sprite - • sdl2.ext.surface - • sdl2.stdinc - • sdl2.surface - -
-
-imported by: - sdl2.ext - -
- -
- -
- - sdl2.ext.renderer -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.blendmode - • sdl2.dll - • sdl2.error - • sdl2.ext - • sdl2.ext.color - • sdl2.ext.compat - • sdl2.ext.err - • sdl2.ext.sprite - • sdl2.ext.surface - • sdl2.ext.window - • sdl2.hints - • sdl2.rect - • sdl2.render - • sdl2.stdinc - • sdl2.surface - • sdl2.video - -
-
-imported by: - sdl2.ext - • sdl2.ext.spritesystem - -
- -
- -
- - sdl2.ext.resources -SourceModule
-imports: - io - • os - • re - • sdl2.ext - • sys - • tarfile - • urllib.parse - • urllib.request - • urllib2 - • urlparse - • zipfile - -
-
-imported by: - sdl2.ext - • sdl2.ext.image - • sdl2.ext.ttf - -
- -
- -
- - sdl2.ext.sprite -SourceModule
-imports: - abc - • ctypes - • sdl2 - • sdl2.ext - • sdl2.ext.err - • sdl2.ext.surface - • sdl2.rect - • sdl2.render - • sdl2.stdinc - • sdl2.surface - -
-
-imported by: - sdl2.ext - • sdl2.ext.bitmapfont - • sdl2.ext.pixelaccess - • sdl2.ext.renderer - • sdl2.ext.spritesystem - • sdl2.ext.uisystem - -
- -
- -
- - sdl2.ext.spritesystem -SourceModule
-imports: - PIL.Image - • sdl2 - • sdl2.ext - • sdl2.ext.color - • sdl2.ext.compat - • sdl2.ext.ebs - • sdl2.ext.err - • sdl2.ext.image - • sdl2.ext.renderer - • sdl2.ext.sprite - • sdl2.ext.window - • sdl2.pixels - • sdl2.rect - • sdl2.render - • sdl2.rwops - • sdl2.surface - • sdl2.video - -
-
-imported by: - sdl2.ext - -
- -
- -
- - sdl2.ext.surface -SourceModule
-imports: - sdl2 - • sdl2.ext - • sdl2.ext.color - • sdl2.ext.compat - • sdl2.ext.err - • sdl2.pixels - • sdl2.rect - • sdl2.surface - -
-
-imported by: - sdl2.ext - • sdl2.ext.bitmapfont - • sdl2.ext.draw - • sdl2.ext.image - • sdl2.ext.pixelaccess - • sdl2.ext.renderer - • sdl2.ext.sprite - • sdl2.ext.ttf - -
- -
- -
- - sdl2.ext.ttf -SourceModule
-imports: - ctypes - • os - • re - • sdl2 - • sdl2.ext - • sdl2.ext.color - • sdl2.ext.compat - • sdl2.ext.draw - • sdl2.ext.err - • sdl2.ext.resources - • sdl2.ext.surface - • sdl2.pixels - • sdl2.rect - • sdl2.rwops - • sdl2.sdlttf - • sdl2.surface - -
-
-imported by: - sdl2.ext - -
- -
- -
- - sdl2.ext.uisystem -SourceModule
-imports: - sdl2 - • sdl2.events - • sdl2.ext - • sdl2.ext.compat - • sdl2.ext.ebs - • sdl2.ext.events - • sdl2.ext.sprite - • sdl2.keyboard - • sdl2.mouse - • sdl2.rect - -
-
-imported by: - sdl2.ext - -
- -
- -
- - sdl2.ext.window -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.ext - • sdl2.ext.compat - • sdl2.ext.displays - • sdl2.ext.err - • sdl2.video - -
-
-imported by: - sdl2.ext - • sdl2.ext.mouse - • sdl2.ext.msgbox - • sdl2.ext.renderer - • sdl2.ext.spritesystem - -
- -
- -
- - sdl2.filesystem -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.gamecontroller -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.joystick - • sdl2.rwops - • sdl2.sensor - • sdl2.stdinc - • sys - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.gesture -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.rwops - • sdl2.stdinc - • sdl2.touch - -
-
-imported by: - sdl2 - • sdl2.events - -
- -
- -
- - sdl2.guid -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.joystick - • sdl2.stdinc - • sys - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.haptic -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.joystick - • sdl2.stdinc - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.hidapi -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.stdinc - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.hints -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.stdinc - -
-
-imported by: - sdl2 - • sdl2.ext.renderer - -
- -
- -
- - sdl2.joystick -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.stdinc - • sys - -
-
-imported by: - sdl2 - • sdl2.events - • sdl2.gamecontroller - • sdl2.guid - • sdl2.haptic - -
- -
- -
- - sdl2.keyboard -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.keycode - • sdl2.rect - • sdl2.scancode - • sdl2.stdinc - • sdl2.video - -
-
-imported by: - sdl2 - • sdl2.events - • sdl2.ext.input - • sdl2.ext.uisystem - -
- -
- -
- - sdl2.keycode -SourceModule
-imports: - sdl2 - • sdl2.scancode - • sdl2.stdinc - -
-
-imported by: - sdl2 - • sdl2.ext.input - • sdl2.keyboard - -
- -
- -
- - sdl2.loadso -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.locale -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.log -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.messagebox -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.stdinc - • sdl2.video - -
-
-imported by: - sdl2 - • sdl2.ext.msgbox - -
- -
- -
- - sdl2.metal -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.video - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.misc -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.mouse -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.stdinc - • sdl2.surface - • sdl2.video - -
-
-imported by: - sdl2 - • sdl2.ext.input - • sdl2.ext.mouse - • sdl2.ext.uisystem - -
- -
- -
- - sdl2.pixels -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.endian - • sdl2.stdinc - -
-
-imported by: - sdl2 - • sdl2.ext.bitmapfont - • sdl2.ext.draw - • sdl2.ext.image - • sdl2.ext.spritesystem - • sdl2.ext.surface - • sdl2.ext.ttf - • sdl2.render - • sdl2.sdlttf - • sdl2.shape - • sdl2.surface - -
- -
- -
- - sdl2.platform -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.power -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.rect -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.stdinc - -
-
-imported by: - sdl2 - • sdl2.ext.bitmapfont - • sdl2.ext.displays - • sdl2.ext.draw - • sdl2.ext.renderer - • sdl2.ext.sprite - • sdl2.ext.spritesystem - • sdl2.ext.surface - • sdl2.ext.ttf - • sdl2.ext.uisystem - • sdl2.keyboard - • sdl2.render - • sdl2.surface - • sdl2.video - -
- -
- -
- - sdl2.render -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.blendmode - • sdl2.dll - • sdl2.pixels - • sdl2.rect - • sdl2.stdinc - • sdl2.surface - • sdl2.video - -
-
-imported by: - sdl2 - • sdl2.ext.renderer - • sdl2.ext.sprite - • sdl2.ext.spritesystem - • sdl2.sdlimage - -
- -
- -
- - sdl2.rwops -SourceModule
-imports: - collections - • collections.Callable - • collections.abc - • ctypes - • io - • sdl2 - • sdl2.dll - • sdl2.stdinc - • sys - -
-
-imported by: - sdl2 - • sdl2.audio - • sdl2.ext.image - • sdl2.ext.spritesystem - • sdl2.ext.ttf - • sdl2.gamecontroller - • sdl2.gesture - • sdl2.sdlimage - • sdl2.sdlttf - • sdl2.surface - -
- -
- -
- - sdl2.scancode -SourceModule
-imports: - ctypes - • sdl2 - -
-
-imported by: - sdl2 - • sdl2.ext.input - • sdl2.keyboard - • sdl2.keycode - -
- -
- -
- - sdl2.sdlimage -SourceModule
-imports: - ctypes - • os - • sdl2 - • sdl2.dll - • sdl2.error - • sdl2.render - • sdl2.rwops - • sdl2.surface - • sdl2.version - -
-
-imported by: - sdl2 - • sdl2.ext.common - • sdl2.ext.image - -
- -
- -
- - sdl2.sdlttf -SourceModule
-imports: - ctypes - • os - • sdl2 - • sdl2.dll - • sdl2.error - • sdl2.pixels - • sdl2.rwops - • sdl2.stdinc - • sdl2.surface - • sdl2.version - -
-
-imported by: - sdl2 - • sdl2.ext.common - • sdl2.ext.ttf - -
- -
- -
- - sdl2.sensor -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.stdinc - -
-
-imported by: - sdl2 - • sdl2.gamecontroller - -
- -
- -
- - sdl2.shape -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.pixels - • sdl2.stdinc - • sdl2.surface - • sdl2.video - -
-
-imported by: - sdl2 - -
- -
- -
- - sdl2.stdinc -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sys - -
-
-imported by: - sdl2 - • sdl2._sdl_init - • sdl2.audio - • sdl2.clipboard - • sdl2.cpuinfo - • sdl2.events - • sdl2.ext.input - • sdl2.ext.pixelaccess - • sdl2.ext.renderer - • sdl2.ext.sprite - • sdl2.gamecontroller - • sdl2.gesture - • sdl2.guid - • sdl2.haptic - • sdl2.hidapi - • sdl2.hints - • sdl2.joystick - • sdl2.keyboard - • sdl2.keycode - • sdl2.messagebox - • sdl2.mouse - • sdl2.pixels - • sdl2.rect - • sdl2.render - • sdl2.rwops - • sdl2.sdlttf - • sdl2.sensor - • sdl2.shape - • sdl2.surface - • sdl2.syswm - • sdl2.timer - • sdl2.touch - • sdl2.version - • sdl2.video - -
- -
- -
- - sdl2.surface -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.blendmode - • sdl2.dll - • sdl2.pixels - • sdl2.rect - • sdl2.rwops - • sdl2.stdinc - -
-
-imported by: - sdl2 - • sdl2.ext.bitmapfont - • sdl2.ext.draw - • sdl2.ext.image - • sdl2.ext.pixelaccess - • sdl2.ext.renderer - • sdl2.ext.sprite - • sdl2.ext.spritesystem - • sdl2.ext.surface - • sdl2.ext.ttf - • sdl2.mouse - • sdl2.render - • sdl2.sdlimage - • sdl2.sdlttf - • sdl2.shape - • sdl2.video - -
- -
- -
- - sdl2.syswm -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.stdinc - • sdl2.version - • sdl2.video - -
-
-imported by: - sdl2 - • sdl2.events - -
- -
- -
- - sdl2.timer -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.stdinc - -
-
-imported by: - sdl2 - • sdl2.ext.common - -
- -
- -
- - sdl2.touch -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.stdinc - -
-
-imported by: - sdl2 - • sdl2.events - • sdl2.gesture - -
- -
- -
- - sdl2.version -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.stdinc - -
-
-imported by: - sdl2 - • sdl2.sdlimage - • sdl2.sdlttf - • sdl2.syswm - -
- -
- -
- - sdl2.video -SourceModule
-imports: - ctypes - • sdl2 - • sdl2.dll - • sdl2.rect - • sdl2.stdinc - • sdl2.surface - -
-
-imported by: - sdl2 - • sdl2.ext.displays - • sdl2.ext.renderer - • sdl2.ext.spritesystem - • sdl2.ext.window - • sdl2.keyboard - • sdl2.messagebox - • sdl2.metal - • sdl2.mouse - • sdl2.render - • sdl2.shape - • sdl2.syswm - -
- -
- -
- - sdl2dll -MissingModule
-imported by: - sdl2.dll - -
- -
- -
- - secrets -SourceModule
-imports: - base64 - • binascii - • hmac - • random - -
-
-imported by: - multiprocessing.shared_memory - -
- -
- -
- - select /usr/lib64/python3.11/lib-dynload/select.cpython-311-x86_64-linux-gnu.so
-imported by: - pyglet.app.xlib - • selectors - • subprocess - -
- -
- -
- - selectors -SourceModule
-imports: - abc - • collections - • collections.abc - • math - • select - • sys - -
-
-imported by: - multiprocessing.connection - • multiprocessing.forkserver - • socket - • subprocess - -
- -
- -
- - shlex -SourceModule
-imports: - collections - • io - • os - • re - • sys - • warnings - -
-
-imported by: - PIL.ImageShow - • netrc - -
- -
- -
- - shutil -SourceModule
-imports: - bz2 - • collections - • errno - • fnmatch - • grp - • lzma - • nt - • os - • posix - • pwd - • stat - • sys - • tarfile - • zipfile - • zlib - -
-
-imported by: - PIL.EpsImagePlugin - • PIL.ImageShow - • argparse - • ctypes.util - • multiprocessing.util - • tarfile - • tempfile - • uuid - • zipfile - -
- -
- -
- - signal -SourceModule
-imports: - _signal - • enum - -
-
-imported by: - multiprocessing.forkserver - • multiprocessing.managers - • multiprocessing.popen_fork - • multiprocessing.popen_spawn_win32 - • multiprocessing.process - • multiprocessing.resource_sharer - • multiprocessing.resource_tracker - • pyglet.app.cocoa - • pyglet.canvas.xlib_vidmoderestore - • subprocess - -
- -
- -
- - socket -SourceModule
-imports: - _socket - • array - • enum - • errno - • io - • os - • selectors - • sys - -
-
-imported by: - _ssl - • email.utils - • ftplib - • http.client - • multiprocessing.connection - • multiprocessing.forkserver - • multiprocessing.reduction - • multiprocessing.resource_sharer - • platform - • ssl - • urllib.request - • uuid - -
- -
- -
- - sre_compile -SourceModule
-imports: - re - • re._compiler - • warnings - -
-
-imported by: - engine_demo.py - -
- -
- -
- - sre_constants -SourceModule
-imports: - re - • re._constants - • warnings - -
-
-imported by: - engine_demo.py - -
- -
- -
- - sre_parse -SourceModule
-imports: - re - • re._parser - • warnings - -
-
-imported by: - engine_demo.py - -
- -
- -
- - ssl -SourceModule
-imports: - _ssl - • base64 - • calendar - • collections - • enum - • errno - • os - • socket - • sys - • time - • warnings - -
-
-imported by: - ftplib - • http.client - • urllib.request - -
- -
- -
- - stat -SourceModule
-imports: - _stat - -
-
-imported by: - engine_demo.py - • genericpath - • netrc - • ntpath - • os - • pathlib - • posixpath - • shutil - • tarfile - • tempfile - • zipfile - -
- -
- -
- - statistics -SourceModule
-imports: - _statistics - • bisect - • collections - • decimal - • fractions - • functools - • itertools - • math - • numbers - • operator - • random - • sys - -
-
-imported by: - pyglet.window - • random - -
- -
- -
- - string -SourceModule
-imports: - _string - • collections - • re - -
-
-imported by: - email._encoded_words - • email._header_value_parser - • email.quoprimime - • logging - • ntpath - • nturl2path - • urllib.request - -
- -
- -
- - stringprep -SourceModule
-imports: - unicodedata - -
-
-imported by: - encodings.idna - -
- -
- -
- - struct -SourceModule
-imports: - _struct - -
-
-imported by: - PIL.BlpImagePlugin - • PIL.DdsImagePlugin - • PIL.FtexImagePlugin - • PIL.IcnsImagePlugin - • PIL.Image - • PIL.ImageFile - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.McIdasImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PngImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.TiffImagePlugin - • PIL._binary - • base64 - • ctypes - • ctypes.util - • gettext - • gzip - • multiprocessing.connection - • multiprocessing.forkserver - • multiprocessing.shared_memory - • multiprocessing.synchronize - • pickle - • platform - • pyglet.canvas.xlib_vidmoderestore - • pyglet.extlibs.png - • pyglet.image.codecs.dds - • pyglet.image.codecs.gif - • pyglet.libs.darwin.cocoapy.cocoatypes - • pyglet.libs.darwin.cocoapy.runtime - • pyglet.libs.win32 - • pyglet.media.synthesis - • tarfile - • wave - • zipfile - -
- -
- -
- - subprocess -SourceModule
-imports: - _posixsubprocess - • _winapi - • builtins - • contextlib - • errno - • fcntl - • grp - • io - • locale - • msvcrt - • os - • pwd - • select - • selectors - • signal - • sys - • threading - • time - • types - • warnings - -
-
-imported by: - PIL.EpsImagePlugin - • PIL.GifImagePlugin - • PIL.ImageShow - • PIL.JpegImagePlugin - • ctypes._aix - • ctypes.util - • multiprocessing.util - • os - • platform - • pyi_rth_multiprocessing.py - • uuid - -
- -
- -
- - sys (builtin module)
-imported by: - PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.IcnsImagePlugin - • PIL.Image - • PIL.ImageCms - • PIL.ImageFile - • PIL.ImageMode - • PIL.ImageQt - • PIL.ImageShow - • PIL.JpegImagePlugin - • PIL.SpiderImagePlugin - • PIL._typing - • PIL.features - • _collections_abc - • _compression - • _pydecimal - • argparse - • ast - • base64 - • calendar - • codecs - • collections - • concurrent.futures.process - • contextlib - • ctypes - • ctypes._aix - • ctypes._endian - • ctypes.util - • dataclasses - • datetime - • dis - • email._header_value_parser - • email.generator - • email.iterators - • email.policy - • encodings - • encodings.rot_13 - • encodings.utf_16 - • encodings.utf_32 - • engine_demo.py - • enum - • fractions - • ftplib - • getopt - • getpass - • gettext - • gzip - • http.client - • importlib - • importlib._bootstrap_external - • importlib.metadata - • importlib.util - • inspect - • linecache - • locale - • logging - • mimetypes - • multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.dummy - • multiprocessing.forkserver - • multiprocessing.heap - • multiprocessing.managers - • multiprocessing.popen_spawn_win32 - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.reduction - • multiprocessing.resource_sharer - • multiprocessing.resource_tracker - • multiprocessing.spawn - • multiprocessing.synchronize - • multiprocessing.util - • ntpath - • os - • pathlib - • pickle - • pkgutil - • platform - • posixpath - • pprint - • py_compile - • pyglet - • pyglet.app - • pyglet.app.base - • pyglet.canvas - • pyglet.customtypes - • pyglet.extlibs.png - • pyglet.font - • pyglet.gl - • pyglet.graphics.vertexbuffer - • pyglet.input - • pyglet.input.base - • pyglet.input.controller - • pyglet.input.macos.darwin_hid - • pyglet.lib - • pyglet.libs.darwin.cocoapy.cocoatypes - • pyglet.libs.darwin.cocoapy.runtime - • pyglet.libs.win32.com - • pyglet.libs.win32.constants - • pyglet.libs.win32.types - • pyglet.media.codecs - • pyglet.media.codecs.ffmpeg - • pyglet.media.drivers - • pyglet.media.drivers.pulse.interface - • pyglet.resource - • pyglet.sprite - • pyglet.text.document - • pyglet.text.layout.base - • pyglet.text.layout.incremental - • pyglet.util - • pyglet.window - • pyglet.window.event - • pyglet.window.win32 - • pyglet.window.xlib - • pyi_rth_inspect.py - • pyi_rth_multiprocessing.py - • quopri - • re._compiler - • runpy - • sdl2.dll - • sdl2.endian - • sdl2.ext.algorithms - • sdl2.ext.compat - • sdl2.ext.resources - • sdl2.gamecontroller - • sdl2.guid - • sdl2.joystick - • sdl2.rwops - • sdl2.stdinc - • selectors - • shlex - • shutil - • socket - • ssl - • statistics - • subprocess - • tarfile - • tempfile - • threading - • tokenize - • traceback - • types - • typing - • urllib.parse - • urllib.request - • uuid - • warnings - • wave - • weakref - • xml.etree.ElementTree - • xml.parsers.expat - • xml.sax - • xml.sax._exceptions - • xml.sax.expatreader - • xml.sax.saxutils - • xmlrpc.client - • zipfile - • zipimport - -
- -
- -
- - tarfile -SourceModule
-imports: - argparse - • builtins - • bz2 - • copy - • grp - • gzip - • io - • lzma - • os - • pwd - • re - • shutil - • stat - • struct - • sys - • time - • warnings - • zlib - -
-
-imported by: - sdl2.ext.resources - • shutil - -
- -
- -
- - tempfile -SourceModule
-imports: - _thread - • errno - • functools - • io - • os - • random - • shutil - • stat - • sys - • types - • warnings - • weakref - -
-
-imported by: - PIL.EpsImagePlugin - • PIL.Image - • PIL.JpegImagePlugin - • ctypes.util - • importlib.resources._common - • multiprocessing.connection - • multiprocessing.heap - • multiprocessing.synchronize - • multiprocessing.util - • pyglet.media.codecs.gstreamer - • urllib.request - • urllib.response - -
- -
- -
- - termios /usr/lib64/python3.11/lib-dynload/termios.cpython-311-x86_64-linux-gnu.so
-imported by: - getpass - -
- -
- -
- - textwrap -SourceModule
-imports: - re - -
-
-imported by: - argparse - • importlib.metadata - • importlib.metadata._adapters - • traceback - -
- -
- -
- - threading -SourceModule
-imports: - _collections - • _thread - • _threading_local - • _weakrefset - • collections - • functools - • itertools - • os - • sys - • time - • traceback - • warnings - -
-
-imported by: - _threading_local - • concurrent.futures._base - • concurrent.futures.process - • concurrent.futures.thread - • http.cookiejar - • importlib.util - • logging - • multiprocessing.context - • multiprocessing.dummy - • multiprocessing.forkserver - • multiprocessing.heap - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.resource_sharer - • multiprocessing.resource_tracker - • multiprocessing.synchronize - • multiprocessing.util - • pyglet.app.base - • pyglet.app.xlib - • pyglet.canvas.xlib_vidmoderestore - • pyglet.gl.base - • pyglet.input.win32.xinput - • pyglet.media.codecs.gstreamer - • pyglet.media.drivers.pulse.adaptation - • pyglet.media.drivers.xaudio2.adaptation - • pyglet.media.drivers.xaudio2.interface - • pyglet.media.player_worker_thread - • queue - • subprocess - • zipfile - -
- -
- -
- - time (builtin module)
-imports: - _strptime - -
-
-imported by: - PIL.PdfImagePlugin - • PIL.PdfParser - • _datetime - • _strptime - • concurrent.futures._base - • datetime - • email._parseaddr - • email.generator - • email.utils - • gc - • gzip - • http.cookiejar - • logging - • multiprocessing.connection - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.queues - • multiprocessing.synchronize - • pprint - • pyglet.app.cocoa - • pyglet.clock - • pyglet.input.linux.evdev - • pyglet.input.win32.xinput - • pyglet.media.buffered_logger - • pyglet.media.player - • pyglet.media.player_worker_thread - • pyglet.text.caret - • pyglet.window - • queue - • random - • ssl - • subprocess - • tarfile - • threading - • urllib.request - • uuid - • xmlrpc.client - • zipfile - • zipimport - -
- -
- -
- - token -SourceModule
-imported by: - inspect - • tokenize - -
- -
- -
- - tokenize -SourceModule
-imports: - _tokenize - • argparse - • builtins - • codecs - • collections - • functools - • io - • itertools - • re - • sys - • token - -
-
-imported by: - importlib._bootstrap_external - • inspect - • linecache - -
- -
- -
- - traceback -SourceModule
-imports: - ast - • collections.abc - • contextlib - • itertools - • linecache - • sys - • textwrap - • unicodedata - -
-
-imported by: - concurrent.futures.process - • engine_demo.py - • http.cookiejar - • logging - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.util - • py_compile - • pyglet.canvas.xlib - • pyglet.libs.win32 - • pyglet.media.drivers - • threading - • warnings - -
- -
- -
- - tracemalloc -SourceModule
-imports: - _tracemalloc - • collections.abc - • fnmatch - • functools - • linecache - • os.path - • pickle - -
-
-imported by: - warnings - -
- -
- -
- - types -SourceModule
-imports: - _collections_abc - • functools - • sys - -
-
-imported by: - PIL.Image - • PIL.ImageFilter - • PIL.ImageMath - • PIL._typing - • _weakrefset - • concurrent.futures._base - • concurrent.futures.thread - • contextlib - • copy - • ctypes - • dataclasses - • dis - • email.headerregistry - • engine_demo.py - • enum - • functools - • importlib.metadata._functools - • importlib.resources._common - • importlib.resources._legacy - • importlib.util - • inspect - • logging - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.queues - • multiprocessing.shared_memory - • multiprocessing.spawn - • pickle - • pkgutil - • pprint - • pyglet - • queue - • subprocess - • tempfile - • typing - • urllib.parse - -
- -
- -
- - typing -SourceModule
-imports: - _typing - • abc - • collections - • collections.abc - • contextlib - • functools - • operator - • re - • sys - • types - • warnings - -
-
-imported by: - PIL.BlpImagePlugin - • PIL.BmpImagePlugin - • PIL.BufrStubImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.GifImagePlugin - • PIL.GimpGradientFile - • PIL.GimpPaletteFile - • PIL.GribStubImagePlugin - • PIL.Hdf5StubImagePlugin - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageCms - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageMath - • PIL.ImageMode - • PIL.ImageOps - • PIL.ImagePalette - • PIL.ImageQt - • PIL.ImageSequence - • PIL.ImageShow - • PIL.ImageTk - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PaletteFile - • PIL.PalmImagePlugin - • PIL.PcxImagePlugin - • PIL.PdfImagePlugin - • PIL.PdfParser - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.PsdImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.TiffTags - • PIL.WebPImagePlugin - • PIL.WmfImagePlugin - • PIL.XbmImagePlugin - • PIL._typing - • PIL._util - • PIL.features - • functools - • importlib.metadata - • importlib.metadata._meta - • importlib.resources._common - • importlib.resources._itertools - • importlib.resources._legacy - • importlib.resources.abc - • pyglet - • pyglet.app.base - • pyglet.canvas.base - • pyglet.clock - • pyglet.customtypes - • pyglet.event - • pyglet.font - • pyglet.font.base - • pyglet.font.directwrite - • pyglet.font.fontconfig - • pyglet.font.freetype - • pyglet.font.freetype_lib - • pyglet.font.quartz - • pyglet.font.user - • pyglet.font.win32 - • pyglet.gl - • pyglet.gl.base - • pyglet.gl.glx_info - • pyglet.gl.lib - • pyglet.gl.lib_agl - • pyglet.gl.lib_glx - • pyglet.gl.lib_wgl - • pyglet.gl.xlib - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.graphics.vertexarray - • pyglet.graphics.vertexbuffer - • pyglet.graphics.vertexdomain - • pyglet.gui.frame - • pyglet.gui.ninepatch - • pyglet.gui.widgets - • pyglet.image - • pyglet.image.animation - • pyglet.image.atlas - • pyglet.image.buffer - • pyglet.input - • pyglet.input.base - • pyglet.input.linux.evdev - • pyglet.input.win32.directinput - • pyglet.lib - • pyglet.libs.darwin.cocoapy.runtime - • pyglet.libs.darwin.coreaudio - • pyglet.libs.ioctl - • pyglet.libs.win32.context_managers - • pyglet.math - • pyglet.media - • pyglet.media.codecs.base - • pyglet.media.codecs.ffmpeg - • pyglet.media.devices.base - • pyglet.media.devices.win32 - • pyglet.media.drivers.openal.adaptation - • pyglet.media.drivers.pulse.adaptation - • pyglet.media.drivers.pulse.interface - • pyglet.media.drivers.xaudio2.adaptation - • pyglet.media.player - • pyglet.media.player_worker_thread - • pyglet.media.synthesis - • pyglet.model - • pyglet.model.codecs - • pyglet.resource - • pyglet.shapes - • pyglet.sprite - • pyglet.text - • pyglet.text.caret - • pyglet.text.document - • pyglet.text.formats.attributed - • pyglet.text.formats.html - • pyglet.text.formats.plaintext - • pyglet.text.formats.structured - • pyglet.text.layout.base - • pyglet.text.layout.incremental - • pyglet.text.layout.scrolling - • pyglet.text.runlist - • pyglet.util - • pyglet.window - • pyglet.window.cocoa - • pyglet.window.cocoa.pyglet_delegate - • pyglet.window.cocoa.pyglet_textview - • pyglet.window.cocoa.pyglet_view - • pyglet.window.cocoa.pyglet_window - • pyglet.window.event - • pyglet.window.headless - • pyglet.window.win32 - • pyglet.window.xlib - -
- -
- -
- - typing_extensions -MissingModule
-imported by: - PIL._typing - -
- -
- -
- - unicodedata /usr/lib64/python3.11/lib-dynload/unicodedata.cpython-311-x86_64-linux-gnu.so
-imported by: - encodings.idna - • pyglet.font.base - • pyglet.window.cocoa.pyglet_textview - • pyglet.window.win32 - • pyglet.window.xlib - • re._parser - • stringprep - • traceback - • urllib.parse - -
- -
- -
- - urllib -Package
-imported by: - email._header_value_parser - • urllib.error - • urllib.parse - • urllib.request - • urllib.response - -
- -
- -
- - urllib.error -SourceModule
-imports: - io - • urllib - • urllib.response - -
-
-imported by: - urllib.request - -
- -
- -
- - urllib.parse -SourceModule
-imports: - collections - • functools - • ipaddress - • re - • sys - • types - • unicodedata - • urllib - • warnings - -
-
-imported by: - email.utils - • http.client - • http.cookiejar - • mimetypes - • nturl2path - • pathlib - • pyglet.resource - • pyglet.window.xlib - • sdl2.ext.resources - • urllib.request - • xml.etree.ElementInclude - • xml.sax.saxutils - • xmlrpc.client - -
- -
- -
- - urllib.request -SourceModule
-imports: - _scproxy - • base64 - • bisect - • contextlib - • email - • email.utils - • fnmatch - • ftplib - • getpass - • hashlib - • http.client - • http.cookiejar - • io - • ipaddress - • mimetypes - • nturl2path - • os - • posixpath - • re - • socket - • ssl - • string - • sys - • tempfile - • time - • urllib - • urllib.error - • urllib.parse - • urllib.response - • warnings - • winreg - -
-
-imported by: - http.cookiejar - • pyglet.resource - • sdl2.ext.resources - • xml.sax.saxutils - -
- -
- -
- - urllib.response -SourceModule
-imports: - tempfile - • urllib - -
-
-imported by: - urllib.error - • urllib.request - -
- -
- -
- - urllib2 -MissingModule
-imported by: - sdl2.ext.resources - -
- -
- -
- - urlparse -MissingModule
-imported by: - sdl2.ext.resources - -
- -
- -
- - uuid -SourceModule
-imports: - _uuid - • enum - • hashlib - • io - • os - • platform - • random - • shutil - • socket - • subprocess - • sys - • time - -
-
-imported by: - sdl2.ext.ebs - -
- -
- -
- - vms_lib -MissingModule
-imported by: - platform - -
- -
- -
- - warnings -SourceModule
-imports: - _warnings - • builtins - • linecache - • re - • sys - • traceback - • tracemalloc - -
-
-imported by: - PIL.IcoImagePlugin - • PIL.Image - • PIL.JpegImagePlugin - • PIL.PngImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL._deprecate - • PIL.features - • argparse - • ast - • engine_demo.py - • enum - • ftplib - • getpass - • gettext - • gzip - • hashlib - • hmac - • http.client - • http.cookiejar - • importlib - • importlib._abc - • importlib.abc - • importlib.metadata - • importlib.resources._legacy - • importlib.util - • io - • locale - • logging - • multiprocessing.forkserver - • multiprocessing.pool - • multiprocessing.resource_tracker - • os - • pathlib - • pkgutil - • pyglet.canvas.headless - • pyglet.extlibs.png - • pyglet.font.freetype - • pyglet.font.quartz - • pyglet.font.win32 - • pyglet.gl.gl_info - • pyglet.gl.wgl_info - • pyglet.gl.xlib - • pyglet.graphics.shader - • pyglet.input.base - • pyglet.input.controller - • pyglet.input.linux.evdev - • pyglet.input.macos - • pyglet.input.macos.darwin_hid - • pyglet.input.win32 - • pyglet.input.win32.directinput - • pyglet.libs.win32 - • pyglet.math - • pyglet.media.codecs - • pyglet.media.codecs.pyogg - • pyglet.media.codecs.wmf - • pyglet.sprite - • random - • re - • re._parser - • runpy - • sdl2._internal - • sdl2.dll - • sdl2.ext.compat - • shlex - • sre_compile - • sre_constants - • sre_parse - • ssl - • subprocess - • tarfile - • tempfile - • threading - • typing - • urllib.parse - • urllib.request - • xml.etree.ElementTree - • zipfile - -
- -
- -
- - wave -SourceModule
-imports: - builtins - • collections - • struct - • sys - -
-
-imported by: - pyglet.media.codecs.wave - -
- -
- -
- - weakref -SourceModule
-imports: - _collections_abc - • _weakref - • _weakrefset - • atexit - • copy - • gc - • itertools - • sys - -
-
-imported by: - _threading_local - • concurrent.futures.process - • concurrent.futures.thread - • copy - • engine_demo.py - • functools - • logging - • multiprocessing.dummy - • multiprocessing.queues - • multiprocessing.sharedctypes - • multiprocessing.util - • pyglet.app - • pyglet.canvas - • pyglet.event - • pyglet.font - • pyglet.gl.base - • pyglet.graphics - • pyglet.graphics.shader - • pyglet.image - • pyglet.input.win32.xinput - • pyglet.libs.darwin.cocoapy.runtime - • pyglet.media.codecs.gstreamer - • pyglet.media.drivers.base - • pyglet.media.drivers.directsound.interface - • pyglet.media.drivers.openal.adaptation - • pyglet.media.drivers.openal.interface - • pyglet.media.drivers.pulse.adaptation - • pyglet.media.drivers.pulse.interface - • pyglet.media.drivers.xaudio2.interface - • pyglet.resource - • tempfile - • xml.etree.ElementTree - • xml.sax.expatreader - -
- -
- -
- - winreg -MissingModule
-imported by: - importlib._bootstrap_external - • mimetypes - • platform - • urllib.request - -
- -
- -
- - xml -Package
-imports: - xml.sax.expatreader - • xml.sax.xmlreader - -
-
-imported by: - xml.etree - • xml.parsers - • xml.sax - -
- -
- -
- - xml.etree -Package
-imports: - xml - • xml.etree - • xml.etree.ElementPath - • xml.etree.ElementTree - -
-
-imported by: - xml.etree - • xml.etree.ElementInclude - • xml.etree.ElementPath - • xml.etree.ElementTree - • xml.etree.cElementTree - -
- -
- -
- - xml.etree.ElementInclude -SourceModule
-imports: - copy - • urllib.parse - • xml.etree - • xml.etree.ElementTree - -
-
-imported by: - _elementtree - -
- -
- -
- - xml.etree.ElementPath -SourceModule
-imports: - re - • xml.etree - -
-
-imported by: - _elementtree - • xml.etree - • xml.etree.ElementTree - -
- -
- -
- - xml.etree.ElementTree -SourceModule
-imports: - _elementtree - • collections - • collections.abc - • contextlib - • io - • pyexpat - • re - • sys - • warnings - • weakref - • xml.etree - • xml.etree.ElementPath - • xml.parsers - • xml.parsers.expat - -
-
-imported by: - PIL.Image - • _elementtree - • enne2engine.tilemanager - • xml.etree - • xml.etree.ElementInclude - • xml.etree.cElementTree - -
- -
- -
- - xml.etree.cElementTree -SourceModule
-imports: - xml.etree - • xml.etree.ElementTree - -
-
-imported by: - _elementtree - -
- -
- -
- - xml.parsers -Package
-imports: - xml - • xml.parsers.expat - -
-
-imported by: - xml.etree.ElementTree - • xml.parsers.expat - • xml.sax.expatreader - • xmlrpc.client - -
- -
- -
- - xml.parsers.expat -SourceModule
-imports: - pyexpat - • sys - • xml.parsers - -
-
-imported by: - xml.etree.ElementTree - • xml.parsers - • xml.sax.expatreader - • xmlrpc.client - -
- -
- -
- - xml.sax -Package
-imports: - 'org.python' - • io - • os - • sys - • xml - • xml.sax - • xml.sax._exceptions - • xml.sax.expatreader - • xml.sax.handler - • xml.sax.saxutils - • xml.sax.xmlreader - -
-
-imported by: - xml.sax - • xml.sax._exceptions - • xml.sax.expatreader - • xml.sax.handler - • xml.sax.saxutils - • xml.sax.xmlreader - -
- -
- -
- - xml.sax._exceptions -SourceModule
-imports: - 'java.lang' - • sys - • xml.sax - -
-
-imported by: - xml.sax - • xml.sax.expatreader - • xml.sax.xmlreader - -
- -
- -
- - xml.sax.expatreader -SourceModule
-imports: - _weakref - • sys - • weakref - • xml.parsers - • xml.parsers.expat - • xml.sax - • xml.sax._exceptions - • xml.sax.handler - • xml.sax.saxutils - • xml.sax.xmlreader - -
-
-imported by: - xml - • xml.sax - -
- -
- -
- - xml.sax.handler -SourceModule
-imports: - xml.sax - -
-
-imported by: - xml.sax - • xml.sax.expatreader - • xml.sax.saxutils - • xml.sax.xmlreader - -
- -
- -
- - xml.sax.saxutils -SourceModule
-imports: - codecs - • io - • os - • sys - • urllib.parse - • urllib.request - • xml.sax - • xml.sax.handler - • xml.sax.xmlreader - -
-
-imported by: - xml.sax - • xml.sax.expatreader - • xml.sax.xmlreader - -
- -
- -
- - xml.sax.xmlreader -SourceModule
-imports: - xml.sax - • xml.sax._exceptions - • xml.sax.handler - • xml.sax.saxutils - -
-
-imported by: - xml - • xml.sax - • xml.sax.expatreader - • xml.sax.saxutils - -
- -
- -
- - xmlrpc -Package
-imported by: - xmlrpc.client - -
- -
- -
- - xmlrpc.client -SourceModule
-imports: - base64 - • datetime - • decimal - • errno - • gzip - • http.client - • io - • sys - • time - • urllib.parse - • xml.parsers - • xml.parsers.expat - • xmlrpc - -
-
-imported by: - multiprocessing.connection - -
- -
- -
- - zipfile -SourceModule
-imports: - argparse - • binascii - • bz2 - • contextlib - • importlib.util - • io - • itertools - • lzma - • os - • pathlib - • posixpath - • py_compile - • re - • shutil - • stat - • struct - • sys - • threading - • time - • warnings - • zlib - -
-
-imported by: - importlib.metadata - • importlib.resources.readers - • pyglet.resource - • pyi_rth_inspect.py - • sdl2.ext.resources - • shutil - -
- -
- -
- - zipimport -SourceModule
-imports: - _frozen_importlib - • _frozen_importlib_external - • _imp - • _io - • _warnings - • importlib.readers - • marshal - • sys - • time - • zlib - -
-
-imported by: - pkgutil - -
- -
- -
- - zlib /usr/lib64/python3.11/lib-dynload/zlib.cpython-311-x86_64-linux-gnu.so
-imported by: - PIL.PdfParser - • PIL.PngImagePlugin - • encodings.zlib_codec - • gzip - • pyglet.extlibs.png - • shutil - • tarfile - • zipfile - • zipimport - -
- -
- - - diff --git a/conf/keybinding_paused.json b/conf/keybinding_paused.json deleted file mode 100644 index 6ee1b3e..0000000 --- a/conf/keybinding_paused.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - - "reset_game": ["Return", 13], - "pause": ["P", 16], - "quit": ["Q", 12] -} \ No newline at end of file diff --git a/conf/keybinding_start_menu.json b/conf/keybinding_start_menu.json deleted file mode 100644 index e392d3f..0000000 --- a/conf/keybinding_start_menu.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - - "start_game": ["Return", 13], - "toggle_full_screen": ["F"], - "quit": ["Q", 12] -} \ No newline at end of file diff --git a/conf/keymap_game.json b/conf/keymap_game.json deleted file mode 100644 index ec12464..0000000 --- a/conf/keymap_game.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - - "keydown:up": "scroll_up", - "keydown:down": "scroll_down", - "keydown:left": "scroll_left", - "keydown:right": "scroll_right" -} \ No newline at end of file diff --git a/dist/engine_demo b/dist/engine_demo deleted file mode 100755 index 9ef8832..0000000 Binary files a/dist/engine_demo and /dev/null differ diff --git a/engine_demo b/engine_demo deleted file mode 100755 index 9ef8832..0000000 Binary files a/engine_demo and /dev/null differ diff --git a/engine_demo.spec b/engine_demo.spec deleted file mode 100644 index d279408..0000000 --- a/engine_demo.spec +++ /dev/null @@ -1,38 +0,0 @@ -# -*- mode: python ; coding: utf-8 -*- - - -a = Analysis( - ['engine_demo.py'], - pathex=[], - binaries=[], - datas=[], - hiddenimports=[], - hookspath=[], - hooksconfig={}, - runtime_hooks=[], - excludes=[], - noarchive=False, - optimize=0, -) -pyz = PYZ(a.pure) - -exe = EXE( - pyz, - a.scripts, - a.binaries, - a.datas, - [], - name='engine_demo', - debug=False, - bootloader_ignore_signals=False, - strip=False, - upx=True, - upx_exclude=[], - runtime_tmpdir=None, - console=True, - disable_windowed_traceback=False, - argv_emulation=False, - target_arch=None, - codesign_identity=None, - entitlements_file=None, -)