diff --git a/Gamertag.py b/Gamertag.py index cc16bf7..c0f70a9 100644 --- a/Gamertag.py +++ b/Gamertag.py @@ -1,11 +1,16 @@ -player_gamertag = input("print please enter you gamer tag") -awnser = input(f"so your gamer tag is {player_gamertag}? (yes/no) ") -if awnser == 'yes': - print("Great, then let's begin") +player_gamertag = input("Please enter your gamer tag: ") +awnser = input(f"So your gamer tag is {player_gamertag}? (yes/no) ") -elif awnser == 'no': - print("Oh ok let's try again") +while awnser.lower() not in ['yes', 'no']: + print("Sorry, I only accept 'yes' or 'no' as an answer.") + awnser = input("Please enter 'yes' or 'no': ") + +if awnser.lower() == 'yes': + print("Great, then let's begin") +elif awnser.lower() == 'no': + print("Oh, okay. Let's try again.") player_gamertag = input("Please enter your gamer tag: ") else: - print("sorry I only accept yes or no as an awnser") + print("Sorry, I only accept 'yes' or 'no' as an answer.") + \ No newline at end of file diff --git a/Tucker/Dungeon game.py b/Tucker/Dungeon game.py new file mode 100644 index 0000000..e5f5306 --- /dev/null +++ b/Tucker/Dungeon game.py @@ -0,0 +1,56 @@ +import os + +def load_player_data(player_name, character_name): + player_file = f"{player_name}_{character_name}.txt" + if os.path.exists(player_file): + with open(player_file, 'r') as file: + player_data = file.readlines() + return [data.strip() for data in player_data] + else: + print(f"Player file '{player_file}' not found.") + return None + +def save_player_data(player_name, character_name, data): + player_file = f"{player_name}_{character_name}.txt" + with open(player_file, 'w') as file: + for line in data: + file.write(line + '\n') + +def create_new_character(player_name): + character_name = input("Enter character name: ") + gamer_tag = input("Please enter your gamer tag: ") + answer = input(f"So your gamer tag is {gamer_tag}? (yes/no) ") + while answer.lower() not in ['yes', 'no']: + print("Sorry, I only accept 'yes' or 'no' as an answer.") + answer = input("Please enter 'yes' or 'no': ") + if answer.lower() == 'no': + gamer_tag = input("Please enter your gamer tag: ") + print(f"Hello {gamer_tag}") + player_race = input("Are you a human, dwarf, or elf? (human/dwarf/elf): ").lower() + player_category = input(f"Is your {player_race} a ranged {player_race} or a close combat {player_race}? (ranged/close combat): ").lower() + if player_category == "close combat": + player_class = input("Are you a barbarian with increased attack power and less intelligence, a warrior with balanced stats, or a rogue with increased intelligence and less attack power? (barbarian/warrior/rogue): ").lower() + if player_class == "barbarian": + weapon_skill = input(f"Will your {gamer_tag} be skilled with axes, swords, or hammers? (axes/swords/hammers): ").lower() + elif player_class == "warrior": + weapon_skill = input(f"Will your {gamer_tag} be skilled with longswords, swords, or daggers? (longswords/swords/daggers): ").lower() + elif player_category == "ranged": + player_class = input(f"Are you an archer with increased intelligence and less attack power or a dead shot with increased attack power and less intelligence? (archer/dead shot): ").lower() + if player_class == "archer": + weapon_skill = input(f"Will your {gamer_tag} be skilled with longbows, throwing daggers, or shortbows? (longbows/throwing daggers/shortbows): ").lower() + elif player_class == "dead shot": + weapon_skill = input(f"Will your {gamer_tag} be skilled with crossbows, slings, or magic bows? (crossbows/slings/magic bows): ").lower() + return [gamer_tag, player_race, player_category, player_class, weapon_skill] + +def main(): + player_name = input("Enter player name: ") + characters = int(input("How many characters do you want to create?: ")) + for i in range(characters): + print(f"Creating character {i + 1}...") + character_data = create_new_character(player_name) + save_player_data(player_name, f"character_{i + 1}", character_data) + # Continue with your story or additional code here + print("You wake up on a shore not remebering anything") + +if __name__ == "__main__": + main() diff --git a/Tucker/Path game.py b/Tucker/Path game.py index d9cb998..1b40ddb 100644 --- a/Tucker/Path game.py +++ b/Tucker/Path game.py @@ -14,7 +14,7 @@ if path == "forest": while cub_chioce != "care for it" and cub_chioce != "leave it": if cub_chioce == "care for it": cub_name = input("you take the cub home. What will you name it?:") - print(f"you and {cub_name} live a happily ever after. THE END") + input(f"you and {cub_name} live a happily ever after. THE END") exit() elif cub_chioce == "leave it": print("you return home out of the forest never knowing what happened to the cub. THE END") diff --git a/Tucker/Path game.spec b/Tucker/Path game.spec new file mode 100644 index 0000000..61ae07b --- /dev/null +++ b/Tucker/Path game.spec @@ -0,0 +1,43 @@ +# -*- mode: python ; coding: utf-8 -*- + + +a = Analysis( + ['Path game.py'], + pathex=[], + binaries=[], + datas=[], + hiddenimports=[], + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + noarchive=False, +) +pyz = PYZ(a.pure) + +exe = EXE( + pyz, + a.scripts, + [], + exclude_binaries=True, + name='Path game', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + console=True, + disable_windowed_traceback=False, + argv_emulation=False, + target_arch=None, + codesign_identity=None, + entitlements_file=None, +) +coll = COLLECT( + exe, + a.binaries, + a.datas, + strip=False, + upx=True, + upx_exclude=[], + name='Path game', +) diff --git a/Tucker/TJ999L.py b/Tucker/TJ999L.py new file mode 100644 index 0000000..a2ebfae --- /dev/null +++ b/Tucker/TJ999L.py @@ -0,0 +1,32 @@ +print("Welcome back Tucker! This is random 99 overal player selection!:") +start = input("Thank you for the kind words now let's begin shall we? (yes/no)") +if start == "yes": + from matplotlib import pyplot as plt + import numpy as np + + # List of NFL 99 overall players in Madden 24 (as an example, names might need updating based on the actual roster) + players_99 = [ + "Patrick Mahomes", + "Aaron Donald", + "Davante Adams", + "T.J. Watt", + "Travis Kelce", + "Jalen Ramsey", + "Myles Garrett", + "Tyreek Hill" + ] + + # Generating colors + colors = plt.cm.rainbow(np.linspace(0, 1, len(players_99))) + + # Creating the pie chart + fig, ax = plt.subplots() + ax.pie([1] * len(players_99), labels=players_99, autopct='%1.1f%%', startangle=90, colors=colors) + ax.axis('equal') # Equal aspect ratio ensures that pie is drawn as a circle. + + # Display the wheel + plt.title("NFL 99 Overall Players in Madden 24") + plt.show() + +elif start == "no": + exit \ No newline at end of file diff --git a/Tucker/build/Path game/Analysis-00.toc b/Tucker/build/Path game/Analysis-00.toc new file mode 100644 index 0000000..f3d7b7f --- /dev/null +++ b/Tucker/build/Path game/Analysis-00.toc @@ -0,0 +1,365 @@ +(['C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\Path game.py'], + ['C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker'], + [], + ['C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks'], + {}, + [], + [], + False, + {}, + [], + [], + '3.12.2 (tags/v3.12.2:6abddd9, Feb 6 2024, 21:26:36) [MSC v.1937 64 bit ' + '(AMD64)]', + [('pyi_rth_inspect', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', + 'PYSOURCE'), + ('Path game', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\Path game.py', + 'PYSOURCE')], + [('inspect', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\inspect.py', + 'PYMODULE'), + ('importlib', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\__init__.py', + 'PYMODULE'), + ('importlib._bootstrap_external', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\_bootstrap_external.py', + 'PYMODULE'), + ('importlib.metadata', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\__init__.py', + 'PYMODULE'), + ('typing', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\typing.py', + 'PYMODULE'), + ('importlib.abc', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\abc.py', + 'PYMODULE'), + ('importlib.resources.abc', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\abc.py', + 'PYMODULE'), + ('importlib.resources', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\__init__.py', + 'PYMODULE'), + ('importlib.resources._legacy', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_legacy.py', + 'PYMODULE'), + ('importlib.resources._common', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_common.py', + 'PYMODULE'), + ('importlib.resources._adapters', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_adapters.py', + 'PYMODULE'), + ('tempfile', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tempfile.py', + 'PYMODULE'), + ('random', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\random.py', + 'PYMODULE'), + ('_strptime', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_strptime.py', + 'PYMODULE'), + ('datetime', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\datetime.py', + 'PYMODULE'), + ('_pydatetime', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_pydatetime.py', + 'PYMODULE'), + ('calendar', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\calendar.py', + 'PYMODULE'), + ('statistics', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\statistics.py', + 'PYMODULE'), + ('decimal', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\decimal.py', + 'PYMODULE'), + ('_pydecimal', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_pydecimal.py', + 'PYMODULE'), + ('contextvars', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\contextvars.py', + 'PYMODULE'), + ('fractions', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\fractions.py', + 'PYMODULE'), + ('numbers', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\numbers.py', + 'PYMODULE'), + ('hashlib', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\hashlib.py', + 'PYMODULE'), + ('logging', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\logging\\__init__.py', + 'PYMODULE'), + ('pickle', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\pickle.py', + 'PYMODULE'), + ('pprint', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\pprint.py', + 'PYMODULE'), + ('dataclasses', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\dataclasses.py', + 'PYMODULE'), + ('copy', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\copy.py', + 'PYMODULE'), + ('_compat_pickle', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_compat_pickle.py', + 'PYMODULE'), + ('struct', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\struct.py', + 'PYMODULE'), + ('threading', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\threading.py', + 'PYMODULE'), + ('_threading_local', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_threading_local.py', + 'PYMODULE'), + ('string', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\string.py', + 'PYMODULE'), + ('bisect', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\bisect.py', + 'PYMODULE'), + ('shutil', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\shutil.py', + 'PYMODULE'), + ('tarfile', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tarfile.py', + 'PYMODULE'), + ('gzip', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\gzip.py', + 'PYMODULE'), + ('_compression', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_compression.py', + 'PYMODULE'), + ('lzma', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\lzma.py', + 'PYMODULE'), + ('bz2', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\bz2.py', + 'PYMODULE'), + ('fnmatch', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\fnmatch.py', + 'PYMODULE'), + ('importlib._abc', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\_abc.py', + 'PYMODULE'), + ('importlib.metadata._itertools', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_itertools.py', + 'PYMODULE'), + ('importlib.metadata._functools', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_functools.py', + 'PYMODULE'), + ('importlib.metadata._collections', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_collections.py', + 'PYMODULE'), + ('importlib.metadata._meta', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_meta.py', + 'PYMODULE'), + ('importlib.metadata._adapters', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_adapters.py', + 'PYMODULE'), + ('importlib.metadata._text', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_text.py', + 'PYMODULE'), + ('email.message', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\message.py', + 'PYMODULE'), + ('email.policy', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\policy.py', + 'PYMODULE'), + ('email.contentmanager', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\contentmanager.py', + 'PYMODULE'), + ('email.quoprimime', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\quoprimime.py', + 'PYMODULE'), + ('email.headerregistry', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\headerregistry.py', + 'PYMODULE'), + ('email._header_value_parser', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_header_value_parser.py', + 'PYMODULE'), + ('urllib', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\urllib\\__init__.py', + 'PYMODULE'), + ('email.iterators', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\iterators.py', + 'PYMODULE'), + ('email.generator', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\generator.py', + 'PYMODULE'), + ('email._encoded_words', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_encoded_words.py', + 'PYMODULE'), + ('base64', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\base64.py', + 'PYMODULE'), + ('getopt', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\getopt.py', + 'PYMODULE'), + ('gettext', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\gettext.py', + 'PYMODULE'), + ('email.charset', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\charset.py', + 'PYMODULE'), + ('email.encoders', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\encoders.py', + 'PYMODULE'), + ('email.base64mime', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\base64mime.py', + 'PYMODULE'), + ('email._policybase', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_policybase.py', + 'PYMODULE'), + ('email.header', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\header.py', + 'PYMODULE'), + ('email.errors', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\errors.py', + 'PYMODULE'), + ('email.utils', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\utils.py', + 'PYMODULE'), + ('email._parseaddr', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_parseaddr.py', + 'PYMODULE'), + ('urllib.parse', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\urllib\\parse.py', + 'PYMODULE'), + ('ipaddress', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\ipaddress.py', + 'PYMODULE'), + ('socket', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\socket.py', + 'PYMODULE'), + ('selectors', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\selectors.py', + 'PYMODULE'), + ('quopri', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\quopri.py', + 'PYMODULE'), + ('contextlib', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\contextlib.py', + 'PYMODULE'), + ('textwrap', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\textwrap.py', + 'PYMODULE'), + ('zipfile', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\zipfile\\__init__.py', + 'PYMODULE'), + ('zipfile._path', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\zipfile\\_path\\__init__.py', + 'PYMODULE'), + ('zipfile._path.glob', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\zipfile\\_path\\glob.py', + 'PYMODULE'), + ('py_compile', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\py_compile.py', + 'PYMODULE'), + ('importlib.util', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\util.py', + 'PYMODULE'), + ('pathlib', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\pathlib.py', + 'PYMODULE'), + ('email', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\__init__.py', + 'PYMODULE'), + ('email.parser', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\parser.py', + 'PYMODULE'), + ('email.feedparser', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\feedparser.py', + 'PYMODULE'), + ('csv', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\csv.py', + 'PYMODULE'), + ('importlib.readers', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\readers.py', + 'PYMODULE'), + ('importlib.resources.readers', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\readers.py', + 'PYMODULE'), + ('importlib.resources._itertools', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_itertools.py', + 'PYMODULE'), + ('importlib._bootstrap', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\_bootstrap.py', + 'PYMODULE'), + ('argparse', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\argparse.py', + 'PYMODULE'), + ('token', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\token.py', + 'PYMODULE'), + ('tokenize', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tokenize.py', + 'PYMODULE'), + ('importlib.machinery', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\machinery.py', + 'PYMODULE'), + ('dis', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\dis.py', + 'PYMODULE'), + ('opcode', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\opcode.py', + 'PYMODULE'), + ('ast', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\ast.py', + 'PYMODULE'), + ('tracemalloc', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tracemalloc.py', + 'PYMODULE'), + ('subprocess', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\subprocess.py', + 'PYMODULE'), + ('signal', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\signal.py', + 'PYMODULE'), + ('_py_abc', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_py_abc.py', + 'PYMODULE'), + ('stringprep', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\stringprep.py', + 'PYMODULE')], + [('python312.dll', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\python312.dll', + 'BINARY'), + ('_decimal.pyd', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_decimal.pyd', + 'EXTENSION'), + ('_hashlib.pyd', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_hashlib.pyd', + 'EXTENSION'), + ('_lzma.pyd', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_lzma.pyd', + 'EXTENSION'), + ('_bz2.pyd', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_bz2.pyd', + 'EXTENSION'), + ('unicodedata.pyd', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\unicodedata.pyd', + 'EXTENSION'), + ('select.pyd', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\select.pyd', + 'EXTENSION'), + ('_socket.pyd', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_socket.pyd', + 'EXTENSION'), + ('VCRUNTIME140.dll', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\VCRUNTIME140.dll', + 'BINARY'), + ('libcrypto-3.dll', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\libcrypto-3.dll', + 'BINARY')], + [], + [], + [('base_library.zip', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\base_library.zip', + 'DATA')]) diff --git a/Tucker/build/Path game/COLLECT-00.toc b/Tucker/build/Path game/COLLECT-00.toc new file mode 100644 index 0000000..313936a --- /dev/null +++ b/Tucker/build/Path game/COLLECT-00.toc @@ -0,0 +1,38 @@ +([('Path game.exe', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\Path game.exe', + 'EXECUTABLE'), + ('python312.dll', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\python312.dll', + 'BINARY'), + ('_decimal.pyd', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_decimal.pyd', + 'EXTENSION'), + ('_hashlib.pyd', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_hashlib.pyd', + 'EXTENSION'), + ('_lzma.pyd', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_lzma.pyd', + 'EXTENSION'), + ('_bz2.pyd', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_bz2.pyd', + 'EXTENSION'), + ('unicodedata.pyd', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\unicodedata.pyd', + 'EXTENSION'), + ('select.pyd', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\select.pyd', + 'EXTENSION'), + ('_socket.pyd', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_socket.pyd', + 'EXTENSION'), + ('VCRUNTIME140.dll', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\VCRUNTIME140.dll', + 'BINARY'), + ('libcrypto-3.dll', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\libcrypto-3.dll', + 'BINARY'), + ('base_library.zip', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\base_library.zip', + 'DATA')],) diff --git a/Tucker/build/Path game/EXE-00.toc b/Tucker/build/Path game/EXE-00.toc new file mode 100644 index 0000000..770a11d --- /dev/null +++ b/Tucker/build/Path game/EXE-00.toc @@ -0,0 +1,76 @@ +('C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\Path game.exe', + True, + False, + True, + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-console.ico', + None, + False, + False, + b'\n\n \n \n \n \n \n \n \n ' + b'\n <' + b'application>\n \n \n ' + b' \n \n \n \n <' + b'/compatibility>\n ' + b'\n \n true\n \n \n \n \n \n \n \n', + True, + False, + None, + None, + None, + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\Path game.pkg', + [('pyi-contents-directory _internal', '', 'OPTION'), + ('PYZ-00.pyz', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\PYZ-00.pyz', + 'PYZ'), + ('struct', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\localpycs\\struct.pyc', + 'PYMODULE'), + ('pyimod01_archive', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\localpycs\\pyimod01_archive.pyc', + 'PYMODULE'), + ('pyimod02_importers', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\localpycs\\pyimod02_importers.pyc', + 'PYMODULE'), + ('pyimod03_ctypes', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\localpycs\\pyimod03_ctypes.pyc', + 'PYMODULE'), + ('pyimod04_pywin32', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\localpycs\\pyimod04_pywin32.pyc', + 'PYMODULE'), + ('pyiboot01_bootstrap', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py', + 'PYSOURCE'), + ('pyi_rth_inspect', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', + 'PYSOURCE'), + ('Path game', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\Path game.py', + 'PYSOURCE')], + [], + False, + False, + 1710203189, + [('run.exe', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\run.exe', + 'EXECUTABLE')], + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\python312.dll') diff --git a/Tucker/build/Path game/PKG-00.toc b/Tucker/build/Path game/PKG-00.toc new file mode 100644 index 0000000..30ee3e0 --- /dev/null +++ b/Tucker/build/Path game/PKG-00.toc @@ -0,0 +1,53 @@ +('C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\Path game.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', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\PYZ-00.pyz', + 'PYZ'), + ('struct', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\localpycs\\struct.pyc', + 'PYMODULE'), + ('pyimod01_archive', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\localpycs\\pyimod01_archive.pyc', + 'PYMODULE'), + ('pyimod02_importers', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\localpycs\\pyimod02_importers.pyc', + 'PYMODULE'), + ('pyimod03_ctypes', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\localpycs\\pyimod03_ctypes.pyc', + 'PYMODULE'), + ('pyimod04_pywin32', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\localpycs\\pyimod04_pywin32.pyc', + 'PYMODULE'), + ('pyiboot01_bootstrap', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py', + 'PYSOURCE'), + ('pyi_rth_inspect', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', + 'PYSOURCE'), + ('Path game', + 'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\Path game.py', + 'PYSOURCE')], + 'python312.dll', + True, + False, + False, + [], + None, + None, + None) diff --git a/Tucker/build/Path game/PYZ-00.pyz b/Tucker/build/Path game/PYZ-00.pyz new file mode 100644 index 0000000..d3302b6 Binary files /dev/null and b/Tucker/build/Path game/PYZ-00.pyz differ diff --git a/Tucker/build/Path game/PYZ-00.toc b/Tucker/build/Path game/PYZ-00.toc new file mode 100644 index 0000000..5b3d190 --- /dev/null +++ b/Tucker/build/Path game/PYZ-00.toc @@ -0,0 +1,308 @@ +('C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' + 'game\\PYZ-00.pyz', + [('_compat_pickle', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_compat_pickle.py', + 'PYMODULE'), + ('_compression', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_compression.py', + 'PYMODULE'), + ('_py_abc', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_py_abc.py', + 'PYMODULE'), + ('_pydatetime', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_pydatetime.py', + 'PYMODULE'), + ('_pydecimal', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_pydecimal.py', + 'PYMODULE'), + ('_strptime', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_strptime.py', + 'PYMODULE'), + ('_threading_local', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_threading_local.py', + 'PYMODULE'), + ('argparse', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\argparse.py', + 'PYMODULE'), + ('ast', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\ast.py', + 'PYMODULE'), + ('base64', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\base64.py', + 'PYMODULE'), + ('bisect', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\bisect.py', + 'PYMODULE'), + ('bz2', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\bz2.py', + 'PYMODULE'), + ('calendar', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\calendar.py', + 'PYMODULE'), + ('contextlib', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\contextlib.py', + 'PYMODULE'), + ('contextvars', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\contextvars.py', + 'PYMODULE'), + ('copy', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\copy.py', + 'PYMODULE'), + ('csv', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\csv.py', + 'PYMODULE'), + ('dataclasses', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\dataclasses.py', + 'PYMODULE'), + ('datetime', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\datetime.py', + 'PYMODULE'), + ('decimal', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\decimal.py', + 'PYMODULE'), + ('dis', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\dis.py', + 'PYMODULE'), + ('email', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\__init__.py', + 'PYMODULE'), + ('email._encoded_words', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_encoded_words.py', + 'PYMODULE'), + ('email._header_value_parser', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_header_value_parser.py', + 'PYMODULE'), + ('email._parseaddr', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_parseaddr.py', + 'PYMODULE'), + ('email._policybase', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_policybase.py', + 'PYMODULE'), + ('email.base64mime', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\base64mime.py', + 'PYMODULE'), + ('email.charset', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\charset.py', + 'PYMODULE'), + ('email.contentmanager', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\contentmanager.py', + 'PYMODULE'), + ('email.encoders', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\encoders.py', + 'PYMODULE'), + ('email.errors', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\errors.py', + 'PYMODULE'), + ('email.feedparser', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\feedparser.py', + 'PYMODULE'), + ('email.generator', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\generator.py', + 'PYMODULE'), + ('email.header', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\header.py', + 'PYMODULE'), + ('email.headerregistry', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\headerregistry.py', + 'PYMODULE'), + ('email.iterators', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\iterators.py', + 'PYMODULE'), + ('email.message', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\message.py', + 'PYMODULE'), + ('email.parser', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\parser.py', + 'PYMODULE'), + ('email.policy', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\policy.py', + 'PYMODULE'), + ('email.quoprimime', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\quoprimime.py', + 'PYMODULE'), + ('email.utils', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\utils.py', + 'PYMODULE'), + ('fnmatch', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\fnmatch.py', + 'PYMODULE'), + ('fractions', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\fractions.py', + 'PYMODULE'), + ('getopt', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\getopt.py', + 'PYMODULE'), + ('gettext', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\gettext.py', + 'PYMODULE'), + ('gzip', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\gzip.py', + 'PYMODULE'), + ('hashlib', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\hashlib.py', + 'PYMODULE'), + ('importlib', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\__init__.py', + 'PYMODULE'), + ('importlib._abc', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\_abc.py', + 'PYMODULE'), + ('importlib._bootstrap', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\_bootstrap.py', + 'PYMODULE'), + ('importlib._bootstrap_external', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\_bootstrap_external.py', + 'PYMODULE'), + ('importlib.abc', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\abc.py', + 'PYMODULE'), + ('importlib.machinery', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\machinery.py', + 'PYMODULE'), + ('importlib.metadata', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\__init__.py', + 'PYMODULE'), + ('importlib.metadata._adapters', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_adapters.py', + 'PYMODULE'), + ('importlib.metadata._collections', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_collections.py', + 'PYMODULE'), + ('importlib.metadata._functools', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_functools.py', + 'PYMODULE'), + ('importlib.metadata._itertools', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_itertools.py', + 'PYMODULE'), + ('importlib.metadata._meta', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_meta.py', + 'PYMODULE'), + ('importlib.metadata._text', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_text.py', + 'PYMODULE'), + ('importlib.readers', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\readers.py', + 'PYMODULE'), + ('importlib.resources', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\__init__.py', + 'PYMODULE'), + ('importlib.resources._adapters', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_adapters.py', + 'PYMODULE'), + ('importlib.resources._common', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_common.py', + 'PYMODULE'), + ('importlib.resources._itertools', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_itertools.py', + 'PYMODULE'), + ('importlib.resources._legacy', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_legacy.py', + 'PYMODULE'), + ('importlib.resources.abc', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\abc.py', + 'PYMODULE'), + ('importlib.resources.readers', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\readers.py', + 'PYMODULE'), + ('importlib.util', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\util.py', + 'PYMODULE'), + ('inspect', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\inspect.py', + 'PYMODULE'), + ('ipaddress', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\ipaddress.py', + 'PYMODULE'), + ('logging', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\logging\\__init__.py', + 'PYMODULE'), + ('lzma', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\lzma.py', + 'PYMODULE'), + ('numbers', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\numbers.py', + 'PYMODULE'), + ('opcode', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\opcode.py', + 'PYMODULE'), + ('pathlib', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\pathlib.py', + 'PYMODULE'), + ('pickle', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\pickle.py', + 'PYMODULE'), + ('pprint', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\pprint.py', + 'PYMODULE'), + ('py_compile', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\py_compile.py', + 'PYMODULE'), + ('quopri', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\quopri.py', + 'PYMODULE'), + ('random', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\random.py', + 'PYMODULE'), + ('selectors', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\selectors.py', + 'PYMODULE'), + ('shutil', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\shutil.py', + 'PYMODULE'), + ('signal', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\signal.py', + 'PYMODULE'), + ('socket', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\socket.py', + 'PYMODULE'), + ('statistics', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\statistics.py', + 'PYMODULE'), + ('string', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\string.py', + 'PYMODULE'), + ('stringprep', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\stringprep.py', + 'PYMODULE'), + ('subprocess', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\subprocess.py', + 'PYMODULE'), + ('tarfile', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tarfile.py', + 'PYMODULE'), + ('tempfile', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tempfile.py', + 'PYMODULE'), + ('textwrap', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\textwrap.py', + 'PYMODULE'), + ('threading', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\threading.py', + 'PYMODULE'), + ('token', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\token.py', + 'PYMODULE'), + ('tokenize', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tokenize.py', + 'PYMODULE'), + ('tracemalloc', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tracemalloc.py', + 'PYMODULE'), + ('typing', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\typing.py', + 'PYMODULE'), + ('urllib', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\urllib\\__init__.py', + 'PYMODULE'), + ('urllib.parse', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\urllib\\parse.py', + 'PYMODULE'), + ('zipfile', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\zipfile\\__init__.py', + 'PYMODULE'), + ('zipfile._path', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\zipfile\\_path\\__init__.py', + 'PYMODULE'), + ('zipfile._path.glob', + 'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\zipfile\\_path\\glob.py', + 'PYMODULE')]) diff --git a/Tucker/build/Path game/Path game.exe b/Tucker/build/Path game/Path game.exe new file mode 100644 index 0000000..7f89160 Binary files /dev/null and b/Tucker/build/Path game/Path game.exe differ diff --git a/Tucker/build/Path game/Path game.pkg b/Tucker/build/Path game/Path game.pkg new file mode 100644 index 0000000..9117201 Binary files /dev/null and b/Tucker/build/Path game/Path game.pkg differ diff --git a/Tucker/build/Path game/base_library.zip b/Tucker/build/Path game/base_library.zip new file mode 100644 index 0000000..70b22e6 Binary files /dev/null and b/Tucker/build/Path game/base_library.zip differ diff --git a/Tucker/build/Path game/localpycs/pyimod01_archive.pyc b/Tucker/build/Path game/localpycs/pyimod01_archive.pyc new file mode 100644 index 0000000..b68973d Binary files /dev/null and b/Tucker/build/Path game/localpycs/pyimod01_archive.pyc differ diff --git a/Tucker/build/Path game/localpycs/pyimod02_importers.pyc b/Tucker/build/Path game/localpycs/pyimod02_importers.pyc new file mode 100644 index 0000000..2633c54 Binary files /dev/null and b/Tucker/build/Path game/localpycs/pyimod02_importers.pyc differ diff --git a/Tucker/build/Path game/localpycs/pyimod03_ctypes.pyc b/Tucker/build/Path game/localpycs/pyimod03_ctypes.pyc new file mode 100644 index 0000000..8f3b33d Binary files /dev/null and b/Tucker/build/Path game/localpycs/pyimod03_ctypes.pyc differ diff --git a/Tucker/build/Path game/localpycs/pyimod04_pywin32.pyc b/Tucker/build/Path game/localpycs/pyimod04_pywin32.pyc new file mode 100644 index 0000000..38e97ee Binary files /dev/null and b/Tucker/build/Path game/localpycs/pyimod04_pywin32.pyc differ diff --git a/Tucker/build/Path game/localpycs/struct.pyc b/Tucker/build/Path game/localpycs/struct.pyc new file mode 100644 index 0000000..cb58c97 Binary files /dev/null and b/Tucker/build/Path game/localpycs/struct.pyc differ diff --git a/Tucker/build/Path game/warn-Path game.txt b/Tucker/build/Path game/warn-Path game.txt new file mode 100644 index 0000000..714d71e --- /dev/null +++ b/Tucker/build/Path game/warn-Path game.txt @@ -0,0 +1,24 @@ + +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 pwd - imported by posixpath (delayed, conditional, optional), shutil (delayed, optional), tarfile (optional), pathlib (delayed, optional), subprocess (delayed, conditional, optional) +missing module named grp - imported by shutil (delayed, optional), tarfile (optional), pathlib (delayed, optional), subprocess (delayed, conditional, optional) +missing module named posix - imported by posixpath (optional), shutil (conditional), importlib._bootstrap_external (conditional), os (conditional, optional) +missing module named resource - imported by posix (top-level) +missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional) +excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional) +missing module named _posixsubprocess - imported by subprocess (conditional) +missing module named fcntl - imported by subprocess (optional) diff --git a/Tucker/build/Path game/xref-Path game.html b/Tucker/build/Path game/xref-Path game.html new file mode 100644 index 0000000..ad3aef7 --- /dev/null +++ b/Tucker/build/Path game/xref-Path game.html @@ -0,0 +1,7183 @@ + + + + + modulegraph cross reference for Path game.py, pyi_rth_inspect.py + + + +

