├── .gitattributes ├── .github └── workflows │ └── update_gem_data.yml ├── .gitignore ├── .idea ├── .gitignore ├── PathOfExile-SkillGemMargins.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .streamlit └── config.toml ├── 1.1 update.xlsx ├── 1_🛖_Home.py ├── README.md ├── data ├── DivPriceInChaos.txt ├── History.txt ├── League.txt ├── app1 │ ├── data.json │ └── raw_data.json ├── app2 │ ├── optimization_info.json │ ├── raw_sextant_info.xlsx │ ├── sextant_data_tft.json │ ├── sextant_info_and_data.json │ └── sextants_to_block.json ├── currency_prices.json ├── history_gems.txt └── history_sextants.txt ├── img ├── Digital-Patreon-Wordmark_FieryCoral.png ├── Under-Construction.png ├── enduring_influence.png ├── favicon.ico ├── logo_v2.0.png ├── poebuilds_screenshot.PNG └── wow.gif ├── main.py ├── pages ├── 2_💎_Skill_Gem_Leveling_Helper.py └── 3_🧰_PoE_Champion_Toolbox.py ├── requirements.txt ├── requirements_ortools.txt ├── update_gem_data.py ├── update_sextant_data.py ├── utility ├── app1 │ ├── create_xp_dict.py │ ├── gem_colors.xlsx │ ├── gem_colors_323.xlsx │ ├── gem_colors_324.xlsx │ ├── gem_colors_325.xlsx │ ├── gem_margins.py │ ├── regular_gem_xp │ ├── regular_gem_xp.xlsx │ ├── regular_gem_xp_df │ └── skillgems_data_handler.py ├── app2 │ └── sextant_data_handler.py ├── data_handler.py ├── firebase_operations.py └── plot_utility.py └── widgets ├── __pycache__ ├── header.cpython-310.pyc ├── initializer.cpython-310.pyc ├── settings.cpython-310.pyc ├── stsidebar.cpython-310.pyc └── welcomepage.cpython-310.pyc ├── header.py ├── initializer.py ├── settings.py ├── stsidebar.py └── welcomepage.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/update_gem_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/.github/workflows/update_gem_data.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/PathOfExile-SkillGemMargins.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/.idea/PathOfExile-SkillGemMargins.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- 1 | [theme] 2 | base="dark" -------------------------------------------------------------------------------- /1.1 update.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/1.1 update.xlsx -------------------------------------------------------------------------------- /1_🛖_Home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/1_🛖_Home.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/README.md -------------------------------------------------------------------------------- /data/DivPriceInChaos.txt: -------------------------------------------------------------------------------- 1 | 177.8 -------------------------------------------------------------------------------- /data/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/data/History.txt -------------------------------------------------------------------------------- /data/League.txt: -------------------------------------------------------------------------------- 1 | Keepers -------------------------------------------------------------------------------- /data/app1/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/data/app1/data.json -------------------------------------------------------------------------------- /data/app1/raw_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/data/app1/raw_data.json -------------------------------------------------------------------------------- /data/app2/optimization_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/data/app2/optimization_info.json -------------------------------------------------------------------------------- /data/app2/raw_sextant_info.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/data/app2/raw_sextant_info.xlsx -------------------------------------------------------------------------------- /data/app2/sextant_data_tft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/data/app2/sextant_data_tft.json -------------------------------------------------------------------------------- /data/app2/sextant_info_and_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/data/app2/sextant_info_and_data.json -------------------------------------------------------------------------------- /data/app2/sextants_to_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/data/app2/sextants_to_block.json -------------------------------------------------------------------------------- /data/currency_prices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/data/currency_prices.json -------------------------------------------------------------------------------- /data/history_gems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/data/history_gems.txt -------------------------------------------------------------------------------- /data/history_sextants.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/Digital-Patreon-Wordmark_FieryCoral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/img/Digital-Patreon-Wordmark_FieryCoral.png -------------------------------------------------------------------------------- /img/Under-Construction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/img/Under-Construction.png -------------------------------------------------------------------------------- /img/enduring_influence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/img/enduring_influence.png -------------------------------------------------------------------------------- /img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/img/favicon.ico -------------------------------------------------------------------------------- /img/logo_v2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/img/logo_v2.0.png -------------------------------------------------------------------------------- /img/poebuilds_screenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/img/poebuilds_screenshot.PNG -------------------------------------------------------------------------------- /img/wow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/img/wow.gif -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/main.py -------------------------------------------------------------------------------- /pages/2_💎_Skill_Gem_Leveling_Helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/pages/2_💎_Skill_Gem_Leveling_Helper.py -------------------------------------------------------------------------------- /pages/3_🧰_PoE_Champion_Toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/pages/3_🧰_PoE_Champion_Toolbox.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_ortools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/requirements_ortools.txt -------------------------------------------------------------------------------- /update_gem_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/update_gem_data.py -------------------------------------------------------------------------------- /update_sextant_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/update_sextant_data.py -------------------------------------------------------------------------------- /utility/app1/create_xp_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/utility/app1/create_xp_dict.py -------------------------------------------------------------------------------- /utility/app1/gem_colors.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/utility/app1/gem_colors.xlsx -------------------------------------------------------------------------------- /utility/app1/gem_colors_323.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/utility/app1/gem_colors_323.xlsx -------------------------------------------------------------------------------- /utility/app1/gem_colors_324.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/utility/app1/gem_colors_324.xlsx -------------------------------------------------------------------------------- /utility/app1/gem_colors_325.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/utility/app1/gem_colors_325.xlsx -------------------------------------------------------------------------------- /utility/app1/gem_margins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/utility/app1/gem_margins.py -------------------------------------------------------------------------------- /utility/app1/regular_gem_xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/utility/app1/regular_gem_xp -------------------------------------------------------------------------------- /utility/app1/regular_gem_xp.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/utility/app1/regular_gem_xp.xlsx -------------------------------------------------------------------------------- /utility/app1/regular_gem_xp_df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/utility/app1/regular_gem_xp_df -------------------------------------------------------------------------------- /utility/app1/skillgems_data_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/utility/app1/skillgems_data_handler.py -------------------------------------------------------------------------------- /utility/app2/sextant_data_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/utility/app2/sextant_data_handler.py -------------------------------------------------------------------------------- /utility/data_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/utility/data_handler.py -------------------------------------------------------------------------------- /utility/firebase_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/utility/firebase_operations.py -------------------------------------------------------------------------------- /utility/plot_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/utility/plot_utility.py -------------------------------------------------------------------------------- /widgets/__pycache__/header.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/widgets/__pycache__/header.cpython-310.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/initializer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/widgets/__pycache__/initializer.cpython-310.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/widgets/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/stsidebar.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/widgets/__pycache__/stsidebar.cpython-310.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/welcomepage.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/widgets/__pycache__/welcomepage.cpython-310.pyc -------------------------------------------------------------------------------- /widgets/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/widgets/header.py -------------------------------------------------------------------------------- /widgets/initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/widgets/initializer.py -------------------------------------------------------------------------------- /widgets/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/widgets/settings.py -------------------------------------------------------------------------------- /widgets/stsidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/widgets/stsidebar.py -------------------------------------------------------------------------------- /widgets/welcomepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grummble-ai/PathOfExile-SkillGemMargins/HEAD/widgets/welcomepage.py --------------------------------------------------------------------------------