shortcutxl 0.2.7 → 0.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config.js +8 -0
- package/dist/core/extensions/loader.js +0 -1
- package/dist/custom/install-utils.js +59 -0
- package/dist/custom/preflight.js +113 -144
- package/dist/custom/prompts/installation.js +16 -50
- package/dist/custom/sync-xll.js +41 -89
- package/dist/custom/tools/excel-exec.js +1 -1
- package/dist/custom/uninstall.js +14 -44
- package/dist/main.js +1 -7
- package/dist/utils/shell.js +12 -6
- package/package.json +2 -4
- package/xll/ShortcutXL.xll +0 -0
- package/xll/python/LICENSE.txt +702 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__init__.py +8 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/incremental_tree.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/xmlfile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/incremental_tree.py +917 -0
- package/xll/python/Lib/site-packages/et_xmlfile/xmlfile.py +158 -0
- package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/AUTHORS.txt +5 -0
- package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/INSTALLER +1 -0
- package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/LICENCE.python +298 -0
- package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/LICENCE.rst +23 -0
- package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/METADATA +51 -0
- package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/RECORD +14 -0
- package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/WHEEL +5 -0
- package/xll/python/Lib/site-packages/et_xmlfile-2.0.0.dist-info/top_level.txt +1 -0
- package/xll/python/Lib/site-packages/openpyxl/__init__.py +19 -0
- package/xll/python/Lib/site-packages/openpyxl/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/__pycache__/_constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/_constants.py +13 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__init__.py +4 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/cell.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/read_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/rich_text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/_writer.py +136 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/cell.py +332 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/read_only.py +136 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/rich_text.py +202 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/text.py +184 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/_3d.py +105 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__init__.py +19 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_3d.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/area_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/axis.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bar_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bubble_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/chartspace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/data_source.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/descriptors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/error_bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/label.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/layout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/legend.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/line_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/marker.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pie_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pivot.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/plotarea.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/print_settings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/radar_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reader.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/scatter_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series_factory.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/shapes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/stock_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/surface_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/title.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/trendline.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/updown_bars.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/_chart.py +199 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/area_chart.py +106 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/axis.py +401 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/bar_chart.py +144 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/bubble_chart.py +67 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/chartspace.py +195 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/data_source.py +246 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/descriptors.py +43 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/error_bar.py +62 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/label.py +127 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/layout.py +74 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/legend.py +75 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/line_chart.py +129 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/marker.py +90 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/picture.py +35 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/pie_chart.py +177 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/pivot.py +65 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/plotarea.py +162 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/print_settings.py +57 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/radar_chart.py +55 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/reader.py +32 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/reference.py +124 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/scatter_chart.py +53 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/series.py +197 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/series_factory.py +41 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/shapes.py +89 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/stock_chart.py +54 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/surface_chart.py +119 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/text.py +78 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/title.py +76 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/trendline.py +98 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/updown_bars.py +31 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__init__.py +3 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/chartsheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/publish.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/relation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/chartsheet.py +107 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/custom.py +61 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/properties.py +28 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/protection.py +41 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/publish.py +58 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/relation.py +97 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/views.py +51 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__init__.py +4 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/author.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comment_sheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comments.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/shape_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/author.py +21 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/comment_sheet.py +211 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/comments.py +62 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/shape_writer.py +112 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__init__.py +54 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/abc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/numbers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/product.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/singleton.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/strings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/abc.py +8 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/numbers.py +43 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/product.py +17 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/singleton.py +40 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/strings.py +25 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__init__.py +58 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/container.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/namespace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/nested.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/sequence.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/serialisable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/slots.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/base.py +272 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/container.py +41 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/excel.py +112 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/namespace.py +12 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/nested.py +129 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/sequence.py +136 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/serialisable.py +240 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/slots.py +18 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__init__.py +4 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/colors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/connector.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/effect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/fill.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/geometry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/graphic.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/image.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/line.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/relation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/spreadsheet_drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/xdr.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/colors.py +435 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/connector.py +144 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/drawing.py +92 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/effect.py +407 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/fill.py +425 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/geometry.py +584 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/graphic.py +177 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/image.py +65 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/line.py +144 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/picture.py +144 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/properties.py +174 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/relation.py +17 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/spreadsheet_drawing.py +382 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/text.py +717 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/xdr.py +33 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__init__.py +3 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/formatting.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/rule.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/formatting.py +114 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/rule.py +291 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__init__.py +3 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/tokenizer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/translate.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/tokenizer.py +446 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/translate.py +166 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__init__.py +3 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/extended.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/interface.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/manifest.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/relationship.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/core.py +115 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/custom.py +289 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/extended.py +137 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/interface.py +56 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/manifest.py +194 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/relationship.py +158 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/workbook.py +185 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__init__.py +1 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/fields.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/record.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/cache.py +965 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/fields.py +326 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/record.py +111 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/table.py +1261 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__init__.py +1 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/drawings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/strings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/drawings.py +71 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/excel.py +349 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/strings.py +44 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/workbook.py +133 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__init__.py +11 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/alignment.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/borders.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/builtins.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/cell_style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/colors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/differential.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fills.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fonts.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/named_styles.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/numbers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/styleable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/stylesheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/alignment.py +62 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/borders.py +103 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/builtins.py +1397 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/cell_style.py +206 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/colors.py +172 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/differential.py +95 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/fills.py +224 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/fonts.py +113 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/named_styles.py +282 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/numbers.py +200 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/protection.py +17 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/proxy.py +62 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/styleable.py +151 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/stylesheet.py +274 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/table.py +94 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__init__.py +17 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/bound_dictionary.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/cell.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/dataframe.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/escape.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/formulas.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/indexed_list.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/inference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/units.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/bound_dictionary.py +26 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/cell.py +240 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/dataframe.py +87 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/datetime.py +140 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/escape.py +43 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/exceptions.py +34 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/formulas.py +24 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/indexed_list.py +49 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/inference.py +60 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/protection.py +22 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/units.py +108 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__init__.py +4 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/child.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/defined_name.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/external_reference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/function_group.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/smart_tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/web.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/_writer.py +197 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/child.py +166 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/defined_name.py +189 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__init__.py +3 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/external.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/external.py +190 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_reference.py +18 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/function_group.py +36 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/properties.py +151 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/protection.py +163 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/smart_tags.py +56 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/views.py +155 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/web.py +98 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/workbook.py +438 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__init__.py +1 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_read_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_reader.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_write_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_range.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_watch.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/controls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/copier.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/datavalidation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/dimensions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/errors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/filters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/formula.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/header_footer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/hyperlink.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/merge.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/ole.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/page.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/pagebreak.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/print_settings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/related.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/scenario.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/smart_tag.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/worksheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/_read_only.py +190 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/_reader.py +472 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/_write_only.py +160 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/_writer.py +390 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/cell_range.py +512 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/cell_watch.py +34 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/controls.py +107 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/copier.py +70 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/custom.py +35 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/datavalidation.py +202 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/dimensions.py +306 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/drawing.py +14 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/errors.py +93 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/filters.py +486 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/formula.py +51 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/header_footer.py +270 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/hyperlink.py +46 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/merge.py +141 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/ole.py +133 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/page.py +174 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/pagebreak.py +94 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/picture.py +8 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/print_settings.py +184 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/properties.py +97 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/protection.py +120 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/related.py +17 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/scenario.py +105 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/smart_tag.py +78 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/table.py +385 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/views.py +155 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/worksheet.py +907 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__init__.py +1 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/excel.py +295 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/theme.py +291 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__init__.py +42 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/functions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/constants.py +129 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/functions.py +87 -0
- package/xll/python/Lib/site-packages/openpyxl-3.1.5.dist-info/INSTALLER +1 -0
- package/xll/python/Lib/site-packages/openpyxl-3.1.5.dist-info/LICENCE.rst +23 -0
- package/xll/python/Lib/site-packages/openpyxl-3.1.5.dist-info/METADATA +86 -0
- package/xll/python/Lib/site-packages/openpyxl-3.1.5.dist-info/RECORD +387 -0
- package/xll/python/Lib/site-packages/openpyxl-3.1.5.dist-info/REQUESTED +0 -0
- package/xll/python/Lib/site-packages/openpyxl-3.1.5.dist-info/WHEEL +6 -0
- package/xll/python/Lib/site-packages/openpyxl-3.1.5.dist-info/top_level.txt +1 -0
- package/xll/python/Lib/site-packages/pip/__init__.py +13 -0
- package/xll/python/Lib/site-packages/pip/__main__.py +24 -0
- package/xll/python/Lib/site-packages/pip/__pip-runner__.py +50 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__init__.py +18 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/build_env.py +606 -0
- package/xll/python/Lib/site-packages/pip/_internal/cache.py +291 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__init__.py +3 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/autocompletion.py +184 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/base_command.py +255 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/cmdoptions.py +1267 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/command_context.py +28 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/index_command.py +195 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/main.py +85 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/main_parser.py +136 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/parser.py +358 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/progress_bars.py +153 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/req_command.py +447 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/spinners.py +235 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/status_codes.py +6 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__init__.py +139 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/cache.py +255 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/check.py +66 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/completion.py +136 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/configuration.py +288 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/debug.py +203 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/download.py +146 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/freeze.py +107 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/hash.py +58 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/help.py +40 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/index.py +166 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/inspect.py +92 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/install.py +810 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/list.py +398 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/lock.py +175 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/search.py +178 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/show.py +231 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/uninstall.py +113 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/wheel.py +171 -0
- package/xll/python/Lib/site-packages/pip/_internal/configuration.py +396 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__init__.py +21 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/base.py +55 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/installed.py +33 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/sdist.py +164 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/wheel.py +44 -0
- package/xll/python/Lib/site-packages/pip/_internal/exceptions.py +971 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__init__.py +1 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/collector.py +488 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/package_finder.py +1125 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/sources.py +287 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__init__.py +440 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/_distutils.py +173 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/base.py +82 -0
- package/xll/python/Lib/site-packages/pip/_internal/main.py +12 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__init__.py +169 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/_json.py +87 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/base.py +685 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py +229 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__init__.py +1 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/release_control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/candidate.py +25 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/direct_url.py +227 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/format_control.py +78 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/index.py +28 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/installation_report.py +57 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/link.py +617 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/release_control.py +92 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/scheme.py +25 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/search_scope.py +126 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/selection_prefs.py +56 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/target_python.py +122 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/wheel.py +80 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__init__.py +1 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/auth.py +568 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/cache.py +128 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/download.py +341 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/session.py +532 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/utils.py +98 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/xmlrpc.py +61 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__init__.py +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/metadata.py +38 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/wheel.py +38 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/check.py +175 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/freeze.py +259 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/install/__init__.py +1 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/install/wheel.py +745 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/prepare.py +747 -0
- package/xll/python/Lib/site-packages/pip/_internal/pyproject.py +123 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__init__.py +103 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/pep723.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/constructors.py +568 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/pep723.py +41 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/req_dependency_group.py +75 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/req_file.py +631 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/req_install.py +828 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/req_set.py +81 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/req_uninstall.py +639 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/__init__.py +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/base.py +20 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py +142 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py +591 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py +856 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py +285 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
- package/xll/python/Lib/site-packages/pip/_internal/self_outdated_check.py +255 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__init__.py +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/_log.py +38 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/appdirs.py +52 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/compat.py +85 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/datetime.py +28 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/deprecation.py +126 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/egg_link.py +81 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/entrypoints.py +88 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/filesystem.py +203 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/filetypes.py +24 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/glibc.py +102 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/hashes.py +150 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/logging.py +396 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/misc.py +771 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/packaging.py +44 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/pylock.py +116 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/retry.py +45 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/subprocess.py +248 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/temp_dir.py +294 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/unpacking.py +362 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/urls.py +55 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/virtualenv.py +105 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/wheel.py +132 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__init__.py +15 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/bazaar.py +130 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/git.py +571 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/mercurial.py +186 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/subversion.py +335 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
- package/xll/python/Lib/site-packages/pip/_internal/wheel_builder.py +261 -0
- package/xll/python/Lib/site-packages/pip/_vendor/README.rst +180 -0
- package/xll/python/Lib/site-packages/pip/_vendor/__init__.py +117 -0
- package/xll/python/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/LICENSE +20 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__init__.py +4 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/cacert.pem +4468 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/core.py +83 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/py.typed +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__init__.py +13 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__main__.py +65 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/_implementation.py +209 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/py.typed +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__init__.py +33 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/compat.py +1137 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/resources.py +358 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/scripts.py +447 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/util.py +1984 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/LICENSE +202 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__init__.py +54 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__main__.py +4 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/distro.py +1403 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/py.typed +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__init__.py +45 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/codec.py +122 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/compat.py +15 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/core.py +437 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/intranges.py +57 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/package_data.py +1 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/py.typed +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/COPYING +14 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/ext.py +170 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/LICENSE +3 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__init__.py +15 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/_parser.py +365 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/_structures.py +69 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__init__.py +147 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/markers.py +388 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/metadata.py +978 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/py.typed +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/pylock.py +635 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/requirements.py +86 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/specifiers.py +1068 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/tags.py +651 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/utils.py +158 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/version.py +792 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/android.py +249 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/api.py +299 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/version.py +34 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/LICENSE +25 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__init__.py +82 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/console.py +70 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/filter.py +70 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatter.py +129 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexer.py +963 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/plugin.py +72 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/style.py +203 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/token.py +214 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/util.py +324 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/LICENSE +175 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__init__.py +179 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__version__.py +14 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/adapters.py +696 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/api.py +157 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/auth.py +314 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/certs.py +17 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/compat.py +90 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/cookies.py +561 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/exceptions.py +151 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/help.py +127 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/hooks.py +33 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/models.py +1039 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/packages.py +25 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/sessions.py +831 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/status_codes.py +128 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/structures.py +99 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/utils.py +1086 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/LICENSE +19 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__init__.py +177 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__main__.py +245 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_export_format.py +76 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_extension.py +10 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_fileno.py +24 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_inspect.py +268 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_loop.py +43 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_null_file.py +69 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_pick.py +17 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_ratio.py +153 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_spinners.py +482 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_stack.py +16 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_timer.py +19 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_windows.py +71 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/_wrap.py +93 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/abc.py +33 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/align.py +306 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/ansi.py +241 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/bar.py +93 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/box.py +474 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/cells.py +174 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/color.py +621 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/columns.py +187 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/console.py +2680 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/constrain.py +37 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/containers.py +167 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/control.py +219 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/default_styles.py +193 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/diagnose.py +39 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/emoji.py +91 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/errors.py +34 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/filesize.py +88 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/highlighter.py +232 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/json.py +139 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/jupyter.py +101 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/layout.py +442 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/live.py +400 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/live_render.py +106 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/logging.py +297 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/markup.py +251 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/measure.py +151 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/padding.py +141 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/pager.py +34 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/palette.py +100 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/panel.py +317 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/pretty.py +1016 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/progress.py +1715 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/prompt.py +400 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/protocol.py +42 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/py.typed +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/region.py +10 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/repr.py +149 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/rule.py +130 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/scope.py +86 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/screen.py +54 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/segment.py +752 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/spinner.py +132 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/status.py +131 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/style.py +792 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/styled.py +42 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/syntax.py +985 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/table.py +1006 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/text.py +1361 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/theme.py +115 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/themes.py +5 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/traceback.py +899 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/tree.py +257 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/LICENSE +21 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__init__.py +8 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/_parser.py +777 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/_re.py +115 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/_types.py +10 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/py.typed +1 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/LICENSE +21 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__init__.py +36 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/_api.py +341 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/_macos.py +571 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/_windows.py +567 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/py.typed +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/connection.py +572 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/request.py +191 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/response.py +879 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
- package/xll/python/Lib/site-packages/pip/_vendor/vendor.txt +19 -0
- package/xll/python/Lib/site-packages/pip/py.typed +4 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/INSTALLER +1 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/METADATA +111 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/RECORD +878 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/REQUESTED +0 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/WHEEL +4 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/entry_points.txt +4 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/AUTHORS.txt +860 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/LICENSE.txt +20 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/xll/python/Scripts/pip.exe +0 -0
- package/xll/python/Scripts/pip3.12.exe +0 -0
- package/xll/python/Scripts/pip3.exe +0 -0
- package/xll/python/_asyncio.pyd +0 -0
- package/xll/python/_bz2.pyd +0 -0
- package/xll/python/_ctypes.pyd +0 -0
- package/xll/python/_decimal.pyd +0 -0
- package/xll/python/_elementtree.pyd +0 -0
- package/xll/python/_hashlib.pyd +0 -0
- package/xll/python/_lzma.pyd +0 -0
- package/xll/python/_msi.pyd +0 -0
- package/xll/python/_multiprocessing.pyd +0 -0
- package/xll/python/_overlapped.pyd +0 -0
- package/xll/python/_queue.pyd +0 -0
- package/xll/python/_socket.pyd +0 -0
- package/xll/python/_sqlite3.pyd +0 -0
- package/xll/python/_ssl.pyd +0 -0
- package/xll/python/_uuid.pyd +0 -0
- package/xll/python/_wmi.pyd +0 -0
- package/xll/python/_zoneinfo.pyd +0 -0
- package/xll/python/libcrypto-3.dll +0 -0
- package/xll/python/libffi-8.dll +0 -0
- package/xll/python/libssl-3.dll +0 -0
- package/xll/python/pyexpat.pyd +0 -0
- package/xll/python/python.cat +0 -0
- package/xll/python/python.exe +0 -0
- package/xll/python/python3.dll +0 -0
- package/xll/python/python312._pth +5 -0
- package/xll/python/python312.dll +0 -0
- package/xll/python/python312.zip +0 -0
- package/xll/python/pythonw.exe +0 -0
- package/xll/python/select.pyd +0 -0
- package/xll/python/sqlite3.dll +0 -0
- package/xll/python/unicodedata.pyd +0 -0
- package/xll/python/vcruntime140_1.dll +0 -0
- package/xll/python/winsound.pyd +0 -0
package/dist/config.js
CHANGED
|
@@ -285,4 +285,12 @@ export const DEV_MODE = process.env.SHORTCUT_DEV_MODE === '1';
|
|
|
285
285
|
export function getXllPath() {
|
|
286
286
|
return join(getAgentDir(), "xll", "ShortcutXL.xll");
|
|
287
287
|
}
|
|
288
|
+
/** Get path to the embedded Python directory (shipped with the npm package). */
|
|
289
|
+
export function getEmbeddedPythonDir() {
|
|
290
|
+
return join(getAgentDir(), 'xll', 'python');
|
|
291
|
+
}
|
|
292
|
+
/** Get path to the embedded python.exe. */
|
|
293
|
+
export function getEmbeddedPythonExe() {
|
|
294
|
+
return join(getEmbeddedPythonDir(), 'python.exe');
|
|
295
|
+
}
|
|
288
296
|
//# sourceMappingURL=config.js.map
|
|
@@ -214,7 +214,6 @@ async function loadExtensionModule(extensionPath) {
|
|
|
214
214
|
? { virtualModules: VIRTUAL_MODULES, tryNative: false }
|
|
215
215
|
: { alias: getAliases() })
|
|
216
216
|
});
|
|
217
|
-
// eslint-disable-next-line @next/next/no-assign-module-variable
|
|
218
217
|
const module = await jiti.import(extensionPath, { default: true });
|
|
219
218
|
const factory = module;
|
|
220
219
|
return typeof factory !== 'function' ? undefined : factory;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared utilities for install/uninstall scripts.
|
|
3
|
+
*
|
|
4
|
+
* Used by preflight.ts and uninstall.ts to avoid duplicating helpers
|
|
5
|
+
* for logging, running commands, and running PowerShell scripts.
|
|
6
|
+
*/
|
|
7
|
+
import chalk from 'chalk';
|
|
8
|
+
import { spawnSync } from 'child_process';
|
|
9
|
+
// ── Logging ──────────────────────────────────────────────────────────────
|
|
10
|
+
export function log(msg) {
|
|
11
|
+
console.log(chalk.cyan(' → ') + msg);
|
|
12
|
+
}
|
|
13
|
+
export function ok(msg) {
|
|
14
|
+
console.log(chalk.green(' ✓ ') + msg);
|
|
15
|
+
}
|
|
16
|
+
export function warn(msg) {
|
|
17
|
+
console.log(chalk.yellow(' ⚠ ') + msg);
|
|
18
|
+
}
|
|
19
|
+
export function header(step) {
|
|
20
|
+
console.log();
|
|
21
|
+
console.log(chalk.bold.white(` ${step}`));
|
|
22
|
+
console.log(chalk.dim(' ' + '─'.repeat(40)));
|
|
23
|
+
}
|
|
24
|
+
// ── Command execution ────────────────────────────────────────────────────
|
|
25
|
+
/** Run a command synchronously and return { ok, stdout, stderr }. */
|
|
26
|
+
export function run(cmd, options) {
|
|
27
|
+
try {
|
|
28
|
+
const result = spawnSync(cmd, [], {
|
|
29
|
+
encoding: 'utf-8',
|
|
30
|
+
timeout: options?.timeout ?? 30_000,
|
|
31
|
+
shell: true,
|
|
32
|
+
stdio: ['ignore', 'pipe', 'pipe']
|
|
33
|
+
});
|
|
34
|
+
return {
|
|
35
|
+
ok: result.status === 0,
|
|
36
|
+
stdout: (result.stdout ?? '').trim(),
|
|
37
|
+
stderr: (result.stderr ?? '').trim()
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
catch {
|
|
41
|
+
return { ok: false, stdout: '', stderr: 'command failed' };
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
/** Run a PowerShell script via base64-encoded command. */
|
|
45
|
+
export function runPS(script, options) {
|
|
46
|
+
const encoded = Buffer.from(script, 'utf16le').toString('base64');
|
|
47
|
+
return run(`powershell -NoProfile -EncodedCommand ${encoded}`, options);
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Escape a string for safe interpolation inside a PowerShell double-quoted string.
|
|
51
|
+
* Handles: backtick, dollar sign, double quote, and null byte.
|
|
52
|
+
*/
|
|
53
|
+
export function escapePSString(value) {
|
|
54
|
+
return value
|
|
55
|
+
.replace(/`/g, '``')
|
|
56
|
+
.replace(/\$/g, '`$')
|
|
57
|
+
.replace(/"/g, '`"');
|
|
58
|
+
}
|
|
59
|
+
//# sourceMappingURL=install-utils.js.map
|
package/dist/custom/preflight.js
CHANGED
|
@@ -6,17 +6,48 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import chalk from 'chalk';
|
|
8
8
|
import { spawn as cpSpawn, spawnSync } from 'child_process';
|
|
9
|
-
import { existsSync } from 'fs';
|
|
10
|
-
import { resolve } from 'path';
|
|
9
|
+
import { existsSync, readFileSync, writeFileSync } from 'fs';
|
|
10
|
+
import { join, resolve } from 'path';
|
|
11
11
|
import { createInterface } from 'readline';
|
|
12
|
-
import { getXllPath } from '../config.js';
|
|
12
|
+
import { getEmbeddedPythonExe, getXllPath, VERSION } from '../config.js';
|
|
13
13
|
import { resetShellConfig } from '../utils/shell.js';
|
|
14
14
|
import { EXCEL_HTTP_URL } from './constants.js';
|
|
15
15
|
import { fetchExcelConfig } from './excel-config.js';
|
|
16
|
+
import { escapePSString, run, runPS } from './install-utils.js';
|
|
16
17
|
import { getStableXllDir } from './sync-xll.js';
|
|
18
|
+
// ── PATH refresh ────────────────────────────────────────────────────────
|
|
19
|
+
/**
|
|
20
|
+
* Re-read the Windows PATH from the registry and merge it into process.env.PATH.
|
|
21
|
+
* After winget installs a program (Git, Python, etc.) the system/user PATH is
|
|
22
|
+
* updated, but the running Node process still has the old value. This reads the
|
|
23
|
+
* current registry entries and splices in any new directories.
|
|
24
|
+
*/
|
|
25
|
+
function refreshPath() {
|
|
26
|
+
try {
|
|
27
|
+
const user = spawnSync('reg', ['query', 'HKCU\\Environment', '/v', 'Path'], { encoding: 'utf-8', timeout: 5_000 });
|
|
28
|
+
const system = spawnSync('reg', ['query', 'HKLM\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment', '/v', 'Path'], { encoding: 'utf-8', timeout: 5_000 });
|
|
29
|
+
const extract = (out) => (out.match(/REG_(?:EXPAND_)?SZ\s+(.+)/i)?.[1] ?? '')
|
|
30
|
+
.split(';')
|
|
31
|
+
.map((p) => p.trim())
|
|
32
|
+
.filter(Boolean);
|
|
33
|
+
const fresh = new Set([...extract(system.stdout ?? ''), ...extract(user.stdout ?? '')]);
|
|
34
|
+
const current = (process.env.PATH ?? '').split(';').filter(Boolean);
|
|
35
|
+
const currentSet = new Set(current.map((p) => p.toLowerCase()));
|
|
36
|
+
for (const dir of fresh) {
|
|
37
|
+
if (!currentSet.has(dir.toLowerCase())) {
|
|
38
|
+
current.push(dir);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
process.env.PATH = current.join(';');
|
|
42
|
+
}
|
|
43
|
+
catch {
|
|
44
|
+
// Best-effort — if registry read fails, continue with stale PATH
|
|
45
|
+
}
|
|
46
|
+
}
|
|
17
47
|
/** Accumulated log entries, exposed to callers via runPreflight(). */
|
|
18
48
|
const preflightLog = [];
|
|
19
49
|
let currentStep = 'setup';
|
|
50
|
+
// ── Helpers ──────────────────────────────────────────────────────────────
|
|
20
51
|
const LOG_STYLES = {
|
|
21
52
|
info: { icon: '→', color: chalk.cyan },
|
|
22
53
|
ok: { icon: '✓', color: chalk.green },
|
|
@@ -50,30 +81,6 @@ async function promptConfirm(message) {
|
|
|
50
81
|
const answer = await prompt(`${chalk.yellow(' ⚠')} ${message} [y/N] `);
|
|
51
82
|
return answer.toLowerCase() === 'y' || answer.toLowerCase() === 'yes';
|
|
52
83
|
}
|
|
53
|
-
/** Run a command synchronously and return { ok, stdout, stderr }. */
|
|
54
|
-
function run(cmd, options) {
|
|
55
|
-
try {
|
|
56
|
-
const result = spawnSync(cmd, [], {
|
|
57
|
-
encoding: 'utf-8',
|
|
58
|
-
timeout: options?.timeout ?? 30_000,
|
|
59
|
-
shell: true,
|
|
60
|
-
stdio: ['ignore', 'pipe', 'pipe']
|
|
61
|
-
});
|
|
62
|
-
return {
|
|
63
|
-
ok: result.status === 0,
|
|
64
|
-
stdout: (result.stdout ?? '').trim(),
|
|
65
|
-
stderr: (result.stderr ?? '').trim()
|
|
66
|
-
};
|
|
67
|
-
}
|
|
68
|
-
catch {
|
|
69
|
-
return { ok: false, stdout: '', stderr: 'command failed' };
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
/** Run a PowerShell script via base64-encoded command. */
|
|
73
|
-
function runPS(script, options) {
|
|
74
|
-
const encoded = Buffer.from(script, 'utf16le').toString('base64');
|
|
75
|
-
return run(`powershell -NoProfile -EncodedCommand ${encoded}`, options);
|
|
76
|
-
}
|
|
77
84
|
// ── Progress spinner ────────────────────────────────────────────────────
|
|
78
85
|
const SPINNER_FRAMES = ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏'];
|
|
79
86
|
/**
|
|
@@ -160,12 +167,13 @@ async function ensureGitBash() {
|
|
|
160
167
|
}
|
|
161
168
|
}
|
|
162
169
|
log('Installing Git (you may see a permissions prompt — click Yes)...');
|
|
163
|
-
const result = await runWithProgress('winget install --id Git.Git -e -h --accept-source-agreements --accept-package-agreements', { timeout:
|
|
170
|
+
const result = await runWithProgress('winget install --id Git.Git -e -h --accept-source-agreements --accept-package-agreements', { timeout: 300_000, label: 'Installing Git' });
|
|
164
171
|
if (!result.ok && !result.stdout.includes('already installed')) {
|
|
165
172
|
warn('Install failed — the setup agent will help.');
|
|
166
173
|
return;
|
|
167
174
|
}
|
|
168
|
-
//
|
|
175
|
+
// Refresh PATH so the newly installed git is visible to this process
|
|
176
|
+
refreshPath();
|
|
169
177
|
resetShellConfig();
|
|
170
178
|
const gitCheck = run('git --version');
|
|
171
179
|
if (!gitCheck.ok) {
|
|
@@ -174,72 +182,57 @@ async function ensureGitBash() {
|
|
|
174
182
|
}
|
|
175
183
|
ok('Installed.');
|
|
176
184
|
}
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
const
|
|
180
|
-
if (
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
header('Python');
|
|
189
|
-
let freshInstall = false;
|
|
190
|
-
let detected = detectPython312();
|
|
191
|
-
if (detected) {
|
|
192
|
-
ok(detected.version);
|
|
185
|
+
async function ensurePipPackages() {
|
|
186
|
+
header('Python Packages');
|
|
187
|
+
const pythonExe = getEmbeddedPythonExe();
|
|
188
|
+
if (!existsSync(pythonExe)) {
|
|
189
|
+
warn('Embedded Python not found — the setup agent will help.');
|
|
190
|
+
return;
|
|
191
|
+
}
|
|
192
|
+
// Verify embedded Python + pip work (both are shipped in the npm package)
|
|
193
|
+
const versionCheck = run(`"${pythonExe}" --version`);
|
|
194
|
+
if (versionCheck.ok) {
|
|
195
|
+
ok(versionCheck.stdout);
|
|
193
196
|
}
|
|
194
197
|
else {
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
// The XLL finds Python via the Windows registry, not PATH. Verify the
|
|
216
|
-
// registry key exists — conda/pyenv-win installs may have Python on PATH
|
|
217
|
-
// but no registry entry, which silently breaks the XLL at runtime.
|
|
218
|
-
const regHkcu = run('reg query "HKCU\\SOFTWARE\\Python\\PythonCore\\3.12\\InstallPath" /ve');
|
|
219
|
-
const regResult = regHkcu.ok
|
|
220
|
-
? regHkcu
|
|
221
|
-
: run('reg query "HKLM\\SOFTWARE\\Python\\PythonCore\\3.12\\InstallPath" /ve');
|
|
222
|
-
if (!regResult.ok) {
|
|
223
|
-
if (freshInstall) {
|
|
224
|
-
warn('Python 3.12 was installed but the registry key is missing — ' +
|
|
225
|
-
'the setup agent will help resolve this.');
|
|
226
|
-
}
|
|
227
|
-
else {
|
|
228
|
-
warn('Python 3.12 is on PATH but not registered in the Windows registry. ' +
|
|
229
|
-
'The XLL needs the registry key to find Python. ' +
|
|
230
|
-
'Try reinstalling Python 3.12 from python.org (the official installer writes the registry key).');
|
|
231
|
-
}
|
|
198
|
+
warn('Embedded Python failed to run — the setup agent will help.');
|
|
199
|
+
return;
|
|
200
|
+
}
|
|
201
|
+
const pipCheck = run(`"${pythonExe}" -m pip --version`);
|
|
202
|
+
if (!pipCheck.ok) {
|
|
203
|
+
warn('pip not found in embedded Python — the setup agent will help.');
|
|
204
|
+
return;
|
|
205
|
+
}
|
|
206
|
+
// Install remaining packages. pip and openpyxl are pre-installed in the
|
|
207
|
+
// embedded distribution by vendor-python.ps1. pywin32, httpx, and
|
|
208
|
+
// playwright are installed here on first run.
|
|
209
|
+
// A version stamp avoids re-running pip on every launch after a sync.
|
|
210
|
+
const pipStampFile = join(getStableXllDir(), '.pip-version');
|
|
211
|
+
let pipUpToDate = false;
|
|
212
|
+
try {
|
|
213
|
+
pipUpToDate = existsSync(pipStampFile) && readFileSync(pipStampFile, 'utf-8').trim() === VERSION;
|
|
214
|
+
}
|
|
215
|
+
catch { /* proceed with install */ }
|
|
216
|
+
if (pipUpToDate) {
|
|
217
|
+
ok('Packages already installed.');
|
|
232
218
|
return;
|
|
233
219
|
}
|
|
234
|
-
// Install pywin32 + openpyxl + playwright + httpx
|
|
235
220
|
log('Installing required packages...');
|
|
236
|
-
const pipResult = await runWithProgress(
|
|
221
|
+
const pipResult = await runWithProgress(`"${pythonExe}" -m pip install pywin32 httpx playwright --no-warn-script-location`, { timeout: 300_000, label: 'Installing packages' });
|
|
237
222
|
if (pipResult.ok) {
|
|
238
223
|
ok('Packages installed.');
|
|
224
|
+
try {
|
|
225
|
+
writeFileSync(pipStampFile, VERSION, 'utf-8');
|
|
226
|
+
}
|
|
227
|
+
catch { /* non-fatal */ }
|
|
239
228
|
}
|
|
240
229
|
else {
|
|
241
230
|
warn('Package install had issues — the setup agent will help.');
|
|
242
231
|
}
|
|
232
|
+
}
|
|
233
|
+
async function ensureChrome() {
|
|
234
|
+
header('Chrome');
|
|
235
|
+
const pythonExe = getEmbeddedPythonExe();
|
|
243
236
|
// SEC filing PDF conversion requires Chrome (SEC blocks Chromium).
|
|
244
237
|
// Silently check for system Chrome — only prompt if it's missing.
|
|
245
238
|
const chromeCheck = runPS(`
|
|
@@ -249,77 +242,45 @@ async function ensurePython() {
|
|
|
249
242
|
const hasSystemChrome = chromeCheck.ok && chromeCheck.stdout.includes('FOUND');
|
|
250
243
|
if (hasSystemChrome) {
|
|
251
244
|
ok('Chrome found — SEC filing support ready.');
|
|
245
|
+
return;
|
|
252
246
|
}
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
247
|
+
// If the embedded Python isn't available, we can't install Chrome via
|
|
248
|
+
// playwright. Log it and let the installation agent handle it later.
|
|
249
|
+
if (!existsSync(pythonExe)) {
|
|
250
|
+
warn('Chrome not found and embedded Python unavailable — the setup agent will help.');
|
|
251
|
+
return;
|
|
252
|
+
}
|
|
253
|
+
const installChrome = await promptConfirm('Chrome not found. Install it? (Required for SEC filing PDF conversion)');
|
|
254
|
+
if (installChrome) {
|
|
255
|
+
log('Installing Chrome for PDF conversion...');
|
|
256
|
+
const pwResult = await runWithProgress(`"${pythonExe}" -m playwright install chrome`, {
|
|
257
|
+
timeout: 300_000,
|
|
258
|
+
label: 'Installing Chrome'
|
|
259
|
+
});
|
|
260
|
+
if (pwResult.ok) {
|
|
261
|
+
ok('Browser installed.');
|
|
267
262
|
}
|
|
268
263
|
else {
|
|
269
|
-
|
|
264
|
+
warn('Browser install had issues — the setup agent will help.');
|
|
270
265
|
}
|
|
271
266
|
}
|
|
272
|
-
}
|
|
273
|
-
/**
|
|
274
|
-
* Ensure the XLL directory is on the user's PATH environment variable.
|
|
275
|
-
*
|
|
276
|
-
* Excel's LoadLibrary does not search the loaded DLL's own directory for
|
|
277
|
-
* dependencies — it searches the application directory (Excel.exe's dir),
|
|
278
|
-
* system directories, and PATH. Without this, python312.dll (which lives
|
|
279
|
-
* next to ShortcutXL.xll) is invisible to the loader, causing a cryptic
|
|
280
|
-
* "file format and extension don't match" dialog.
|
|
281
|
-
*
|
|
282
|
-
* Delay-loading python312.dll is not possible because the Python C API
|
|
283
|
-
* exports data symbols (e.g. PyBool_Type) that MSVC cannot delay-load.
|
|
284
|
-
*/
|
|
285
|
-
function ensureXllDirOnPath(xllDir) {
|
|
286
|
-
const result = runPS(`
|
|
287
|
-
$dir = "${xllDir}"
|
|
288
|
-
$current = [Environment]::GetEnvironmentVariable('PATH', 'User')
|
|
289
|
-
$entries = $current -split ';' | Where-Object { $_ -ne '' }
|
|
290
|
-
$found = $entries | Where-Object { $_.TrimEnd('\\') -eq $dir.TrimEnd('\\') }
|
|
291
|
-
if ($found) {
|
|
292
|
-
Write-Output 'ALREADY'
|
|
293
|
-
} else {
|
|
294
|
-
$newPath = $current.TrimEnd(';') + ';' + $dir
|
|
295
|
-
[Environment]::SetEnvironmentVariable('PATH', $newPath, 'User')
|
|
296
|
-
Write-Output 'ADDED'
|
|
297
|
-
}
|
|
298
|
-
`);
|
|
299
|
-
if (result.stdout.includes('ADDED')) {
|
|
300
|
-
ok('Added XLL directory to PATH.');
|
|
301
|
-
}
|
|
302
|
-
else if (result.stdout.includes('ALREADY')) {
|
|
303
|
-
// Already on PATH — nothing to do
|
|
304
|
-
}
|
|
305
267
|
else {
|
|
306
|
-
|
|
268
|
+
ok('Skipped — can be installed later if needed.');
|
|
307
269
|
}
|
|
308
270
|
}
|
|
309
271
|
function ensureXllRegistry() {
|
|
310
272
|
header('Excel Add-in');
|
|
311
273
|
const xllPath = resolve(getXllPath()).replace(/\//g, '\\');
|
|
312
|
-
const xllDir = resolve(getXllPath(), '..').replace(/\//g, '\\');
|
|
313
274
|
if (!existsSync(xllPath)) {
|
|
314
275
|
warn('Add-in file not found — the setup agent will help.');
|
|
315
276
|
return;
|
|
316
277
|
}
|
|
317
|
-
ensureXllDirOnPath(xllDir);
|
|
318
278
|
// Find Office version and write the OPEN key so Excel loads the XLL on startup.
|
|
319
279
|
// Creates the Options key if it doesn't exist yet (fresh Office installs).
|
|
280
|
+
const safeXllPath = escapePSString(xllPath);
|
|
320
281
|
const result = runPS(`
|
|
321
282
|
$ErrorActionPreference = 'Stop'
|
|
322
|
-
$xllValue = '/R "${
|
|
283
|
+
$xllValue = '/R "${safeXllPath}"'
|
|
323
284
|
$versions = @('16.0', '15.0', '14.0')
|
|
324
285
|
$officeVer = $null
|
|
325
286
|
|
|
@@ -400,14 +361,20 @@ async function ensureExcelAndXll() {
|
|
|
400
361
|
const excelRunning = tasklist.ok && tasklist.stdout.includes('EXCEL.EXE');
|
|
401
362
|
if (excelRunning) {
|
|
402
363
|
warn('Excel is running but ShortcutXL is not loaded.');
|
|
403
|
-
await promptEnter('Please close Excel
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
364
|
+
await promptEnter('Please close Excel completely, then press Enter. We will reopen it for you.');
|
|
365
|
+
// Wait briefly for Excel to fully exit
|
|
366
|
+
for (let i = 0; i < 5; i++) {
|
|
367
|
+
const check = run('tasklist /FI "IMAGENAME eq EXCEL.EXE" /NH');
|
|
368
|
+
if (!check.ok || !check.stdout.includes('EXCEL.EXE'))
|
|
369
|
+
break;
|
|
370
|
+
await new Promise((r) => setTimeout(r, 1000));
|
|
371
|
+
}
|
|
407
372
|
}
|
|
408
|
-
//
|
|
373
|
+
// Launch Excel ourselves — the XLL is registered and will auto-load
|
|
374
|
+
log('Opening Excel...');
|
|
375
|
+
cpSpawn('cmd', ['/c', 'start', 'excel'], { detached: true, stdio: 'ignore' }).unref();
|
|
409
376
|
log('Waiting for ShortcutXL to start...');
|
|
410
|
-
for (let i = 0; i <
|
|
377
|
+
for (let i = 0; i < 15; i++) {
|
|
411
378
|
await new Promise((r) => setTimeout(r, 1000));
|
|
412
379
|
process.stderr.write(`\r ${chalk.cyan(SPINNER_FRAMES[i % SPINNER_FRAMES.length])} Waiting for ShortcutXL... (${i + 1}s)\x1b[K`);
|
|
413
380
|
try {
|
|
@@ -484,8 +451,10 @@ export async function runPreflight() {
|
|
|
484
451
|
if (process.platform === 'win32') {
|
|
485
452
|
await ensureGitBash();
|
|
486
453
|
}
|
|
487
|
-
//
|
|
488
|
-
await
|
|
454
|
+
// Pip packages into the embedded Python distribution
|
|
455
|
+
await ensurePipPackages();
|
|
456
|
+
// Chrome for SEC filing PDF conversion
|
|
457
|
+
await ensureChrome();
|
|
489
458
|
// Registry key for XLL
|
|
490
459
|
ensureXllRegistry();
|
|
491
460
|
// Excel + XLL running (asks user to open Excel)
|
|
@@ -1,35 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Installation system prompt.
|
|
3
3
|
*
|
|
4
|
-
* Includes
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* so this prompt won't show on subsequent launches.
|
|
4
|
+
* Includes a structured log of preflight results so the agent knows what
|
|
5
|
+
* succeeded and what needs fixing. The agent creates the installed marker
|
|
6
|
+
* once setup is verified, so this prompt won't show on subsequent launches.
|
|
8
7
|
*/
|
|
9
|
-
import { readFileSync } from 'fs';
|
|
10
8
|
import { join, resolve } from 'path';
|
|
11
|
-
import { fileURLToPath } from 'url';
|
|
12
9
|
import { getAgentDir, getInstalledMarkerPath } from '../../config.js';
|
|
13
10
|
import { EXCEL_HTTP_URL } from '../constants.js';
|
|
14
11
|
import { getStableXllDir } from '../sync-xll.js';
|
|
15
|
-
/**
|
|
16
|
-
* Read the preflight source to embed in the prompt.
|
|
17
|
-
* In dev we read the .ts file; in production (dist/) we read the compiled .js.
|
|
18
|
-
* Both live next to this file's parent directory as ../preflight.{ts,js}.
|
|
19
|
-
*/
|
|
20
|
-
function getPreflightSource() {
|
|
21
|
-
const thisDir = fileURLToPath(new URL('.', import.meta.url));
|
|
22
|
-
const base = join(thisDir, '..', 'preflight');
|
|
23
|
-
for (const ext of ['.ts', '.js']) {
|
|
24
|
-
try {
|
|
25
|
-
return readFileSync(base + ext, 'utf-8');
|
|
26
|
-
}
|
|
27
|
-
catch {
|
|
28
|
-
// try next
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
return '(preflight source not found)';
|
|
32
|
-
}
|
|
33
12
|
/** Format the preflight log for the system prompt. */
|
|
34
13
|
function formatPreflightLog(log) {
|
|
35
14
|
if (log.length === 0)
|
|
@@ -43,7 +22,6 @@ export function buildInstallationPrompt(preflightLog) {
|
|
|
43
22
|
const xllPath = join(stableXllDir, 'ShortcutXL.xll');
|
|
44
23
|
const agentDir = getAgentDir();
|
|
45
24
|
const installedMarker = getInstalledMarkerPath();
|
|
46
|
-
const preflightSource = getPreflightSource();
|
|
47
25
|
const preflightOutput = preflightLog
|
|
48
26
|
? formatPreflightLog(preflightLog)
|
|
49
27
|
: '(preflight did not run)';
|
|
@@ -66,7 +44,7 @@ ShortcutXL is a two-part system:
|
|
|
66
44
|
## Where things live
|
|
67
45
|
|
|
68
46
|
- **XLL binaries**: ${stableXllDir} — Automatically synced from the npm package on every startup. The registry key MUST point to this stable path, not the npm package directory — that path changes on every update.
|
|
69
|
-
- **Python
|
|
47
|
+
- **Python runtime**: The embedded Python 3.12 distribution in ${stableXllDir}/python/ (including python312.dll, which the XLL loads dynamically via LoadLibrary). Shipped with the npm package — no user-installed Python needed. Pip packages (pywin32, openpyxl, etc.) are installed into the embedded distribution's Lib/site-packages/ on first run.
|
|
70
48
|
- **User modules**: ${modulesDir} — Where shortcut_xl.py (the core helper library) and user-created UDF modules live. The XLL hot-reloads .py files from this directory.
|
|
71
49
|
- **Agent config**: ${agentDir} — Settings, auth tokens, session history.
|
|
72
50
|
|
|
@@ -85,17 +63,13 @@ If Git Bash is not installed:
|
|
|
85
63
|
|
|
86
64
|
---
|
|
87
65
|
|
|
88
|
-
## Step 1: Verify Python
|
|
66
|
+
## Step 1: Verify Python Runtime
|
|
89
67
|
|
|
90
|
-
|
|
68
|
+
Python 3.12 is shipped as an embedded distribution inside the npm package. No user-installed Python is needed. The XLL finds Python at ${stableXllDir}/python/ (relative to itself).
|
|
91
69
|
|
|
92
|
-
- **Check
|
|
93
|
-
- **Check
|
|
94
|
-
- **Check
|
|
95
|
-
\`\`\`bash
|
|
96
|
-
cp "<python-install-dir>/python3.dll" "${stableXllDir.replace(/\\/g, '/')}/"
|
|
97
|
-
cp "<python-install-dir>/python312.dll" "${stableXllDir.replace(/\\/g, '/')}/"
|
|
98
|
-
\`\`\`
|
|
70
|
+
- **Check Python DLLs**: \`ls ${stableXllDir.replace(/\\/g, '/')}/python/python312.dll ${stableXllDir.replace(/\\/g, '/')}/python/python3.dll\`. These live inside the embedded distribution and are loaded dynamically by the XLL. If missing, the npm package may be corrupted — reinstall with \`npm install -g shortcutxl\`.
|
|
71
|
+
- **Check embedded Python**: \`"${stableXllDir.replace(/\\/g, '/')}/python/python.exe" --version\`. Should print Python 3.12.x.
|
|
72
|
+
- **Check pip packages**: \`"${stableXllDir.replace(/\\/g, '/')}/python/python.exe" -m pip show pywin32 openpyxl\`. Install any that are missing using the embedded python.exe.
|
|
99
73
|
|
|
100
74
|
---
|
|
101
75
|
|
|
@@ -125,18 +99,20 @@ Check that Excel is open and it loads the XLL which initializes Python and start
|
|
|
125
99
|
- Verify the paths match: The config response's \`modules_path\` MUST be \`${modulesDir}\`. If it points elsewhere, the registry key is loading an old or wrong copy of the XLL — fix the registry to point to \`${xllPath}\` and restart Excel.
|
|
126
100
|
- If it fails: check if Excel is open, check File > Options > Add-ins for ShortcutXL, check %TEMP%\\shortcutxl.log for errors.
|
|
127
101
|
|
|
128
|
-
If
|
|
129
|
-
|
|
130
|
-
|
|
102
|
+
If the preflight already launched Excel and the connection is working, verify it quickly and move on.
|
|
103
|
+
|
|
104
|
+
If Excel is not running or the XLL is not responding:
|
|
105
|
+
- If Excel is already running without the XLL loaded, ask the user to save their work first, then close and reopen Excel.
|
|
131
106
|
- If Excel is not running, ask the user to open it.
|
|
107
|
+
- ALWAYS ask the user to open Excel themselves — do not launch Excel programmatically from the agent, as it can trigger a "file format and extension don't match" dialog.
|
|
132
108
|
|
|
133
|
-
Once done, re-verify connection and troubleshoot further if it is not verified.
|
|
109
|
+
Once done, re-verify connection and troubleshoot further if it is not verified.
|
|
134
110
|
|
|
135
111
|
---
|
|
136
112
|
|
|
137
113
|
## Step 4: Smoke Test
|
|
138
114
|
|
|
139
|
-
End-to-end verification: agent
|
|
115
|
+
End-to-end verification: agent -> HTTP -> XLL -> Python -> COM -> Excel.
|
|
140
116
|
|
|
141
117
|
Run via excel_exec:
|
|
142
118
|
\`\`\`python
|
|
@@ -167,16 +143,6 @@ Tell the user what to expect going forward:
|
|
|
167
143
|
|
|
168
144
|
---
|
|
169
145
|
|
|
170
|
-
## Preflight Source Code
|
|
171
|
-
|
|
172
|
-
The following is the exact preflight code that ran before you started. Use it to understand what was already attempted, what commands were run, and what each step does. This is your reference for troubleshooting — if a step failed, you can see exactly what command was tried and adapt.
|
|
173
|
-
|
|
174
|
-
\`\`\`typescript
|
|
175
|
-
${preflightSource}
|
|
176
|
-
\`\`\`
|
|
177
|
-
|
|
178
|
-
---
|
|
179
|
-
|
|
180
146
|
## Preflight Results
|
|
181
147
|
|
|
182
148
|
The preflight script ran the following steps. Lines marked [WARN] need your attention. Lines marked [ OK ] can be verified quickly and moved past.
|