modulegraph cross reference for Path game.py, pyi_rth_inspect.py

+ +
+ + Path game.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 + • enum + • functools + • genericpath + • heapq + • io + • keyword + • linecache + • locale + • ntpath + • operator + • os + • posixpath + • pyi_rth_inspect.py + • re + • re._casefix + • re._compiler + • re._constants + • re._parser + • reprlib + • sre_compile + • sre_constants + • sre_parse + • stat + • traceback + • types + • warnings + • weakref + +
+ +
+ +
+ + pyi_rth_inspect.py +Script
+imports: + inspect + • os + • sys + +
+
+imported by: + Path game.py + +
+ +
+ +
+ + _abc (builtin module)
+imported by: + abc + +
+ +
+ +
+ + _ast (builtin module)
+imported by: + ast + +
+ +
+ +
+ + _bisect (builtin module)
+imported by: + bisect + +
+ +
+ +
+ + _blake2 (builtin module)
+imported by: + hashlib + +
+ +
+ +
+ + _bz2 C:\Users\tjtro\AppData\Local\Programs\Python\Python312\DLLs\_bz2.pyd
+imported by: + bz2 + +
+ +
+ +
+ + _codecs (builtin module)
+imported by: + codecs + +
+ +
+ +
+ + _codecs_cn (builtin module)
+imported by: + encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hz + +
+ +
+ +
+ + _codecs_hk (builtin module)
+imported by: + encodings.big5hkscs + +
+ +
+ +
+ + _codecs_iso2022 (builtin module)
+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 (builtin module)
+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 (builtin module)
+imported by: + encodings.cp949 + • encodings.euc_kr + • encodings.johab + +
+ +
+ +
+ + _codecs_tw (builtin module)
+imported by: + encodings.big5 + • encodings.cp950 + +
+ +
+ +
+ + _collections (builtin module)
+imported by: + collections + • threading + +
+ +
+ +
+ + _collections_abc +SourceModule
+imports: + abc + • sys + • warnings + +
+
+imported by: + Path game.py + • collections + • collections.abc + • contextlib + • locale + • os + • pathlib + • random + • types + • weakref + +
+ +
+ +
+ + _compat_pickle +SourceModule
+imported by: + _pickle + • pickle + +
+ +
+ +
+ + _compression +SourceModule
+imports: + io + • sys + +
+
+imported by: + bz2 + • gzip + • lzma + +
+ +
+ +
+ + _contextvars (builtin module)
+imported by: + contextvars + +
+ +
+ +
+ + _csv (builtin module)
+imported by: + csv + +
+ +
+ +
+ + _datetime (builtin module)
+imports: + _strptime + • time + +
+
+imported by: + datetime + +
+ +
+ +
+ + _decimal C:\Users\tjtro\AppData\Local\Programs\Python\Python312\DLLs\_decimal.pyd
+imported by: + decimal + +
+ +
+ +
+ + _frozen_importlib +ExcludedModule
+imported by: + importlib + • importlib.abc + +
+ +
+ +
+ + _frozen_importlib_external +MissingModule
+imported by: + importlib + • importlib._bootstrap + • importlib.abc + +
+ +
+ +
+ + _functools (builtin module)
+imported by: + functools + +
+ +
+ +
+ + _hashlib C:\Users\tjtro\AppData\Local\Programs\Python\Python312\DLLs\_hashlib.pyd
+imported by: + hashlib + +
+ +
+ +
+ + _heapq (builtin module)
+imported by: + heapq + +
+ +
+ +
+ + _imp (builtin module)
+imported by: + importlib + • importlib._bootstrap_external + • importlib.util + +
+ +
+ +
+ + _io (builtin module)
+imported by: + importlib._bootstrap_external + • io + +
+ +
+ +
+ + _locale (builtin module)
+imported by: + locale + +
+ +
+ +
+ + _lzma C:\Users\tjtro\AppData\Local\Programs\Python\Python312\DLLs\_lzma.pyd
+imported by: + lzma + +
+ +
+ +
+ + _md5 (builtin module)
+imported by: + hashlib + +
+ +
+ +
+ + _multibytecodec (builtin module)
+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 + +
+ +
+ +
+ + _opcode (builtin module)
+imported by: + opcode + +
+ +
+ +
+ + _operator (builtin module)
+imported by: + operator + +
+ +
+ +
+ + _pickle (builtin module)
+imports: + _compat_pickle + • codecs + • copyreg + +
+
+imported by: + pickle + +
+ +
+ +
+ + _posixsubprocess +MissingModule
+imports: + gc + +
+
+imported by: + subprocess + +
+ +
+ +
+ + _py_abc +SourceModule
+imports: + _weakrefset + +
+
+imported by: + abc + +
+ +
+ +
+ + _pydatetime +SourceModule
+imports: + _strptime + • math + • operator + • sys + • time + • warnings + +
+
+imported by: + datetime + +
+ +
+ +
+ + _pydecimal +SourceModule
+imports: + collections + • contextvars + • itertools + • locale + • math + • numbers + • re + • sys + +
+
+imported by: + decimal + +
+ +
+ +
+ + _random (builtin module)
+imported by: + random + +
+ +
+ +
+ + _sha1 (builtin module)
+imported by: + hashlib + +
+ +
+ +
+ + _sha2 (builtin module)
+imported by: + hashlib + • random + +
+ +
+ +
+ + _sha3 (builtin module)
+imported by: + hashlib + +
+ +
+ +
+ + _signal (builtin module)
+imported by: + signal + +
+ +
+ +
+ + _socket C:\Users\tjtro\AppData\Local\Programs\Python\Python312\DLLs\_socket.pyd
+imported by: + socket + +
+ +
+ +
+ + _sre (builtin module)
+imports: + copy + • re + +
+
+imported by: + re + • re._compiler + • re._constants + +
+ +
+ +
+ + _stat (builtin module)
+imported by: + stat + +
+ +
+ +
+ + _statistics (builtin module)
+imported by: + statistics + +
+ +
+ +
+ + _string (builtin module)
+imported by: + string + +
+ +
+ +
+ + _strptime +SourceModule
+imports: + _thread + • calendar + • datetime + • locale + • re + • time + +
+
+imported by: + _datetime + • _pydatetime + • time + +
+ +
+ +
+ + _struct (builtin module)
+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 (builtin module)
+imported by: + typing + +
+ +
+ +
+ + _warnings (builtin module)
+imported by: + importlib._bootstrap_external + • warnings + +
+ +
+ +
+ + _weakref (builtin module)
+imported by: + _weakrefset + • collections + • weakref + +
+ +
+ +
+ + _weakrefset +SourceModule
+imports: + _weakref + • types + +
+
+imported by: + Path game.py + • _py_abc + • threading + • weakref + +
+ +
+ +
+ + _winapi (builtin module)
+imported by: + encodings + • ntpath + • shutil + • subprocess + +
+ +
+ +
+ + abc +SourceModule
+imports: + _abc + • _py_abc + +
+
+imported by: + Path game.py + • _collections_abc + • contextlib + • dataclasses + • email._policybase + • functools + • importlib._abc + • importlib.abc + • importlib.metadata + • importlib.resources.abc + • inspect + • io + • numbers + • os + • 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 (builtin module)
+imported by: + socket + +
+ +
+ +
+ + ast +SourceModule
+imports: + _ast + • argparse + • collections + • contextlib + • enum + • inspect + • re + • sys + • warnings + +
+
+imported by: + inspect + • traceback + +
+ +
+ +
+ + atexit (builtin module)
+imported by: + logging + • weakref + +
+ +
+ +
+ + base64 +SourceModule
+imports: + binascii + • getopt + • re + • struct + • sys + +
+
+imported by: + email._encoded_words + • email.base64mime + • email.encoders + • encodings.base64_codec + +
+ +
+ +
+ + binascii (builtin module)
+imported by: + base64 + • email._encoded_words + • email.base64mime + • email.contentmanager + • email.header + • email.message + • encodings.hex_codec + • encodings.uu_codec + • quopri + • zipfile + +
+ +
+ +
+ + bisect +SourceModule
+imports: + _bisect + +
+
+imported by: + random + • statistics + +
+ +
+ +
+ + builtins (builtin module)
+imported by: + bz2 + • codecs + • enum + • gettext + • gzip + • inspect + • locale + • lzma + • operator + • reprlib + • subprocess + • tarfile + • tokenize + • warnings + +
+ +
+ +
+ + bz2 +SourceModule
+imports: + _bz2 + • _compression + • builtins + • io + • os + +
+
+imported by: + encodings.bz2_codec + • shutil + • tarfile + • zipfile + +
+ +
+ +
+ + calendar +SourceModule
+imports: + argparse + • datetime + • enum + • itertools + • locale + • sys + • warnings + +
+
+imported by: + _strptime + • email._parseaddr + +
+ +
+ +
+ + codecs +SourceModule
+imports: + _codecs + • builtins + • encodings + • sys + +
+
+imported by: + Path game.py + • _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 + • pickle + • tokenize + +
+ +
+ +
+ + collections +Package
+imports: + _collections + • _collections_abc + • _weakref + • copy + • heapq + • itertools + • keyword + • operator + • reprlib + • sys + +
+
+imported by: + Path game.py + • _pydecimal + • ast + • collections.abc + • contextlib + • dis + • email.feedparser + • functools + • importlib.metadata + • importlib.metadata._collections + • importlib.resources.readers + • inspect + • pprint + • selectors + • shutil + • statistics + • string + • threading + • tokenize + • typing + • urllib.parse + +
+ +
+ +
+ + collections.abc +SourceModule
+imports: + _collections_abc + • collections + +
+
+imported by: + Path game.py + • inspect + • logging + • selectors + • traceback + • tracemalloc + • typing + +
+ +
+ +
+ + contextlib +SourceModule
+imports: + _collections_abc + • abc + • collections + • functools + • os + • sys + • types + +
+
+imported by: + _threading_local + • ast + • importlib.metadata + • importlib.resources._adapters + • importlib.resources._common + • subprocess + • traceback + • typing + • zipfile._path + +
+ +
+ +
+ + contextvars +SourceModule
+imports: + _contextvars + +
+
+imported by: + _pydecimal + +
+ +
+ +
+ + copy +SourceModule
+imports: + copyreg + • types + • weakref + +
+
+imported by: + _sre + • argparse + • collections + • dataclasses + • email.generator + • gettext + • tarfile + • weakref + +
+ +
+ +
+ + copyreg +SourceModule
+imports: + functools + • operator + +
+
+imported by: + Path game.py + • _pickle + • copy + • pickle + • re + • typing + +
+ +
+ +
+ + csv +SourceModule
+imports: + _csv + • io + • re + • types + +
+
+imported by: + importlib.metadata + +
+ +
+ +
+ + dataclasses +SourceModule
+imports: + _thread + • abc + • copy + • functools + • inspect + • itertools + • keyword + • re + • sys + • types + +
+
+imported by: + pprint + +
+ +
+ +
+ + datetime +SourceModule
+imports: + _datetime + • _pydatetime + • time + +
+
+imported by: + _strptime + • calendar + • email.utils + +
+ +
+ +
+ + decimal +SourceModule
+imports: + _decimal + • _pydecimal + +
+
+imported by: + fractions + • statistics + +
+ +
+ +
+ + 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 + +
+ +
+ +
+ + 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.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.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 + • importlib.metadata._adapters + +
+ +
+ +
+ + email.parser +SourceModule
+imports: + email + • email._policybase + • email.feedparser + • io + +
+
+imported by: + email + +
+ +
+ +
+ + 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 + • warnings + +
+
+imported by: + email._header_value_parser + • email._policybase + • email.generator + • email.headerregistry + • email.message + • email.policy + +
+ +
+ +
+ + 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: + Path game.py + • 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 + • locale + +
+ +
+ +
+ + encodings.aliases +SourceModule
+imports: + encodings + +
+
+imported by: + Path game.py + • encodings + • locale + +
+ +
+ +
+ + encodings.ascii +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.base64_codec +SourceModule
+imports: + base64 + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.big5 +SourceModule
+imports: + _codecs_tw + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.big5hkscs +SourceModule
+imports: + _codecs_hk + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.bz2_codec +SourceModule
+imports: + bz2 + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.charmap +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp037 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp1006 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp1026 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp1125 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp1140 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp1250 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp1251 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp1252 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp1253 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp1254 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp1255 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp1256 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp1257 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp1258 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp273 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp424 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp437 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp500 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp720 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp737 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp775 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp850 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp852 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp855 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp856 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp857 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp858 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp860 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp861 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp862 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp863 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp864 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp865 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp866 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp869 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp874 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp875 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp932 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp949 +SourceModule
+imports: + _codecs_kr + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.cp950 +SourceModule
+imports: + _codecs_tw + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.euc_jis_2004 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.euc_jisx0213 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.euc_jp +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.euc_kr +SourceModule
+imports: + _codecs_kr + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.gb18030 +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.gb2312 +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.gbk +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.hex_codec +SourceModule
+imports: + binascii + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.hp_roman8 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.hz +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.idna +SourceModule
+imports: + codecs + • encodings + • re + • stringprep + • unicodedata + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso2022_jp +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso2022_jp_1 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso2022_jp_2 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso2022_jp_2004 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso2022_jp_3 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso2022_jp_ext +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso2022_kr +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_1 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_10 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_11 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_13 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_14 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_15 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_16 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_2 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_3 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_4 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_5 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_6 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_7 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_8 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.iso8859_9 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.johab +SourceModule
+imports: + _codecs_kr + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.koi8_r +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.koi8_t +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.koi8_u +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.kz1048 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.latin_1 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.mac_arabic +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.mac_croatian +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.mac_cyrillic +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.mac_farsi +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.mac_greek +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.mac_iceland +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.mac_latin2 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.mac_roman +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.mac_romanian +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.mac_turkish +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.mbcs +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.oem +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.palmos +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.ptcp154 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.punycode +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.quopri_codec +SourceModule
+imports: + codecs + • encodings + • io + • quopri + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.raw_unicode_escape +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.rot_13 +SourceModule
+imports: + codecs + • encodings + • sys + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.shift_jis +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.shift_jis_2004 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.shift_jisx0213 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.tis_620 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.undefined +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.unicode_escape +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.utf_16 +SourceModule
+imports: + codecs + • encodings + • sys + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.utf_16_be +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.utf_16_le +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.utf_32 +SourceModule
+imports: + codecs + • encodings + • sys + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.utf_32_be +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.utf_32_le +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.utf_7 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.utf_8 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.utf_8_sig +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.uu_codec +SourceModule
+imports: + binascii + • codecs + • encodings + • io + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + encodings.zlib_codec +SourceModule
+imports: + codecs + • encodings + • zlib + +
+
+imported by: + Path game.py + • encodings + +
+ +
+ +
+ + enum +SourceModule
+imports: + builtins + • functools + • operator + • sys + • types + • warnings + +
+
+imported by: + Path game.py + • ast + • calendar + • inspect + • py_compile + • re + • signal + • socket + +
+ +
+ +
+ + errno (builtin module)
+imported by: + gettext + • gzip + • pathlib + • shutil + • socket + • subprocess + • tempfile + +
+ +
+ +
+ + fcntl +MissingModule
+imported by: + subprocess + +
+ +
+ +
+ + fnmatch +SourceModule
+imports: + functools + • os + • posixpath + • re + +
+
+imported by: + pathlib + • shutil + • tracemalloc + +
+ +
+ +
+ + fractions +SourceModule
+imports: + decimal + • functools + • math + • numbers + • operator + • re + • sys + +
+
+imported by: + statistics + +
+ +
+ +
+ + functools +SourceModule
+imports: + _functools + • _thread + • abc + • collections + • reprlib + • types + • typing + • weakref + +
+
+imported by: + Path game.py + • contextlib + • copyreg + • dataclasses + • email._encoded_words + • email.charset + • enum + • fnmatch + • fractions + • importlib.metadata + • importlib.metadata._adapters + • importlib.metadata._functools + • importlib.resources._common + • importlib.resources._legacy + • inspect + • ipaddress + • linecache + • locale + • operator + • pathlib + • pickle + • 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: + Path game.py + • ntpath + • posixpath + +
+ +
+ +
+ + getopt +SourceModule
+imports: + gettext + • os + • sys + +
+
+imported by: + base64 + • quopri + +
+ +
+ +
+ + gettext +SourceModule
+imports: + builtins + • copy + • errno + • locale + • operator + • os + • re + • struct + • sys + • warnings + +
+
+imported by: + argparse + • getopt + +
+ +
+ +
+ + grp +MissingModule
+imported by: + pathlib + • shutil + • subprocess + • tarfile + +
+ +
+ +
+ + gzip +SourceModule
+imports: + _compression + • argparse + • builtins + • errno + • io + • os + • struct + • sys + • time + • warnings + • zlib + +
+
+imported by: + tarfile + +
+ +
+ +
+ + hashlib +SourceModule
+imports: + _blake2 + • _hashlib + • _md5 + • _sha1 + • _sha2 + • _sha3 + • logging + +
+
+imported by: + random + +
+ +
+ +
+ + heapq +SourceModule
+imports: + _heapq + +
+
+imported by: + Path game.py + • collections + +
+ +
+ +
+ + 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 + +
+ +
+ +
+ + importlib._abc +SourceModule
+imports: + abc + • importlib + • importlib._bootstrap + +
+
+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 + • importlib.resources.abc + • warnings + +
+
+imported by: + importlib.metadata + +
+ +
+ +
+ + importlib.machinery +SourceModule
+imports: + importlib + • importlib._bootstrap + • importlib._bootstrap_external + +
+
+imported by: + importlib.abc + • inspect + • py_compile + +
+ +
+ +
+ + 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 + • inspect + • 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 + • functools + • importlib.metadata + • importlib.metadata._text + • re + • textwrap + • warnings + +
+
+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 + +
+ +
+ +
+ + importlib.resources +Package
+imports: + importlib + • importlib.resources + • importlib.resources._common + • importlib.resources._legacy + • importlib.resources.abc + +
+
+imported by: + importlib.abc + • 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 + • inspect + • itertools + • os + • pathlib + • tempfile + • types + • typing + • warnings + +
+
+imported by: + importlib.resources + • importlib.resources._legacy + +
+ +
+ +
+ + importlib.resources._itertools +SourceModule
+imports: + importlib.resources + +
+
+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 + • itertools + • os + • pathlib + • 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 + • itertools + • operator + • pathlib + • zipfile + +
+
+imported by: + importlib.readers + +
+ +
+ +
+ + importlib.util +SourceModule
+imports: + _imp + • importlib + • importlib._abc + • importlib._bootstrap + • importlib._bootstrap_external + • sys + • types + +
+
+imported by: + py_compile + • 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 + • importlib.metadata + • importlib.resources._common + • pyi_rth_inspect.py + • typing + +
+ +
+ +
+ + io +SourceModule
+imports: + _io + • abc + +
+
+imported by: + Path game.py + • _compression + • bz2 + • csv + • dis + • email.feedparser + • email.generator + • email.iterators + • email.message + • email.parser + • encodings.quopri_codec + • encodings.uu_codec + • gzip + • importlib.resources._adapters + • importlib.resources.abc + • logging + • lzma + • os + • pathlib + • pickle + • pprint + • quopri + • socket + • subprocess + • tarfile + • tempfile + • tokenize + • zipfile + • zipfile._path + +
+ +
+ +
+ + ipaddress +SourceModule
+imports: + functools + • re + +
+
+imported by: + urllib.parse + +
+ +
+ +
+ + itertools (builtin module)
+imported by: + _pydecimal + • calendar + • collections + • dataclasses + • importlib.metadata + • importlib.metadata._itertools + • importlib.resources._common + • importlib.resources.abc + • importlib.resources.readers + • inspect + • pickle + • random + • reprlib + • statistics + • threading + • tokenize + • traceback + • weakref + • zipfile._path + +
+ +
+ +
+ + keyword +SourceModule
+imported by: + Path game.py + • collections + • dataclasses + • inspect + +
+ +
+ +
+ + linecache +SourceModule
+imports: + functools + • os + • sys + • tokenize + +
+
+imported by: + Path game.py + • inspect + • traceback + • tracemalloc + • warnings + +
+ +
+ +
+ + locale +SourceModule
+imports: + _collections_abc + • _locale + • builtins + • encodings + • encodings.aliases + • functools + • os + • re + • sys + • warnings + +
+
+imported by: + Path game.py + • _pydecimal + • _strptime + • calendar + • gettext + • subprocess + +
+ +
+ +
+ + logging +Package
+imports: + atexit + • collections.abc + • io + • os + • pickle + • re + • string + • sys + • threading + • time + • traceback + • types + • warnings + • weakref + +
+
+imported by: + hashlib + +
+ +
+ +
+ + lzma +SourceModule
+imports: + _compression + • _lzma + • builtins + • io + • os + +
+
+imported by: + shutil + • tarfile + • zipfile + +
+ +
+ +
+ + marshal (builtin module)
+imported by: + importlib._bootstrap_external + +
+ +
+ +
+ + math (builtin module)
+imported by: + _pydatetime + • _pydecimal + • fractions + • random + • selectors + • statistics + • urllib.parse + +
+ +
+ +
+ + msvcrt (builtin module)
+imported by: + subprocess + +
+ +
+ +
+ + nt (builtin module)
+imported by: + importlib._bootstrap_external + • ntpath + • os + • shutil + +
+ +
+ +
+ + ntpath +SourceModule
+imports: + _winapi + • genericpath + • nt + • os + • stat + • string + • sys + +
+
+imported by: + Path game.py + • ntpath + • os + • pathlib + +
+ +
+ +
+ + ntpath +AliasNode
+imports: + ntpath + • os + +
+
+imported by: + os + • py_compile + • tracemalloc + +
+ +
+ +
+ + numbers +SourceModule
+imports: + abc + +
+
+imported by: + _pydecimal + • fractions + • statistics + +
+ +
+ +
+ + opcode +SourceModule
+imports: + _opcode + +
+
+imported by: + dis + +
+ +
+ +
+ + operator +SourceModule
+imports: + _operator + • builtins + • functools + +
+
+imported by: + Path game.py + • _pydatetime + • collections + • copyreg + • email._header_value_parser + • enum + • fractions + • gettext + • importlib.metadata + • importlib.resources.readers + • inspect + • random + • statistics + • typing + +
+ +
+ +
+ + os +SourceModule
+imports: + _collections_abc + • abc + • io + • nt + • ntpath + • ntpath + • posix + • posixpath + • stat + • subprocess + • sys + • warnings + +
+
+imported by: + Path game.py + • argparse + • bz2 + • contextlib + • email.utils + • fnmatch + • genericpath + • getopt + • gettext + • gzip + • importlib.metadata + • importlib.resources._common + • importlib.resources._legacy + • importlib.resources.abc + • inspect + • linecache + • locale + • logging + • lzma + • ntpath + • ntpath + • pathlib + • posixpath + • py_compile + • pyi_rth_inspect.py + • random + • shutil + • socket + • subprocess + • tarfile + • tempfile + • threading + • zipfile + +
+ +
+ +
+ + pathlib +SourceModule
+imports: + _collections_abc + • errno + • fnmatch + • functools + • grp + • io + • ntpath + • os + • posixpath + • pwd + • re + • stat + • sys + • urllib.parse + • warnings + +
+
+imported by: + importlib.metadata + • importlib.resources._common + • importlib.resources._legacy + • importlib.resources.abc + • importlib.resources.readers + • zipfile._path + +
+ +
+ +
+ + pickle +SourceModule
+imports: + _compat_pickle + • _pickle + • codecs + • copyreg + • functools + • io + • itertools + • pprint + • re + • struct + • sys + • types + +
+
+imported by: + logging + • tracemalloc + +
+ +
+ +
+ + posix +MissingModule
+imports: + resource + +
+
+imported by: + importlib._bootstrap_external + • os + • posixpath + • shutil + +
+ +
+ +
+ + posixpath +SourceModule
+imports: + genericpath + • os + • posix + • pwd + • re + • stat + • sys + +
+
+imported by: + Path game.py + • fnmatch + • importlib.metadata + • os + • pathlib + • zipfile._path + +
+ +
+ +
+ + pprint +SourceModule
+imports: + collections + • dataclasses + • io + • re + • sys + • types + +
+
+imported by: + pickle + +
+ +
+ +
+ + pwd +MissingModule
+imported by: + pathlib + • posixpath + • shutil + • subprocess + • tarfile + +
+ +
+ +
+ + py_compile +SourceModule
+imports: + argparse + • enum + • importlib._bootstrap_external + • importlib.machinery + • importlib.util + • ntpath + • os + • sys + • traceback + +
+
+imported by: + zipfile + +
+ +
+ +
+ + quopri +SourceModule
+imports: + binascii + • getopt + • io + • sys + +
+
+imported by: + email.encoders + • email.message + • encodings.quopri_codec + +
+ +
+ +
+ + random +SourceModule
+imports: + _collections_abc + • _random + • _sha2 + • bisect + • hashlib + • itertools + • math + • operator + • os + • statistics + • time + • warnings + +
+
+imported by: + email.generator + • email.utils + • statistics + • tempfile + +
+ +
+ +
+ + re +Package
+imports: + _sre + • copyreg + • enum + • functools + • re + • re._compiler + • re._constants + • re._parser + • warnings + +
+
+imported by: + Path game.py + • _pydecimal + • _sre + • _strptime + • argparse + • ast + • base64 + • csv + • dataclasses + • email._encoded_words + • email._header_value_parser + • email.feedparser + • email.generator + • email.header + • email.message + • email.policy + • email.quoprimime + • email.utils + • encodings.idna + • fnmatch + • fractions + • gettext + • importlib.metadata + • importlib.metadata._adapters + • importlib.metadata._text + • inspect + • ipaddress + • locale + • logging + • pathlib + • pickle + • posixpath + • pprint + • re + • re._casefix + • re._compiler + • re._constants + • re._parser + • sre_compile + • sre_constants + • sre_parse + • string + • tarfile + • textwrap + • tokenize + • typing + • urllib.parse + • warnings + • zipfile._path + • zipfile._path.glob + +
+ +
+ +
+ + re._casefix +SourceModule
+imports: + re + +
+
+imported by: + Path game.py + • re._compiler + +
+ +
+ +
+ + re._compiler +SourceModule
+imports: + _sre + • re + • re._casefix + • re._constants + • re._parser + • sys + +
+
+imported by: + Path game.py + • re + • sre_compile + +
+ +
+ +
+ + re._constants +SourceModule
+imports: + _sre + • re + +
+
+imported by: + Path game.py + • re + • re._compiler + • re._parser + • sre_constants + +
+ +
+ +
+ + re._parser +SourceModule
+imports: + re + • re._constants + • unicodedata + • warnings + +
+
+imported by: + Path game.py + • re + • re._compiler + • sre_parse + +
+ +
+ +
+ + reprlib +SourceModule
+imports: + _thread + • builtins + • itertools + +
+
+imported by: + Path game.py + • collections + • functools + +
+ +
+ +
+ + resource +MissingModule
+imported by: + posix + +
+ +
+ +
+ + select C:\Users\tjtro\AppData\Local\Programs\Python\Python312\DLLs\select.pyd
+imported by: + selectors + • subprocess + +
+ +
+ +
+ + selectors +SourceModule
+imports: + abc + • collections + • collections.abc + • math + • select + • sys + +
+
+imported by: + socket + • subprocess + +
+ +
+ +
+ + shutil +SourceModule
+imports: + _winapi + • bz2 + • collections + • errno + • fnmatch + • grp + • lzma + • nt + • os + • posix + • pwd + • stat + • sys + • tarfile + • warnings + • zipfile + • zlib + +
+
+imported by: + argparse + • tarfile + • tempfile + • zipfile + +
+ +
+ +
+ + signal +SourceModule
+imports: + _signal + • enum + +
+
+imported by: + subprocess + +
+ +
+ +
+ + socket +SourceModule
+imports: + _socket + • array + • enum + • errno + • io + • os + • selectors + • sys + +
+
+imported by: + email.utils + +
+ +
+ +
+ + sre_compile +SourceModule
+imports: + re + • re._compiler + • warnings + +
+
+imported by: + Path game.py + +
+ +
+ +
+ + sre_constants +SourceModule
+imports: + re + • re._constants + • warnings + +
+
+imported by: + Path game.py + +
+ +
+ +
+ + sre_parse +SourceModule
+imports: + re + • re._parser + • warnings + +
+
+imported by: + Path game.py + +
+ +
+ +
+ + stat +SourceModule
+imports: + _stat + +
+
+imported by: + Path game.py + • genericpath + • ntpath + • os + • pathlib + • posixpath + • shutil + • tarfile + • zipfile + +
+ +
+ +
+ + statistics +SourceModule
+imports: + _statistics + • bisect + • collections + • decimal + • fractions + • functools + • itertools + • math + • numbers + • operator + • random + • sys + +
+
+imported by: + random + +
+ +
+ +
+ + string +SourceModule
+imports: + _string + • collections + • re + +
+
+imported by: + email._encoded_words + • email._header_value_parser + • email.quoprimime + • logging + • ntpath + +
+ +
+ +
+ + stringprep +SourceModule
+imports: + unicodedata + +
+
+imported by: + encodings.idna + +
+ +
+ +
+ + struct +SourceModule
+imports: + _struct + +
+
+imported by: + base64 + • gettext + • gzip + • pickle + • tarfile + • 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: + os + +
+ +
+ +
+ + sys (builtin module)
+imported by: + _collections_abc + • _compression + • _pydatetime + • _pydecimal + • argparse + • ast + • base64 + • calendar + • codecs + • collections + • contextlib + • dataclasses + • dis + • email._header_value_parser + • email.generator + • email.iterators + • email.policy + • encodings + • encodings.rot_13 + • encodings.utf_16 + • encodings.utf_32 + • enum + • fractions + • getopt + • gettext + • gzip + • importlib + • importlib._bootstrap_external + • importlib.metadata + • importlib.util + • inspect + • linecache + • locale + • logging + • ntpath + • os + • pathlib + • pickle + • posixpath + • pprint + • py_compile + • pyi_rth_inspect.py + • quopri + • re._compiler + • selectors + • shutil + • socket + • statistics + • subprocess + • tarfile + • tempfile + • threading + • tokenize + • traceback + • types + • typing + • warnings + • weakref + • zipfile + +
+ +
+ +
+ + tarfile +SourceModule
+imports: + argparse + • builtins + • bz2 + • copy + • grp + • gzip + • io + • lzma + • os + • pwd + • re + • shutil + • stat + • struct + • sys + • time + • warnings + • zlib + +
+
+imported by: + shutil + +
+ +
+ +
+ + tempfile +SourceModule
+imports: + _thread + • errno + • functools + • io + • os + • random + • shutil + • sys + • types + • warnings + • weakref + +
+
+imported by: + importlib.resources._common + +
+ +
+ +
+ + 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 + • logging + • subprocess + • zipfile + +
+ +
+ +
+ + time (builtin module)
+imports: + _strptime + +
+
+imported by: + _datetime + • _pydatetime + • _strptime + • datetime + • email._parseaddr + • email.generator + • email.utils + • gc + • gzip + • logging + • random + • subprocess + • tarfile + • threading + • zipfile + +
+ +
+ +
+ + 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: + Path game.py + • logging + • py_compile + • threading + • warnings + +
+ +
+ +
+ + tracemalloc +SourceModule
+imports: + _tracemalloc + • collections.abc + • fnmatch + • functools + • linecache + • ntpath + • pickle + +
+
+imported by: + warnings + +
+ +
+ +
+ + types +SourceModule
+imports: + _collections_abc + • functools + • sys + +
+
+imported by: + Path game.py + • _weakrefset + • contextlib + • copy + • csv + • dataclasses + • dis + • email.headerregistry + • enum + • functools + • importlib.metadata._functools + • importlib.resources._common + • importlib.resources._legacy + • importlib.util + • inspect + • logging + • pickle + • pprint + • subprocess + • tempfile + • typing + • urllib.parse + +
+ +
+ +
+ + typing +SourceModule
+imports: + _typing + • abc + • collections + • collections.abc + • contextlib + • copyreg + • functools + • inspect + • operator + • re + • sys + • types + • warnings + +
+
+imported by: + functools + • importlib.metadata + • importlib.metadata._meta + • importlib.resources._common + • importlib.resources._legacy + • importlib.resources.abc + +
+ +
+ +
+ + unicodedata C:\Users\tjtro\AppData\Local\Programs\Python\Python312\DLLs\unicodedata.pyd
+imported by: + encodings.idna + • re._parser + • stringprep + • traceback + • urllib.parse + +
+ +
+ +
+ + urllib +Package
+imported by: + email._header_value_parser + • urllib.parse + +
+ +
+ +
+ + urllib.parse +SourceModule
+imports: + collections + • functools + • ipaddress + • math + • re + • types + • unicodedata + • urllib + • warnings + +
+
+imported by: + email.utils + • pathlib + +
+ +
+ +
+ + warnings +SourceModule
+imports: + _warnings + • builtins + • linecache + • re + • sys + • traceback + • tracemalloc + +
+
+imported by: + Path game.py + • _collections_abc + • _pydatetime + • argparse + • ast + • calendar + • email.utils + • enum + • gettext + • gzip + • importlib + • importlib.abc + • importlib.metadata + • importlib.metadata._adapters + • importlib.resources._common + • importlib.resources._legacy + • locale + • logging + • os + • pathlib + • random + • re + • re._parser + • shutil + • sre_compile + • sre_constants + • sre_parse + • subprocess + • tarfile + • tempfile + • threading + • typing + • urllib.parse + • zipfile + +
+ +
+ +
+ + weakref +SourceModule
+imports: + _collections_abc + • _weakref + • _weakrefset + • atexit + • copy + • gc + • itertools + • sys + +
+
+imported by: + Path game.py + • _threading_local + • copy + • functools + • logging + • tempfile + +
+ +
+ +
+ + winreg (builtin module)
+imported by: + importlib._bootstrap_external + +
+ +
+ +
+ + zipfile +Package
+imports: + argparse + • binascii + • bz2 + • importlib.util + • io + • lzma + • os + • py_compile + • shutil + • stat + • struct + • sys + • threading + • time + • warnings + • zipfile._path + • zlib + +
+
+imported by: + importlib.metadata + • importlib.resources.readers + • shutil + • zipfile._path + +
+ +
+ +
+ + zipfile._path +Package
+imports: + contextlib + • io + • itertools + • pathlib + • posixpath + • re + • zipfile + • zipfile._path.glob + +
+
+imported by: + zipfile + • zipfile._path.glob + +
+ +
+ +
+ + zipfile._path.glob +SourceModule
+imports: + re + • zipfile._path + +
+
+imported by: + zipfile._path + +
+ +
+ +
+ + zlib (builtin module)
+imported by: + encodings.zlib_codec + • gzip + • shutil + • tarfile + • zipfile + +
+ +
+ + + diff --git a/Tucker/dist/Path game/Path game.exe b/Tucker/dist/Path game/Path game.exe new file mode 100644 index 0000000..7f89160 Binary files /dev/null and b/Tucker/dist/Path game/Path game.exe differ diff --git a/Tucker/dist/Path game/_internal/VCRUNTIME140.dll b/Tucker/dist/Path game/_internal/VCRUNTIME140.dll new file mode 100644 index 0000000..a9ed5c4 Binary files /dev/null and b/Tucker/dist/Path game/_internal/VCRUNTIME140.dll differ diff --git a/Tucker/dist/Path game/_internal/_bz2.pyd b/Tucker/dist/Path game/_internal/_bz2.pyd new file mode 100644 index 0000000..20df2be Binary files /dev/null and b/Tucker/dist/Path game/_internal/_bz2.pyd differ diff --git a/Tucker/dist/Path game/_internal/_decimal.pyd b/Tucker/dist/Path game/_internal/_decimal.pyd new file mode 100644 index 0000000..42a55be Binary files /dev/null and b/Tucker/dist/Path game/_internal/_decimal.pyd differ diff --git a/Tucker/dist/Path game/_internal/_hashlib.pyd b/Tucker/dist/Path game/_internal/_hashlib.pyd new file mode 100644 index 0000000..45063e4 Binary files /dev/null and b/Tucker/dist/Path game/_internal/_hashlib.pyd differ diff --git a/Tucker/dist/Path game/_internal/_lzma.pyd b/Tucker/dist/Path game/_internal/_lzma.pyd new file mode 100644 index 0000000..de405e4 Binary files /dev/null and b/Tucker/dist/Path game/_internal/_lzma.pyd differ diff --git a/Tucker/dist/Path game/_internal/_socket.pyd b/Tucker/dist/Path game/_internal/_socket.pyd new file mode 100644 index 0000000..5e12bc3 Binary files /dev/null and b/Tucker/dist/Path game/_internal/_socket.pyd differ diff --git a/Tucker/dist/Path game/_internal/base_library.zip b/Tucker/dist/Path game/_internal/base_library.zip new file mode 100644 index 0000000..70b22e6 Binary files /dev/null and b/Tucker/dist/Path game/_internal/base_library.zip differ diff --git a/Tucker/dist/Path game/_internal/libcrypto-3.dll b/Tucker/dist/Path game/_internal/libcrypto-3.dll new file mode 100644 index 0000000..dd511fb Binary files /dev/null and b/Tucker/dist/Path game/_internal/libcrypto-3.dll differ diff --git a/Tucker/dist/Path game/_internal/python312.dll b/Tucker/dist/Path game/_internal/python312.dll new file mode 100644 index 0000000..701fffa Binary files /dev/null and b/Tucker/dist/Path game/_internal/python312.dll differ diff --git a/Tucker/dist/Path game/_internal/select.pyd b/Tucker/dist/Path game/_internal/select.pyd new file mode 100644 index 0000000..938ea8f Binary files /dev/null and b/Tucker/dist/Path game/_internal/select.pyd differ diff --git a/Tucker/dist/Path game/_internal/unicodedata.pyd b/Tucker/dist/Path game/_internal/unicodedata.pyd new file mode 100644 index 0000000..f601fa6 Binary files /dev/null and b/Tucker/dist/Path game/_internal/unicodedata.pyd differ diff --git a/Tucker_character_1.txt b/Tucker_character_1.txt new file mode 100644 index 0000000..16a0717 --- /dev/null +++ b/Tucker_character_1.txt @@ -0,0 +1,5 @@ +tuck +elf +ranged +dead shot +magic bows