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
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
from typing import Callable, Match, Optional
|
|
2
|
+
import re
|
|
3
|
+
|
|
4
|
+
from ._emoji_codes import EMOJI
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
_ReStringMatch = Match[str] # regex match object
|
|
8
|
+
_ReSubCallable = Callable[[_ReStringMatch], str] # Callable invoked by re.sub
|
|
9
|
+
_EmojiSubMethod = Callable[[_ReSubCallable, str], str] # Sub method of a compiled re
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def _emoji_replace(
|
|
13
|
+
text: str,
|
|
14
|
+
default_variant: Optional[str] = None,
|
|
15
|
+
_emoji_sub: _EmojiSubMethod = re.compile(r"(:(\S*?)(?:(?:\-)(emoji|text))?:)").sub,
|
|
16
|
+
) -> str:
|
|
17
|
+
"""Replace emoji code in text."""
|
|
18
|
+
get_emoji = EMOJI.__getitem__
|
|
19
|
+
variants = {"text": "\uFE0E", "emoji": "\uFE0F"}
|
|
20
|
+
get_variant = variants.get
|
|
21
|
+
default_variant_code = variants.get(default_variant, "") if default_variant else ""
|
|
22
|
+
|
|
23
|
+
def do_replace(match: Match[str]) -> str:
|
|
24
|
+
emoji_code, emoji_name, variant = match.groups()
|
|
25
|
+
try:
|
|
26
|
+
return get_emoji(emoji_name.lower()) + get_variant(
|
|
27
|
+
variant, default_variant_code
|
|
28
|
+
)
|
|
29
|
+
except KeyError:
|
|
30
|
+
return emoji_code
|
|
31
|
+
|
|
32
|
+
return _emoji_sub(do_replace, text)
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
CONSOLE_HTML_FORMAT = """\
|
|
2
|
+
<!DOCTYPE html>
|
|
3
|
+
<html>
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8">
|
|
6
|
+
<style>
|
|
7
|
+
{stylesheet}
|
|
8
|
+
body {{
|
|
9
|
+
color: {foreground};
|
|
10
|
+
background-color: {background};
|
|
11
|
+
}}
|
|
12
|
+
</style>
|
|
13
|
+
</head>
|
|
14
|
+
<body>
|
|
15
|
+
<pre style="font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace"><code style="font-family:inherit">{code}</code></pre>
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
CONSOLE_SVG_FORMAT = """\
|
|
21
|
+
<svg class="rich-terminal" viewBox="0 0 {width} {height}" xmlns="http://www.w3.org/2000/svg">
|
|
22
|
+
<!-- Generated with Rich https://www.textualize.io -->
|
|
23
|
+
<style>
|
|
24
|
+
|
|
25
|
+
@font-face {{
|
|
26
|
+
font-family: "Fira Code";
|
|
27
|
+
src: local("FiraCode-Regular"),
|
|
28
|
+
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff2/FiraCode-Regular.woff2") format("woff2"),
|
|
29
|
+
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff/FiraCode-Regular.woff") format("woff");
|
|
30
|
+
font-style: normal;
|
|
31
|
+
font-weight: 400;
|
|
32
|
+
}}
|
|
33
|
+
@font-face {{
|
|
34
|
+
font-family: "Fira Code";
|
|
35
|
+
src: local("FiraCode-Bold"),
|
|
36
|
+
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff2/FiraCode-Bold.woff2") format("woff2"),
|
|
37
|
+
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff/FiraCode-Bold.woff") format("woff");
|
|
38
|
+
font-style: bold;
|
|
39
|
+
font-weight: 700;
|
|
40
|
+
}}
|
|
41
|
+
|
|
42
|
+
.{unique_id}-matrix {{
|
|
43
|
+
font-family: Fira Code, monospace;
|
|
44
|
+
font-size: {char_height}px;
|
|
45
|
+
line-height: {line_height}px;
|
|
46
|
+
font-variant-east-asian: full-width;
|
|
47
|
+
}}
|
|
48
|
+
|
|
49
|
+
.{unique_id}-title {{
|
|
50
|
+
font-size: 18px;
|
|
51
|
+
font-weight: bold;
|
|
52
|
+
font-family: arial;
|
|
53
|
+
}}
|
|
54
|
+
|
|
55
|
+
{styles}
|
|
56
|
+
</style>
|
|
57
|
+
|
|
58
|
+
<defs>
|
|
59
|
+
<clipPath id="{unique_id}-clip-terminal">
|
|
60
|
+
<rect x="0" y="0" width="{terminal_width}" height="{terminal_height}" />
|
|
61
|
+
</clipPath>
|
|
62
|
+
{lines}
|
|
63
|
+
</defs>
|
|
64
|
+
|
|
65
|
+
{chrome}
|
|
66
|
+
<g transform="translate({terminal_x}, {terminal_y})" clip-path="url(#{unique_id}-clip-terminal)">
|
|
67
|
+
{backgrounds}
|
|
68
|
+
<g class="{unique_id}-matrix">
|
|
69
|
+
{matrix}
|
|
70
|
+
</g>
|
|
71
|
+
</g>
|
|
72
|
+
</svg>
|
|
73
|
+
"""
|
|
74
|
+
|
|
75
|
+
_SVG_FONT_FAMILY = "Rich Fira Code"
|
|
76
|
+
_SVG_CLASSES_PREFIX = "rich-svg"
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from typing import IO, Callable
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def get_fileno(file_like: IO[str]) -> int | None:
|
|
7
|
+
"""Get fileno() from a file, accounting for poorly implemented file-like objects.
|
|
8
|
+
|
|
9
|
+
Args:
|
|
10
|
+
file_like (IO): A file-like object.
|
|
11
|
+
|
|
12
|
+
Returns:
|
|
13
|
+
int | None: The result of fileno if available, or None if operation failed.
|
|
14
|
+
"""
|
|
15
|
+
fileno: Callable[[], int] | None = getattr(file_like, "fileno", None)
|
|
16
|
+
if fileno is not None:
|
|
17
|
+
try:
|
|
18
|
+
return fileno()
|
|
19
|
+
except Exception:
|
|
20
|
+
# `fileno` is documented as potentially raising a OSError
|
|
21
|
+
# Alas, from the issues, there are so many poorly implemented file-like objects,
|
|
22
|
+
# that `fileno()` can raise just about anything.
|
|
23
|
+
return None
|
|
24
|
+
return None
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
import inspect
|
|
2
|
+
from inspect import cleandoc, getdoc, getfile, isclass, ismodule, signature
|
|
3
|
+
from typing import Any, Collection, Iterable, Optional, Tuple, Type, Union
|
|
4
|
+
|
|
5
|
+
from .console import Group, RenderableType
|
|
6
|
+
from .control import escape_control_codes
|
|
7
|
+
from .highlighter import ReprHighlighter
|
|
8
|
+
from .jupyter import JupyterMixin
|
|
9
|
+
from .panel import Panel
|
|
10
|
+
from .pretty import Pretty
|
|
11
|
+
from .table import Table
|
|
12
|
+
from .text import Text, TextType
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def _first_paragraph(doc: str) -> str:
|
|
16
|
+
"""Get the first paragraph from a docstring."""
|
|
17
|
+
paragraph, _, _ = doc.partition("\n\n")
|
|
18
|
+
return paragraph
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class Inspect(JupyterMixin):
|
|
22
|
+
"""A renderable to inspect any Python Object.
|
|
23
|
+
|
|
24
|
+
Args:
|
|
25
|
+
obj (Any): An object to inspect.
|
|
26
|
+
title (str, optional): Title to display over inspect result, or None use type. Defaults to None.
|
|
27
|
+
help (bool, optional): Show full help text rather than just first paragraph. Defaults to False.
|
|
28
|
+
methods (bool, optional): Enable inspection of callables. Defaults to False.
|
|
29
|
+
docs (bool, optional): Also render doc strings. Defaults to True.
|
|
30
|
+
private (bool, optional): Show private attributes (beginning with underscore). Defaults to False.
|
|
31
|
+
dunder (bool, optional): Show attributes starting with double underscore. Defaults to False.
|
|
32
|
+
sort (bool, optional): Sort attributes alphabetically. Defaults to True.
|
|
33
|
+
all (bool, optional): Show all attributes. Defaults to False.
|
|
34
|
+
value (bool, optional): Pretty print value of object. Defaults to True.
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
def __init__(
|
|
38
|
+
self,
|
|
39
|
+
obj: Any,
|
|
40
|
+
*,
|
|
41
|
+
title: Optional[TextType] = None,
|
|
42
|
+
help: bool = False,
|
|
43
|
+
methods: bool = False,
|
|
44
|
+
docs: bool = True,
|
|
45
|
+
private: bool = False,
|
|
46
|
+
dunder: bool = False,
|
|
47
|
+
sort: bool = True,
|
|
48
|
+
all: bool = True,
|
|
49
|
+
value: bool = True,
|
|
50
|
+
) -> None:
|
|
51
|
+
self.highlighter = ReprHighlighter()
|
|
52
|
+
self.obj = obj
|
|
53
|
+
self.title = title or self._make_title(obj)
|
|
54
|
+
if all:
|
|
55
|
+
methods = private = dunder = True
|
|
56
|
+
self.help = help
|
|
57
|
+
self.methods = methods
|
|
58
|
+
self.docs = docs or help
|
|
59
|
+
self.private = private or dunder
|
|
60
|
+
self.dunder = dunder
|
|
61
|
+
self.sort = sort
|
|
62
|
+
self.value = value
|
|
63
|
+
|
|
64
|
+
def _make_title(self, obj: Any) -> Text:
|
|
65
|
+
"""Make a default title."""
|
|
66
|
+
title_str = (
|
|
67
|
+
str(obj)
|
|
68
|
+
if (isclass(obj) or callable(obj) or ismodule(obj))
|
|
69
|
+
else str(type(obj))
|
|
70
|
+
)
|
|
71
|
+
title_text = self.highlighter(title_str)
|
|
72
|
+
return title_text
|
|
73
|
+
|
|
74
|
+
def __rich__(self) -> Panel:
|
|
75
|
+
return Panel.fit(
|
|
76
|
+
Group(*self._render()),
|
|
77
|
+
title=self.title,
|
|
78
|
+
border_style="scope.border",
|
|
79
|
+
padding=(0, 1),
|
|
80
|
+
)
|
|
81
|
+
|
|
82
|
+
def _get_signature(self, name: str, obj: Any) -> Optional[Text]:
|
|
83
|
+
"""Get a signature for a callable."""
|
|
84
|
+
try:
|
|
85
|
+
_signature = str(signature(obj)) + ":"
|
|
86
|
+
except ValueError:
|
|
87
|
+
_signature = "(...)"
|
|
88
|
+
except TypeError:
|
|
89
|
+
return None
|
|
90
|
+
|
|
91
|
+
source_filename: Optional[str] = None
|
|
92
|
+
try:
|
|
93
|
+
source_filename = getfile(obj)
|
|
94
|
+
except (OSError, TypeError):
|
|
95
|
+
# OSError is raised if obj has no source file, e.g. when defined in REPL.
|
|
96
|
+
pass
|
|
97
|
+
|
|
98
|
+
callable_name = Text(name, style="inspect.callable")
|
|
99
|
+
if source_filename:
|
|
100
|
+
callable_name.stylize(f"link file://{source_filename}")
|
|
101
|
+
signature_text = self.highlighter(_signature)
|
|
102
|
+
|
|
103
|
+
qualname = name or getattr(obj, "__qualname__", name)
|
|
104
|
+
|
|
105
|
+
# If obj is a module, there may be classes (which are callable) to display
|
|
106
|
+
if inspect.isclass(obj):
|
|
107
|
+
prefix = "class"
|
|
108
|
+
elif inspect.iscoroutinefunction(obj):
|
|
109
|
+
prefix = "async def"
|
|
110
|
+
else:
|
|
111
|
+
prefix = "def"
|
|
112
|
+
|
|
113
|
+
qual_signature = Text.assemble(
|
|
114
|
+
(f"{prefix} ", f"inspect.{prefix.replace(' ', '_')}"),
|
|
115
|
+
(qualname, "inspect.callable"),
|
|
116
|
+
signature_text,
|
|
117
|
+
)
|
|
118
|
+
|
|
119
|
+
return qual_signature
|
|
120
|
+
|
|
121
|
+
def _render(self) -> Iterable[RenderableType]:
|
|
122
|
+
"""Render object."""
|
|
123
|
+
|
|
124
|
+
def sort_items(item: Tuple[str, Any]) -> Tuple[bool, str]:
|
|
125
|
+
key, (_error, value) = item
|
|
126
|
+
return (callable(value), key.strip("_").lower())
|
|
127
|
+
|
|
128
|
+
def safe_getattr(attr_name: str) -> Tuple[Any, Any]:
|
|
129
|
+
"""Get attribute or any exception."""
|
|
130
|
+
try:
|
|
131
|
+
return (None, getattr(obj, attr_name))
|
|
132
|
+
except Exception as error:
|
|
133
|
+
return (error, None)
|
|
134
|
+
|
|
135
|
+
obj = self.obj
|
|
136
|
+
keys = dir(obj)
|
|
137
|
+
total_items = len(keys)
|
|
138
|
+
if not self.dunder:
|
|
139
|
+
keys = [key for key in keys if not key.startswith("__")]
|
|
140
|
+
if not self.private:
|
|
141
|
+
keys = [key for key in keys if not key.startswith("_")]
|
|
142
|
+
not_shown_count = total_items - len(keys)
|
|
143
|
+
items = [(key, safe_getattr(key)) for key in keys]
|
|
144
|
+
if self.sort:
|
|
145
|
+
items.sort(key=sort_items)
|
|
146
|
+
|
|
147
|
+
items_table = Table.grid(padding=(0, 1), expand=False)
|
|
148
|
+
items_table.add_column(justify="right")
|
|
149
|
+
add_row = items_table.add_row
|
|
150
|
+
highlighter = self.highlighter
|
|
151
|
+
|
|
152
|
+
if callable(obj):
|
|
153
|
+
signature = self._get_signature("", obj)
|
|
154
|
+
if signature is not None:
|
|
155
|
+
yield signature
|
|
156
|
+
yield ""
|
|
157
|
+
|
|
158
|
+
if self.docs:
|
|
159
|
+
_doc = self._get_formatted_doc(obj)
|
|
160
|
+
if _doc is not None:
|
|
161
|
+
doc_text = Text(_doc, style="inspect.help")
|
|
162
|
+
doc_text = highlighter(doc_text)
|
|
163
|
+
yield doc_text
|
|
164
|
+
yield ""
|
|
165
|
+
|
|
166
|
+
if self.value and not (isclass(obj) or callable(obj) or ismodule(obj)):
|
|
167
|
+
yield Panel(
|
|
168
|
+
Pretty(obj, indent_guides=True, max_length=10, max_string=60),
|
|
169
|
+
border_style="inspect.value.border",
|
|
170
|
+
)
|
|
171
|
+
yield ""
|
|
172
|
+
|
|
173
|
+
for key, (error, value) in items:
|
|
174
|
+
key_text = Text.assemble(
|
|
175
|
+
(
|
|
176
|
+
key,
|
|
177
|
+
"inspect.attr.dunder" if key.startswith("__") else "inspect.attr",
|
|
178
|
+
),
|
|
179
|
+
(" =", "inspect.equals"),
|
|
180
|
+
)
|
|
181
|
+
if error is not None:
|
|
182
|
+
warning = key_text.copy()
|
|
183
|
+
warning.stylize("inspect.error")
|
|
184
|
+
add_row(warning, highlighter(repr(error)))
|
|
185
|
+
continue
|
|
186
|
+
|
|
187
|
+
if callable(value):
|
|
188
|
+
if not self.methods:
|
|
189
|
+
continue
|
|
190
|
+
|
|
191
|
+
_signature_text = self._get_signature(key, value)
|
|
192
|
+
if _signature_text is None:
|
|
193
|
+
add_row(key_text, Pretty(value, highlighter=highlighter))
|
|
194
|
+
else:
|
|
195
|
+
if self.docs:
|
|
196
|
+
docs = self._get_formatted_doc(value)
|
|
197
|
+
if docs is not None:
|
|
198
|
+
_signature_text.append("\n" if "\n" in docs else " ")
|
|
199
|
+
doc = highlighter(docs)
|
|
200
|
+
doc.stylize("inspect.doc")
|
|
201
|
+
_signature_text.append(doc)
|
|
202
|
+
|
|
203
|
+
add_row(key_text, _signature_text)
|
|
204
|
+
else:
|
|
205
|
+
add_row(key_text, Pretty(value, highlighter=highlighter))
|
|
206
|
+
if items_table.row_count:
|
|
207
|
+
yield items_table
|
|
208
|
+
elif not_shown_count:
|
|
209
|
+
yield Text.from_markup(
|
|
210
|
+
f"[b cyan]{not_shown_count}[/][i] attribute(s) not shown.[/i] "
|
|
211
|
+
f"Run [b][magenta]inspect[/]([not b]inspect[/])[/b] for options."
|
|
212
|
+
)
|
|
213
|
+
|
|
214
|
+
def _get_formatted_doc(self, object_: Any) -> Optional[str]:
|
|
215
|
+
"""
|
|
216
|
+
Extract the docstring of an object, process it and returns it.
|
|
217
|
+
The processing consists in cleaning up the docstring's indentation,
|
|
218
|
+
taking only its 1st paragraph if `self.help` is not True,
|
|
219
|
+
and escape its control codes.
|
|
220
|
+
|
|
221
|
+
Args:
|
|
222
|
+
object_ (Any): the object to get the docstring from.
|
|
223
|
+
|
|
224
|
+
Returns:
|
|
225
|
+
Optional[str]: the processed docstring, or None if no docstring was found.
|
|
226
|
+
"""
|
|
227
|
+
docs = getdoc(object_)
|
|
228
|
+
if docs is None:
|
|
229
|
+
return None
|
|
230
|
+
docs = cleandoc(docs).strip()
|
|
231
|
+
if not self.help:
|
|
232
|
+
docs = _first_paragraph(docs)
|
|
233
|
+
return escape_control_codes(docs)
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
def get_object_types_mro(obj: Union[object, Type[Any]]) -> Tuple[type, ...]:
|
|
237
|
+
"""Returns the MRO of an object's class, or of the object itself if it's a class."""
|
|
238
|
+
if not hasattr(obj, "__mro__"):
|
|
239
|
+
# N.B. we cannot use `if type(obj) is type` here because it doesn't work with
|
|
240
|
+
# some types of classes, such as the ones that use abc.ABCMeta.
|
|
241
|
+
obj = type(obj)
|
|
242
|
+
return getattr(obj, "__mro__", ())
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
def get_object_types_mro_as_strings(obj: object) -> Collection[str]:
|
|
246
|
+
"""
|
|
247
|
+
Returns the MRO of an object's class as full qualified names, or of the object itself if it's a class.
|
|
248
|
+
|
|
249
|
+
Examples:
|
|
250
|
+
`object_types_mro_as_strings(JSONDecoder)` will return `['json.decoder.JSONDecoder', 'builtins.object']`
|
|
251
|
+
"""
|
|
252
|
+
return [
|
|
253
|
+
f'{getattr(type_, "__module__", "")}.{getattr(type_, "__qualname__", "")}'
|
|
254
|
+
for type_ in get_object_types_mro(obj)
|
|
255
|
+
]
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
def is_object_one_of_types(
|
|
259
|
+
obj: object, fully_qualified_types_names: Collection[str]
|
|
260
|
+
) -> bool:
|
|
261
|
+
"""
|
|
262
|
+
Returns `True` if the given object's class (or the object itself, if it's a class) has one of the
|
|
263
|
+
fully qualified names in its MRO.
|
|
264
|
+
"""
|
|
265
|
+
for type_name in get_object_types_mro_as_strings(obj):
|
|
266
|
+
if type_name in fully_qualified_types_names:
|
|
267
|
+
return True
|
|
268
|
+
return False
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
from datetime import datetime
|
|
2
|
+
from typing import Iterable, List, Optional, TYPE_CHECKING, Union, Callable
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
from .text import Text, TextType
|
|
6
|
+
|
|
7
|
+
if TYPE_CHECKING:
|
|
8
|
+
from .console import Console, ConsoleRenderable, RenderableType
|
|
9
|
+
from .table import Table
|
|
10
|
+
|
|
11
|
+
FormatTimeCallable = Callable[[datetime], Text]
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class LogRender:
|
|
15
|
+
def __init__(
|
|
16
|
+
self,
|
|
17
|
+
show_time: bool = True,
|
|
18
|
+
show_level: bool = False,
|
|
19
|
+
show_path: bool = True,
|
|
20
|
+
time_format: Union[str, FormatTimeCallable] = "[%x %X]",
|
|
21
|
+
omit_repeated_times: bool = True,
|
|
22
|
+
level_width: Optional[int] = 8,
|
|
23
|
+
) -> None:
|
|
24
|
+
self.show_time = show_time
|
|
25
|
+
self.show_level = show_level
|
|
26
|
+
self.show_path = show_path
|
|
27
|
+
self.time_format = time_format
|
|
28
|
+
self.omit_repeated_times = omit_repeated_times
|
|
29
|
+
self.level_width = level_width
|
|
30
|
+
self._last_time: Optional[Text] = None
|
|
31
|
+
|
|
32
|
+
def __call__(
|
|
33
|
+
self,
|
|
34
|
+
console: "Console",
|
|
35
|
+
renderables: Iterable["ConsoleRenderable"],
|
|
36
|
+
log_time: Optional[datetime] = None,
|
|
37
|
+
time_format: Optional[Union[str, FormatTimeCallable]] = None,
|
|
38
|
+
level: TextType = "",
|
|
39
|
+
path: Optional[str] = None,
|
|
40
|
+
line_no: Optional[int] = None,
|
|
41
|
+
link_path: Optional[str] = None,
|
|
42
|
+
) -> "Table":
|
|
43
|
+
from .containers import Renderables
|
|
44
|
+
from .table import Table
|
|
45
|
+
|
|
46
|
+
output = Table.grid(padding=(0, 1))
|
|
47
|
+
output.expand = True
|
|
48
|
+
if self.show_time:
|
|
49
|
+
output.add_column(style="log.time")
|
|
50
|
+
if self.show_level:
|
|
51
|
+
output.add_column(style="log.level", width=self.level_width)
|
|
52
|
+
output.add_column(ratio=1, style="log.message", overflow="fold")
|
|
53
|
+
if self.show_path and path:
|
|
54
|
+
output.add_column(style="log.path")
|
|
55
|
+
row: List["RenderableType"] = []
|
|
56
|
+
if self.show_time:
|
|
57
|
+
log_time = log_time or console.get_datetime()
|
|
58
|
+
time_format = time_format or self.time_format
|
|
59
|
+
if callable(time_format):
|
|
60
|
+
log_time_display = time_format(log_time)
|
|
61
|
+
else:
|
|
62
|
+
log_time_display = Text(log_time.strftime(time_format))
|
|
63
|
+
if log_time_display == self._last_time and self.omit_repeated_times:
|
|
64
|
+
row.append(Text(" " * len(log_time_display)))
|
|
65
|
+
else:
|
|
66
|
+
row.append(log_time_display)
|
|
67
|
+
self._last_time = log_time_display
|
|
68
|
+
if self.show_level:
|
|
69
|
+
row.append(level)
|
|
70
|
+
|
|
71
|
+
row.append(Renderables(renderables))
|
|
72
|
+
if self.show_path and path:
|
|
73
|
+
path_text = Text()
|
|
74
|
+
path_text.append(
|
|
75
|
+
path, style=f"link file://{link_path}" if link_path else ""
|
|
76
|
+
)
|
|
77
|
+
if line_no:
|
|
78
|
+
path_text.append(":")
|
|
79
|
+
path_text.append(
|
|
80
|
+
f"{line_no}",
|
|
81
|
+
style=f"link file://{link_path}#{line_no}" if link_path else "",
|
|
82
|
+
)
|
|
83
|
+
row.append(path_text)
|
|
84
|
+
|
|
85
|
+
output.add_row(*row)
|
|
86
|
+
return output
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
if __name__ == "__main__": # pragma: no cover
|
|
90
|
+
from pip._vendor.rich.console import Console
|
|
91
|
+
|
|
92
|
+
c = Console()
|
|
93
|
+
c.print("[on blue]Hello", justify="right")
|
|
94
|
+
c.log("[on blue]hello", justify="right")
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
from typing import Iterable, Tuple, TypeVar
|
|
2
|
+
|
|
3
|
+
T = TypeVar("T")
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def loop_first(values: Iterable[T]) -> Iterable[Tuple[bool, T]]:
|
|
7
|
+
"""Iterate and generate a tuple with a flag for first value."""
|
|
8
|
+
iter_values = iter(values)
|
|
9
|
+
try:
|
|
10
|
+
value = next(iter_values)
|
|
11
|
+
except StopIteration:
|
|
12
|
+
return
|
|
13
|
+
yield True, value
|
|
14
|
+
for value in iter_values:
|
|
15
|
+
yield False, value
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def loop_last(values: Iterable[T]) -> Iterable[Tuple[bool, T]]:
|
|
19
|
+
"""Iterate and generate a tuple with a flag for last value."""
|
|
20
|
+
iter_values = iter(values)
|
|
21
|
+
try:
|
|
22
|
+
previous_value = next(iter_values)
|
|
23
|
+
except StopIteration:
|
|
24
|
+
return
|
|
25
|
+
for value in iter_values:
|
|
26
|
+
yield False, previous_value
|
|
27
|
+
previous_value = value
|
|
28
|
+
yield True, previous_value
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def loop_first_last(values: Iterable[T]) -> Iterable[Tuple[bool, bool, T]]:
|
|
32
|
+
"""Iterate and generate a tuple with a flag for first and last value."""
|
|
33
|
+
iter_values = iter(values)
|
|
34
|
+
try:
|
|
35
|
+
previous_value = next(iter_values)
|
|
36
|
+
except StopIteration:
|
|
37
|
+
return
|
|
38
|
+
first = True
|
|
39
|
+
for value in iter_values:
|
|
40
|
+
yield first, False, previous_value
|
|
41
|
+
first = False
|
|
42
|
+
previous_value = value
|
|
43
|
+
yield first, True, previous_value
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
from types import TracebackType
|
|
2
|
+
from typing import IO, Iterable, Iterator, List, Optional, Type
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class NullFile(IO[str]):
|
|
6
|
+
def close(self) -> None:
|
|
7
|
+
pass
|
|
8
|
+
|
|
9
|
+
def isatty(self) -> bool:
|
|
10
|
+
return False
|
|
11
|
+
|
|
12
|
+
def read(self, __n: int = 1) -> str:
|
|
13
|
+
return ""
|
|
14
|
+
|
|
15
|
+
def readable(self) -> bool:
|
|
16
|
+
return False
|
|
17
|
+
|
|
18
|
+
def readline(self, __limit: int = 1) -> str:
|
|
19
|
+
return ""
|
|
20
|
+
|
|
21
|
+
def readlines(self, __hint: int = 1) -> List[str]:
|
|
22
|
+
return []
|
|
23
|
+
|
|
24
|
+
def seek(self, __offset: int, __whence: int = 1) -> int:
|
|
25
|
+
return 0
|
|
26
|
+
|
|
27
|
+
def seekable(self) -> bool:
|
|
28
|
+
return False
|
|
29
|
+
|
|
30
|
+
def tell(self) -> int:
|
|
31
|
+
return 0
|
|
32
|
+
|
|
33
|
+
def truncate(self, __size: Optional[int] = 1) -> int:
|
|
34
|
+
return 0
|
|
35
|
+
|
|
36
|
+
def writable(self) -> bool:
|
|
37
|
+
return False
|
|
38
|
+
|
|
39
|
+
def writelines(self, __lines: Iterable[str]) -> None:
|
|
40
|
+
pass
|
|
41
|
+
|
|
42
|
+
def __next__(self) -> str:
|
|
43
|
+
return ""
|
|
44
|
+
|
|
45
|
+
def __iter__(self) -> Iterator[str]:
|
|
46
|
+
return iter([""])
|
|
47
|
+
|
|
48
|
+
def __enter__(self) -> IO[str]:
|
|
49
|
+
return self
|
|
50
|
+
|
|
51
|
+
def __exit__(
|
|
52
|
+
self,
|
|
53
|
+
__t: Optional[Type[BaseException]],
|
|
54
|
+
__value: Optional[BaseException],
|
|
55
|
+
__traceback: Optional[TracebackType],
|
|
56
|
+
) -> None:
|
|
57
|
+
pass
|
|
58
|
+
|
|
59
|
+
def write(self, text: str) -> int:
|
|
60
|
+
return 0
|
|
61
|
+
|
|
62
|
+
def flush(self) -> None:
|
|
63
|
+
pass
|
|
64
|
+
|
|
65
|
+
def fileno(self) -> int:
|
|
66
|
+
return -1
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
NULL_FILE = NullFile()
|