xlwings-server 1.1.0__py3-none-any.whl
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.
- xlwings_server/.env.template +145 -0
- xlwings_server/__init__.py +12 -0
- xlwings_server/_version.py +34 -0
- xlwings_server/auth/__init__.py +0 -0
- xlwings_server/auth/custom/__init__.py +26 -0
- xlwings_server/auth/entraid/__init__.py +131 -0
- xlwings_server/auth/entraid/jwks.py +10 -0
- xlwings_server/azure_functions_templates/.funcignore +28 -0
- xlwings_server/azure_functions_templates/function_app.py +28 -0
- xlwings_server/azure_functions_templates/host.json +22 -0
- xlwings_server/azure_functions_templates/local.settings.json +8 -0
- xlwings_server/build_utils/__init__.py +9 -0
- xlwings_server/build_utils/static_file_hasher.py +212 -0
- xlwings_server/cli.py +1592 -0
- xlwings_server/config.py +228 -0
- xlwings_server/custom_functions/__init__.py +8 -0
- xlwings_server/custom_functions/examples.py +177 -0
- xlwings_server/custom_scripts/__init__.py +8 -0
- xlwings_server/custom_scripts/examples.py +94 -0
- xlwings_server/databases.py +19 -0
- xlwings_server/dependencies.py +126 -0
- xlwings_server/docker_templates/.dockerignore +15 -0
- xlwings_server/docker_templates/Dockerfile +60 -0
- xlwings_server/docker_templates/docker-compose.yaml +32 -0
- xlwings_server/hotreload.py +59 -0
- xlwings_server/main.py +242 -0
- xlwings_server/models/__init__.py +14 -0
- xlwings_server/models/user.py +53 -0
- xlwings_server/object_handles.py +142 -0
- xlwings_server/routers/__init__.py +0 -0
- xlwings_server/routers/manifest.py +82 -0
- xlwings_server/routers/root.py +16 -0
- xlwings_server/routers/socketio.py +69 -0
- xlwings_server/routers/taskpane.py +12 -0
- xlwings_server/routers/xlwings.py +197 -0
- xlwings_server/security_headers.json +53 -0
- xlwings_server/serializers/__init__.py +25 -0
- xlwings_server/serializers/default_serializer.py +19 -0
- xlwings_server/serializers/dictionary_serializer.py +25 -0
- xlwings_server/serializers/framework.py +50 -0
- xlwings_server/serializers/numpy_serializer.py +26 -0
- xlwings_server/serializers/pandas_serializer.py +95 -0
- xlwings_server/static/css/core.css +28 -0
- xlwings_server/static/css/style.css +0 -0
- xlwings_server/static/images/favicon.png +0 -0
- xlwings_server/static/images/xlwings-16.png +0 -0
- xlwings_server/static/images/xlwings-32.png +0 -0
- xlwings_server/static/images/xlwings-64.png +0 -0
- xlwings_server/static/images/xlwings-80.png +0 -0
- xlwings_server/static/js/auth.js +13 -0
- xlwings_server/static/js/config.js +4 -0
- xlwings_server/static/js/core/alpinejs-csp-boilerplate.js +11 -0
- xlwings_server/static/js/core/bootstrap-customizations.js +7 -0
- xlwings_server/static/js/core/custom-functions-code.js +296 -0
- xlwings_server/static/js/core/examples.js +62 -0
- xlwings_server/static/js/core/hotreload.js +3 -0
- xlwings_server/static/js/core/htmx-handlers.js +86 -0
- xlwings_server/static/js/core/officejs-history-fix-part1.js +3 -0
- xlwings_server/static/js/core/officejs-history-fix-part2.js +2 -0
- xlwings_server/static/js/core/reload-custom-functions.js +79 -0
- xlwings_server/static/js/core/socketio-handlers.js +34 -0
- xlwings_server/static/js/core/xlwings-alert.js +22 -0
- xlwings_server/static/js/core/xlwingsjs/alert.js +85 -0
- xlwings_server/static/js/core/xlwingsjs/auth.js +63 -0
- xlwings_server/static/js/core/xlwingsjs/sheet-buttons.js +133 -0
- xlwings_server/static/js/core/xlwingsjs/utils.js +119 -0
- xlwings_server/static/js/core/xlwingsjs/wasm.js +131 -0
- xlwings_server/static/js/core/xlwingsjs/xlwings.js +1060 -0
- xlwings_server/static/js/main.js +0 -0
- xlwings_server/static/js/ribbon.js +17 -0
- xlwings_server/static/vendor/@alpinejs/LICENSE +21 -0
- xlwings_server/static/vendor/@alpinejs/csp/dist/cdn.min.js +7 -0
- xlwings_server/static/vendor/@microsoft/office-js/LICENSE.md +76 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/af-za/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/agaveerrorux.js +18 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/agavedefaulticon32x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/agavedefaulticon96x96.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/businessbarclose_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/dropdownarrow_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/ellipsis_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/miniinfoblue_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/moe_default_icon.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/moe_status_icons.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/office.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/refresh_16x16x32.png +0 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/index.html +16 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/style/agaveerrorux.css +482 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/am-et/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ae/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-bh/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-dz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-eg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-iq/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-jo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-kw/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-lb/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ly/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ma/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-om/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-qa/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-sa/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-sy/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-tn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ye/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry-2.8.0.min.js +2 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry-2.9.0.min.js +2 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/az-latn-az/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/be-by/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bg-bg/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bn-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/bs-latn-ba/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ca-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/cs-cz/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/cy-gb/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/da-dk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-at/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-de/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-li/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/de-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/el-gr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-029/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-au/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-bz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ca/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-gb/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ie/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-in/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-jm/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-my/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-nz/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-ph/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-sg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-tt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-us/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-za/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/en-zw/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ar/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-bo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-cl/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-co/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-cr/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-do/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ec/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-gt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-hn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-mx/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ni/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pa/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pe/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-pr/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-py/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-sv/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-us/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-uy/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es-ve/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/es6-promise.js +5 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/et-ee/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/eu-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.01.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.02.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-mac-16.00-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-mac-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-web-16.00-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-web-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.00.js +19 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.01-core.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.01.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excel-winrt-16.00.js +25 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelios-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.01.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.02.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fa-ir/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fi-fi/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fil-ph/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-be/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-ca/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-fr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/fr-mc/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ga-ie/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/gl-es/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/gu-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/he-il/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hi-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hr-ba/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hr-hr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/html2canvas.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hu-hu/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/hy-am/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/id-id/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/is-is/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/it-ch/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/it-it/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ja-jp/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ka-ge/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/kk-kz/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/km-kh/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/kn-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ko-kr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lb-lu/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lo-la/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lt-lt/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/lv-lv/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mk-mk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ml-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mn-mn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mr-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ms-bn/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ms-my/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/mt-mt/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nb-no/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ne-np/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nl-be/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nl-nl/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/nn-no/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/o15apptofilemappingtable.js +11 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/office-vsdoc.js +28596 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/office.js +84 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pl-pl/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pt-br/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/pt-pt/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ro-ro/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ru-ru/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/si-lk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sk-sk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sl-si/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sq-al/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-cyrl-cs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-cyrl-rs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-latn-cs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sr-latn-rs/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sv-fi/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sv-se/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/sw-ke/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ta-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/te-in/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/telemetry/oteljs.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/telemetry/oteljs_agave.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/th-th/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/tr-tr/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/uk-ua/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/ur-pk/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/vi-vn/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/webauth/webauth.browserauth.js +77 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/webauth/webauth.implicit.js +35 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-cn/office_strings.js +1 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-hk/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-mo/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-sg/office_strings.js +8 -0
- xlwings_server/static/vendor/@microsoft/office-js/dist/zh-tw/office_strings.js +1 -0
- xlwings_server/static/vendor/axios/dist/axios.min.js +3 -0
- xlwings_server/static/vendor/axios/dist/axios.min.js.map +1 -0
- xlwings_server/static/vendor/bootstrap/LICENSE +21 -0
- xlwings_server/static/vendor/bootstrap/dist/js/bootstrap.bundle.min.js +7 -0
- xlwings_server/static/vendor/bootstrap/dist/js/bootstrap.bundle.min.js.map +1 -0
- xlwings_server/static/vendor/bootstrap-xlwings/dist/bootstrap-xlwings.min.css +12 -0
- xlwings_server/static/vendor/bootstrap-xlwings/dist/bootstrap-xlwings.min.css.map +1 -0
- xlwings_server/static/vendor/htmx-ext-head-support/head-support.js +144 -0
- xlwings_server/static/vendor/htmx-ext-loading-states/loading-states.js +184 -0
- xlwings_server/static/vendor/htmx.org/LICENSE +13 -0
- xlwings_server/static/vendor/htmx.org/dist/htmx.min.js +1 -0
- xlwings_server/static/vendor/socket.io/LICENSE +22 -0
- xlwings_server/static/vendor/socket.io/client-dist/socket.io.min.js +7 -0
- xlwings_server/static/vendor/socket.io/client-dist/socket.io.min.js.map +1 -0
- xlwings_server/templates/_book.html +8 -0
- xlwings_server/templates/alert_base.html +16 -0
- xlwings_server/templates/base.html +117 -0
- xlwings_server/templates/examples/alpine/README.md +26 -0
- xlwings_server/templates/examples/alpine/taskpane.html +47 -0
- xlwings_server/templates/examples/auth/README.md +38 -0
- xlwings_server/templates/examples/auth/protected.html +8 -0
- xlwings_server/templates/examples/auth/public.html +11 -0
- xlwings_server/templates/examples/excel_object_model/README.md +49 -0
- xlwings_server/templates/examples/excel_object_model/add_name_form.html +27 -0
- xlwings_server/templates/examples/hello_world/README.md +9 -0
- xlwings_server/templates/examples/hello_world/taskpane_hello.html +24 -0
- xlwings_server/templates/examples/htmx_form/README.md +44 -0
- xlwings_server/templates/examples/htmx_form/_greeting.html +6 -0
- xlwings_server/templates/examples/htmx_form/taskpane_htmx_form.html +21 -0
- xlwings_server/templates/examples/live_form_validation/README.md +60 -0
- xlwings_server/templates/examples/live_form_validation/add_name_form.html +33 -0
- xlwings_server/templates/examples/multi_app/README.md +34 -0
- xlwings_server/templates/examples/multi_app/taskpane1.html +7 -0
- xlwings_server/templates/examples/multi_app/taskpane2.html +7 -0
- xlwings_server/templates/examples/multi_app/taskpane_loader.html +5 -0
- xlwings_server/templates/examples/navigation/README.md +28 -0
- xlwings_server/templates/examples/navigation/_navigation.html +16 -0
- xlwings_server/templates/examples/navigation/taskpane_one.html +8 -0
- xlwings_server/templates/examples/navigation/taskpane_three.html +8 -0
- xlwings_server/templates/examples/navigation/taskpane_two.html +8 -0
- xlwings_server/templates/examples/pictures/README.md +42 -0
- xlwings_server/templates/examples/pictures/_picture.html +4 -0
- xlwings_server/templates/examples/pictures/taskpane_pictures.html +26 -0
- xlwings_server/templates/manifest.xml +155 -0
- xlwings_server/templates/taskpane.html +1 -0
- xlwings_server/templates/xlwings_alert.html +27 -0
- xlwings_server/templates.py +61 -0
- xlwings_server/utils.py +32 -0
- xlwings_server/wasm/__init__.py +0 -0
- xlwings_server/wasm/config.py +24 -0
- xlwings_server/wasm/main.py +236 -0
- xlwings_server/wasm/requirements.txt +5 -0
- xlwings_server-1.1.0.dist-info/METADATA +61 -0
- xlwings_server-1.1.0.dist-info/RECORD +313 -0
- xlwings_server-1.1.0.dist-info/WHEEL +4 -0
- xlwings_server-1.1.0.dist-info/entry_points.txt +2 -0
- xlwings_server-1.1.0.dist-info/licenses/LICENSE.md +223 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: xlwings-server
|
|
3
|
+
Version: 1.1.0
|
|
4
|
+
Summary: Modern Excel add-ins with Python, running on your self-hosted server.
|
|
5
|
+
Project-URL: Homepage, https://server.xlwings.org
|
|
6
|
+
Project-URL: Documentation, https://server.xlwings.org
|
|
7
|
+
Project-URL: Repository, https://github.com/xlwings/xlwings-server
|
|
8
|
+
Project-URL: Issues, https://github.com/xlwings/xlwings-server/issues
|
|
9
|
+
Author-email: Zoomer Analytics GmbH <felix.zumstein@zoomeranalytics.com>
|
|
10
|
+
License: xlwings PRO License OR PolyForm Noncommercial License 1.0.0
|
|
11
|
+
License-File: LICENSE.md
|
|
12
|
+
Keywords: excel,macro,spreadsheet,vba,workbook,xls
|
|
13
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
20
|
+
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Requires-Dist: aiocache>=0.12.3
|
|
23
|
+
Requires-Dist: croniter>=6.0.0
|
|
24
|
+
Requires-Dist: fastapi>=0.125.0
|
|
25
|
+
Requires-Dist: gunicorn>=23.0.0; sys_platform != 'win32'
|
|
26
|
+
Requires-Dist: hiredis>=3.3.0
|
|
27
|
+
Requires-Dist: httptools>=0.7.1
|
|
28
|
+
Requires-Dist: httpx>=0.28.1
|
|
29
|
+
Requires-Dist: jinja2-fragments>=1.11.0
|
|
30
|
+
Requires-Dist: jinja2>=3.1.6
|
|
31
|
+
Requires-Dist: joserfc>=1.6.0
|
|
32
|
+
Requires-Dist: pydantic-settings>=2.12.0
|
|
33
|
+
Requires-Dist: python-dotenv>=1.2.1
|
|
34
|
+
Requires-Dist: python-multipart>=0.0.21
|
|
35
|
+
Requires-Dist: python-socketio>=5.15.1
|
|
36
|
+
Requires-Dist: redis>=7.1.0
|
|
37
|
+
Requires-Dist: tomlkit>=0.13.2
|
|
38
|
+
Requires-Dist: typing-extensions>=4.15.0; python_full_version < '3.11'
|
|
39
|
+
Requires-Dist: uvicorn>=0.38.0
|
|
40
|
+
Requires-Dist: uvloop>=0.22.1; sys_platform != 'win32'
|
|
41
|
+
Requires-Dist: xlwings>=0.33.20
|
|
42
|
+
Provides-Extra: dev
|
|
43
|
+
Requires-Dist: watchfiles>=1.1.1; extra == 'dev'
|
|
44
|
+
Description-Content-Type: text/markdown
|
|
45
|
+
|
|
46
|
+
# xlwings Server
|
|
47
|
+
|
|
48
|
+
xlwings Server adds Python support to Microsoft Excel and Google Sheets without the need of a local Python installation. xlwings Server is self-hosted and runs on any platform that supports Python or Docker, including bare-metal servers, Linux-based VMs, Docker Compose, Kubernetes and serverless products like Azure functions or AWS Lambda.
|
|
49
|
+
|
|
50
|
+
## Documentation
|
|
51
|
+
|
|
52
|
+
https://server.xlwings.org
|
|
53
|
+
|
|
54
|
+
## License
|
|
55
|
+
|
|
56
|
+
xlwings Server is source-available and dual-licensed under one of the following licenses:
|
|
57
|
+
|
|
58
|
+
- PolyForm Noncommercial License 1.0.0 (non-commercial use is free)
|
|
59
|
+
- xlwings PRO End User License Agreement (commercial use requires a [paid plan](https://www.xlwings.org/pricing))
|
|
60
|
+
|
|
61
|
+
See https://server.xlwings.org/en/latest/license/
|
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
xlwings_server/.env.template,sha256=HbF5d4IMx_yGK-u4r3JEKnTLQQcfXE9njOLg947rJRs,6739
|
|
2
|
+
xlwings_server/__init__.py,sha256=u_2WUu9zMObN4HG1cPB2QBf42VtVpXuPSNNYbw-N5VU,356
|
|
3
|
+
xlwings_server/_version.py,sha256=ePNVzJOkxR8FY5bezqKQ_fgBRbzH1G7QTaRDHvGQRAY,704
|
|
4
|
+
xlwings_server/cli.py,sha256=fOnAeNiVKJjI2J3rgzewMC07pokcMtY94zx1Ag35QWo,54705
|
|
5
|
+
xlwings_server/config.py,sha256=XpwnDg05K8mdyih4HQbamLbusUsYjeac-Ws6dzShIYs,8579
|
|
6
|
+
xlwings_server/databases.py,sha256=gtapmD6s-uQMMtRLacANyaunI3ZEm35WmPZTuoW93O4,450
|
|
7
|
+
xlwings_server/dependencies.py,sha256=5gFjKfCAK4b3euci8VFRwmdOX37WW4QskoIeHcTtaSI,4421
|
|
8
|
+
xlwings_server/hotreload.py,sha256=517D0GrMBTvkRh2XKB2ynzB3oKVDPmHl2F3vRZO4B5U,2020
|
|
9
|
+
xlwings_server/main.py,sha256=IZwtakheKWjvg0B8iIy7mT3-4C20B0PiO0psv8UAvgY,8814
|
|
10
|
+
xlwings_server/object_handles.py,sha256=Y0-wmDoAJ8yMfc22P49KFWn0e8zBzHX3yemPCViCEYE,4804
|
|
11
|
+
xlwings_server/security_headers.json,sha256=ErleKMuLmljFAZbu2La1bjEHG2ggOsQFgHdn4mf2he8,1673
|
|
12
|
+
xlwings_server/templates.py,sha256=qg8JMUarRCDFyLVhHPZQJ3LFZBh_7AqiYyaC9x2JpjQ,1738
|
|
13
|
+
xlwings_server/utils.py,sha256=oxsRHmvfovSFYfGy90KBYq5DMPuwQ3Xx2-RPpPn6LMQ,985
|
|
14
|
+
xlwings_server/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
xlwings_server/auth/custom/__init__.py,sha256=JzdvOPCpmhcHWTZ5Jx2PSnKWWiFUOonCTFuwv0tDUnU,865
|
|
16
|
+
xlwings_server/auth/entraid/__init__.py,sha256=R0PKyOWULmo0nvnRsP5XKKNBDhlDvWzSz80Po-RBtd8,5041
|
|
17
|
+
xlwings_server/auth/entraid/jwks.py,sha256=hbaQPVs_EkhArMSaGj0HLDCNeP0DvnpQBWHgWv8E9RQ,282
|
|
18
|
+
xlwings_server/azure_functions_templates/.funcignore,sha256=6FpKJaSQ73yfA0hpNajT4LJA8EeyFi0PpqgHUfo6uSQ,237
|
|
19
|
+
xlwings_server/azure_functions_templates/function_app.py,sha256=MpHNRvHre6-dXyJ8C9NtEK3hS8-B1qMR7GTJ5q0cv-M,760
|
|
20
|
+
xlwings_server/azure_functions_templates/host.json,sha256=T7_ZHMNc8tzWSDdP83LlqOTIDPh1tVjp5NVV7cW91yY,364
|
|
21
|
+
xlwings_server/azure_functions_templates/local.settings.json,sha256=f2bK69MaXKJct7hFV_wcYj2geqqYS9UqZ6j-ZbsbtV4,174
|
|
22
|
+
xlwings_server/build_utils/__init__.py,sha256=w1Iy2dePacsVOWxCHY2QeaLjuCXBuXR0brwqCRFDRuU,250
|
|
23
|
+
xlwings_server/build_utils/static_file_hasher.py,sha256=88z1KbVwa213tW7r_MRrAVk66QmxYPMhOTgMxzykhS4,7908
|
|
24
|
+
xlwings_server/custom_functions/__init__.py,sha256=R_Jq_Nig7yWLuNDIprfiH3xv_Y99Vc8lixvDYI2QSiQ,181
|
|
25
|
+
xlwings_server/custom_functions/examples.py,sha256=xNtpq0seudWOdNW-3s6nIzkBURShwGnAGVKH6L_xEwE,6472
|
|
26
|
+
xlwings_server/custom_scripts/__init__.py,sha256=R_Jq_Nig7yWLuNDIprfiH3xv_Y99Vc8lixvDYI2QSiQ,181
|
|
27
|
+
xlwings_server/custom_scripts/examples.py,sha256=F3KNjX3-ke8g5s8ujFc_I4JnFJyrLplZLdHe6_nWcT8,2842
|
|
28
|
+
xlwings_server/docker_templates/.dockerignore,sha256=gAW5mPxG0TsKCOvR5GsWj8bOW6CCWepnSQlNYNPC0Is,141
|
|
29
|
+
xlwings_server/docker_templates/Dockerfile,sha256=2Ld92axNUxtGrJTq0wq_kuoaTzr7HDxO_9chZpcerDw,1609
|
|
30
|
+
xlwings_server/docker_templates/docker-compose.yaml,sha256=HJKarhECs2KoNORt_C3gxGDDDLh4rmbHfD8RRoz_gXY,910
|
|
31
|
+
xlwings_server/models/__init__.py,sha256=Strqa-S4Te_y9ViEh9CwalkCewaEj1gaxHnjtUul85A,360
|
|
32
|
+
xlwings_server/models/user.py,sha256=im95za4xyZTPvEKAK9dulRFgihI09t3_pNdtE8uO29I,1710
|
|
33
|
+
xlwings_server/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
+
xlwings_server/routers/manifest.py,sha256=QOzNSjXao2Sg4Yyvuk_84ClX-zszgdUvbORtUbXqPxs,2490
|
|
35
|
+
xlwings_server/routers/root.py,sha256=LI-nR_b8aOR_h2UtmXNTLHhf-2lCxgkv5W8av0-_QR4,291
|
|
36
|
+
xlwings_server/routers/socketio.py,sha256=O8buzEN45WnM9Vkasgn2miptHgGMKO54AyEqJnLv5tE,2250
|
|
37
|
+
xlwings_server/routers/taskpane.py,sha256=XOzEEMPG88iuO6UEPqDnVtQP_9LmRmMw1VcTbUN5t_0,326
|
|
38
|
+
xlwings_server/routers/xlwings.py,sha256=o7m8yReGSDPJI7opt-qWu8xCO3ZSFltkP5C76my38hM,6902
|
|
39
|
+
xlwings_server/serializers/__init__.py,sha256=hAbcLC1Ry0k2bBW2avkCxtbwyhTxFkwAc9uORk2Lla0,860
|
|
40
|
+
xlwings_server/serializers/default_serializer.py,sha256=hhZG3hV83TbkSGDfPE4AVjGLaRwK0F5NDHHeq68r8xA,376
|
|
41
|
+
xlwings_server/serializers/dictionary_serializer.py,sha256=XJpugWuj2ESWDkaHTWGYBwZsWuCD1bY2-mBXNTpnf74,714
|
|
42
|
+
xlwings_server/serializers/framework.py,sha256=3rdYZ8K5o6f6w3_GHIslCR5GfHMlSLJ2Aj3ae2B7kDY,1419
|
|
43
|
+
xlwings_server/serializers/numpy_serializer.py,sha256=F4B2DE7ChUWTxHA_2ghIPkNJKHLRs-N6wwBhv9ejpr4,606
|
|
44
|
+
xlwings_server/serializers/pandas_serializer.py,sha256=5-DDLXZHgImooNgS8G1qIuMqYfrju8GC1tEEfYttZIM,3156
|
|
45
|
+
xlwings_server/static/css/core.css,sha256=UPNMVzShRTxpQoflAo2-tv-IFFzBAOiZ6Sc0HVJIu4E,506
|
|
46
|
+
xlwings_server/static/css/style.css,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
+
xlwings_server/static/images/favicon.png,sha256=u-8Wz_kWYNbDwuMweobEclGZiSdH5SEP5UWJ5pWLqSQ,15508
|
|
48
|
+
xlwings_server/static/images/xlwings-16.png,sha256=ucm57nY_56e4dvvhGELnLi1TCGE8HQvNi6-LMXbUSKc,579
|
|
49
|
+
xlwings_server/static/images/xlwings-32.png,sha256=pt0XxaO9GIGx2rAf1DysnFdVYT_7BO9n_F23zMPua-o,1206
|
|
50
|
+
xlwings_server/static/images/xlwings-64.png,sha256=i8cNy3op52ANyHucT52o2hBa8OD4PGg4Q_LWfpQbzm0,2480
|
|
51
|
+
xlwings_server/static/images/xlwings-80.png,sha256=EOqWYsMvWlZaCaDSTjRZbDRqLv62M0N_KrAAyFUmgUw,3279
|
|
52
|
+
xlwings_server/static/js/auth.js,sha256=46LeRQTMvcr7_F2ABmShXe3EpXdgmikwVsGp1ro8oNk,264
|
|
53
|
+
xlwings_server/static/js/config.js,sha256=TRkkascIgnmHDgmr33T6N69cXT84u_43NjFaBpsyaRU,235
|
|
54
|
+
xlwings_server/static/js/main.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
+
xlwings_server/static/js/ribbon.js,sha256=d4eIyxHJQJOA4uVC2wyzykMHqZPgl7x_AH3m1Ft_9hY,557
|
|
56
|
+
xlwings_server/static/js/core/alpinejs-csp-boilerplate.js,sha256=2AM1J-sfqt9gs9z8Fq4gDvkC9wgv0kZof_11ttwlBjk,260
|
|
57
|
+
xlwings_server/static/js/core/bootstrap-customizations.js,sha256=_D9Vy3DgsxAh51s4b7pjTo-oEelne8aym7fgO2TLbMA,251
|
|
58
|
+
xlwings_server/static/js/core/custom-functions-code.js,sha256=PmQo5yiCgrLoVCuxptSqIY2BiZeLTX7gArF_Z_Gf6Pg,8092
|
|
59
|
+
xlwings_server/static/js/core/examples.js,sha256=TCfLvf4TPsYtyt0iRO1IrjczlPiaJYOcXe8ioPk0TS4,1640
|
|
60
|
+
xlwings_server/static/js/core/hotreload.js,sha256=xZ9V_-tRK8QbCjZICysDoGvlDZcdLKvzzkOnjUHauKA,64
|
|
61
|
+
xlwings_server/static/js/core/htmx-handlers.js,sha256=70N8bMHS3ZSVp4BNqfJ6bCb84_Gr5Qr-r9sX72iklUw,2963
|
|
62
|
+
xlwings_server/static/js/core/officejs-history-fix-part1.js,sha256=oQ0PfnzP4P-692-EFqupiwgFBQEdSdRPXzVmqzrXUS4,173
|
|
63
|
+
xlwings_server/static/js/core/officejs-history-fix-part2.js,sha256=BCpjQy8z285mwYE0kX0xPp6vEp60T49JHatrWRlj8HQ,84
|
|
64
|
+
xlwings_server/static/js/core/reload-custom-functions.js,sha256=XRRrbzaK4_RMEWYfrqg1fDfm07y6pYxqbOtvYX5oXXQ,2720
|
|
65
|
+
xlwings_server/static/js/core/socketio-handlers.js,sha256=Qv7H4P9SCXQYyL7QpyCUw-p5f0jS5NvGMXK-vV4W99s,942
|
|
66
|
+
xlwings_server/static/js/core/xlwings-alert.js,sha256=9-h12wbtoJoTXKepdvpXkP7brcKavp-eGLRdU32Q4eo,758
|
|
67
|
+
xlwings_server/static/js/core/xlwingsjs/alert.js,sha256=O5xqgQDD_4XypehTurNnBydODEGdUoROBv4g__HSZP4,2382
|
|
68
|
+
xlwings_server/static/js/core/xlwingsjs/auth.js,sha256=DWVclVfM2wrVqVuG54aIdine5QeJmQMH8kvvUCPyNnA,1739
|
|
69
|
+
xlwings_server/static/js/core/xlwingsjs/sheet-buttons.js,sha256=3j16RSFpGKNyQJ5d36ExJuqV1PS0Q3cr8lb6xQrdCF4,4308
|
|
70
|
+
xlwings_server/static/js/core/xlwingsjs/utils.js,sha256=ginmndQ6Ju4jGKJ056aIGFS2MuY3wstXEFrfLgr5uE0,3385
|
|
71
|
+
xlwings_server/static/js/core/xlwingsjs/wasm.js,sha256=hxbysKYVhb5HXLTnGuXZkVqKD1SxRh6B-11FyTWgKR4,4114
|
|
72
|
+
xlwings_server/static/js/core/xlwingsjs/xlwings.js,sha256=8dyoBBYdycXIEYU4OX_GKAgxARx5rSc4TmMpfPWwHLc,31322
|
|
73
|
+
xlwings_server/static/vendor/@alpinejs/LICENSE,sha256=XwXEkl3T7fBJpwtLQDrA3UOyD3JQHZNZkR3dJdWsZX0,1092
|
|
74
|
+
xlwings_server/static/vendor/@alpinejs/csp/dist/cdn.min.js,sha256=58hj2liWaS9dR44Q2uCJ5hZP7RxcG2offLv3qbCT8FU,60017
|
|
75
|
+
xlwings_server/static/vendor/@microsoft/office-js/LICENSE.md,sha256=5jOfVbGSGC8aLqlqs561KItZqVIs8RlIcxgCsyVhcuQ,10786
|
|
76
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es6-promise.js,sha256=DS0n8O7S4-5QYnU3eyWSH1pB1Z0g8XFT4c-J8FHV_38,3427
|
|
77
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.01.js,sha256=Gs52ebNOurKXqSy2U3_sTrzv4opXaA74ea8YthWU9Z4,30483
|
|
78
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.02.js,sha256=IIInnTqsFG3MeW3wxuj6diiap28GUZ1cmyMNDlJAT0E,35329
|
|
79
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excel-15.js,sha256=n2P0g_Bu6ORodsyORZo4jZRbQwexTcvcdMeARG595zk,19785
|
|
80
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excel-mac-16.00-core.js,sha256=CutJbceftE5fh5560epnnGTUSUmBap9bOdFtufGhrc0,196276
|
|
81
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excel-mac-16.00.js,sha256=qdQEZw-RZMyO7yZgGhZL0_yUqkTRy6NXHiNZSqcUWC4,1339523
|
|
82
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excel-web-16.00-core.js,sha256=WQ4zkpCGa3Y_ZM0MTEXPCHEvsvcpMDc6IB--QphP0e4,224634
|
|
83
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excel-web-16.00.js,sha256=ARF--HjZ3OU4vXVfxdKV39oEKqRAkFMwYo0neVed5yw,1383830
|
|
84
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.00.js,sha256=Z76TozqV6n_2ouqVmIIY-J2assphaMrfcyaf4zcagGs,229797
|
|
85
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.01-core.js,sha256=nE_ArGzrYfZi0thDlFhlcr_K-jvB5o-nRXNTPcyZUh0,174985
|
|
86
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excel-win32-16.01.js,sha256=uhUhlletVQ-PqSmFNvYhmgtyIeANzy9HXy7AX83hnKk,1328691
|
|
87
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excel-winrt-16.00.js,sha256=X96p49FyCEaFdErGoxnrj3xfqkmF0dXYbbpvVDAOChI,1234562
|
|
88
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excelios-15.js,sha256=nmwPvhX_K_yaXP2EnUQ8Pi2_cSE2JDMNLn9MlAUvS_8,26387
|
|
89
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.01.js,sha256=tD5pVL5W1VvtJ-3S-FwizDQWqHjBqf26Dez01O36FVA,10858
|
|
90
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.02.js,sha256=xdsTNbKIJYIs1daVrXyFcBUzSwJ5FPwUxeLBqNUAzTI,11063
|
|
91
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/excelwebapp-15.js,sha256=YlBNQ6m6x1-nnG2qxkV8GsuFftcmNEqF5Oae69FcdnI,10881
|
|
92
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/html2canvas.js,sha256=94qbRkkL_s1UvcadrxR8Fhbc6vrqYaHTtags6sM_yBg,72444
|
|
93
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/o15apptofilemappingtable.js,sha256=LPbpCdpTkfUT8UN5w7qG_oiPCD2fggW8x72RzePZtSI,170827
|
|
94
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/office-vsdoc.js,sha256=yBanQ3xcdX5PHdxupNdsjTrtf-t_66I0X0YO30IEfxw,1765274
|
|
95
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/office.js,sha256=8lnjBHIY7wtx9Y59lIW62IkGhBgnoSF2g0CinkIsC2I,59420
|
|
96
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/af-za/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
97
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/agaveerrorux.js,sha256=OYjQ583sL-e5zl9G-tpv43nJNVyk7ssERuxwePc-2Yo,36840
|
|
98
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/index.html,sha256=Q0XCvkbCW_Q7SDYHVXKrNwqmq96kV1qzNS9yLlxgjIE,250
|
|
99
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/agavedefaulticon32x32.png,sha256=NxoCzD7cV3DF6QH1n2_QB_wQmOBNyBr3-wnvuA-c9-8,903
|
|
100
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/agavedefaulticon96x96.png,sha256=OEAsShJaulHR1sV5-48zoxUaznG81AQGvUoe3Z_RiIk,1934
|
|
101
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/businessbarclose_16x16x32.png,sha256=jOXHxovkyHxNr3XbEn7_qEwfqQO8Vgiy7kHDd7NpxW4,1082
|
|
102
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/dropdownarrow_16x16x32.png,sha256=uR3ZHbgOyj_itFQO3ZOJ9HBhfjuzGQsOyhmDTKz8Mh4,277
|
|
103
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/ellipsis_16x16x32.png,sha256=GOrf5rx57Jhx2hyYOsruKu1mLdANgVhqW2fnve3Ba_8,366
|
|
104
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/miniinfoblue_16x16x32.png,sha256=QBpArV2Op-LFG-UfOf1MpaJLDINfQlRkuSnyrD7gXP8,768
|
|
105
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/moe_default_icon.png,sha256=NxoCzD7cV3DF6QH1n2_QB_wQmOBNyBr3-wnvuA-c9-8,903
|
|
106
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/moe_status_icons.png,sha256=zMzLWoYkpILjyfaHP4nMvgMp1s6dQtKpw4jOpEfuIkY,10241
|
|
107
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/office.png,sha256=23fB8eE4oKE9m9XjyLLXk3vyCPXllCr0z9AodNdHQWE,399
|
|
108
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/images/refresh_16x16x32.png,sha256=bvZnx-enkWnFHU6La67nk4tuS56bbaH0K8DN-Zhh1qs,589
|
|
109
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/agaveerrorux/style/agaveerrorux.css,sha256=hG8gqFpPgvAZSnhF-YIYpq3KoKUzPohM09IZNSKtrcQ,10245
|
|
110
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/am-et/office_strings.js,sha256=LiFjgvwfFJIbUqW1fOT1uGzQ_9ZzUBa5Lo2oX-wKbEU,29455
|
|
111
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ae/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
112
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-bh/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
113
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-dz/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
114
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-eg/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
115
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-iq/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
116
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-jo/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
117
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-kw/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
118
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-lb/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
119
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ly/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
120
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ma/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
121
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-om/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
122
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-qa/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
123
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-sa/office_strings.js,sha256=EUz7tJyBVElwZWkqcQ9hh4MbWJg7K1GjrdiBFc-VqEo,26596
|
|
124
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-sy/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
125
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-tn/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
126
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ar-ye/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
127
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry-2.8.0.min.js,sha256=Zh5ZxBzKEIn551wigX0xNZg5EWOmHhkqx_X9_e0nU-g,53292
|
|
128
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry-2.9.0.min.js,sha256=xFnsFgjZioR6tMg3I-HEstxuWKcAbVVmxSmpMRPC7mI,53853
|
|
129
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ariatelemetry/aria-web-telemetry.js,sha256=SwFYP0dXWptzLSy5jgGQZuVA9lPK5dsZj7ReGbnjqGA,43452
|
|
130
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/az-latn-az/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
131
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/be-by/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
132
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/bg-bg/office_strings.js,sha256=M4xLvEVOCEcJ0jw7Bv3aEUPdemg6e_izfPEXJrHI51g,32071
|
|
133
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/bn-in/office_strings.js,sha256=Wqq3cUkltLgoIC1mLVIT9liVlpWwzAn4KL33iljO9k4,40390
|
|
134
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/bs-latn-ba/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
135
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ca-es/office_strings.js,sha256=Fl1-_-tX7tr-b3Fc6RhTscoO2F6hr9CP0I6gHqemqWg,22885
|
|
136
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/cs-cz/office_strings.js,sha256=1MfcHBU7Af2cWuzklXfhkijVxUEsjbWtAaPIDJ59B3k,21680
|
|
137
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/cy-gb/office_strings.js,sha256=dhhXjKhhiFMqcFdNtk-frQtkmpVm8sGqFmqsJWL9Az0,22262
|
|
138
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/da-dk/office_strings.js,sha256=LIXj4NXVvCblJoEZsz8Trl3_0-WaeZhrCNDPvv8sKvM,22145
|
|
139
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/de-at/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
140
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/de-ch/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
141
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/de-de/office_strings.js,sha256=0p4tTg26x8-r-Y3BgQJc0r-dzxo29655pRJs_48-lGc,23694
|
|
142
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/de-li/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
143
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/de-lu/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
144
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/el-gr/office_strings.js,sha256=PYRTxQQ5p_sLkoObg_YzQy-9uN3zogqf1d3tH9tsvSs,35159
|
|
145
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-029/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
146
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-au/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
147
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-bz/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
148
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-ca/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
149
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-gb/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
150
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-ie/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
151
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-in/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
152
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-jm/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
153
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-my/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
154
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-nz/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
155
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-ph/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
156
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-sg/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
157
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-tt/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
158
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-us/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
159
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-za/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
160
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/en-zw/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
161
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-ar/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
162
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-bo/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
163
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-cl/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
164
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-co/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
165
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-cr/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
166
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-do/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
167
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-ec/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
168
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-es/office_strings.js,sha256=njGTKlzeSwaNfA29ZR5_3IPG7i4qk98pZW4xJjroFUo,23004
|
|
169
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-gt/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
170
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-hn/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
171
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-mx/office_strings.js,sha256=nB_YywpviXCoKwSGzgoXM8H7pPLOLbnMueCA9SpVT1Y,22944
|
|
172
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-ni/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
173
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-pa/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
174
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-pe/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
175
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-pr/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
176
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-py/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
177
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-sv/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
178
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-us/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
179
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-uy/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
180
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/es-ve/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
181
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/et-ee/office_strings.js,sha256=TemXIG75SBHke8qldeU94pyxyxTMElhoYOMmsPFCQ4U,20638
|
|
182
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/eu-es/office_strings.js,sha256=3OoHRlfgiMoUKhbpsScSbywrjr5kT4H7EXWsj5-4iak,21891
|
|
183
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/fa-ir/office_strings.js,sha256=PcUg_tnOI1RAhkq2qdQHD4IX5TC_iNBeui1ZDqFgT94,28251
|
|
184
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/fi-fi/office_strings.js,sha256=TjwXv4-BexAHjQNh3voMQe3A8cB9Q2kFo5zrG1aYwhQ,21506
|
|
185
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/fil-ph/office_strings.js,sha256=jlYnQVMwHCldaRfpwUK6Qv8YdO9RDpUOyEnVZ14REeM,22849
|
|
186
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/fr-be/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
187
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/fr-ca/office_strings.js,sha256=ir1roMFLX-ufyLysKUNTLXBxLF_T1i7E9OLXjAI2pwQ,24809
|
|
188
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/fr-ch/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
189
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/fr-fr/office_strings.js,sha256=JQpG33RFSX5iJCL1_NI8qLHUI7gjALQNk-CQqtzNoOM,25129
|
|
190
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/fr-lu/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
191
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/fr-mc/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
192
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ga-ie/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
193
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/gl-es/office_strings.js,sha256=6DUo3ZLgdueHc5bfEr1Ejfui1qteugvovEMvS2o3yFM,22432
|
|
194
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/gu-in/office_strings.js,sha256=bhM_71TP05tBnBhAD8t-yebh2Albt28lnBVwevFE8Nc,37614
|
|
195
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/he-il/office_strings.js,sha256=a-w1ZzlP4qGZJL02oAKfPAYZ4pYdPI_aQ-LbCO6wTfM,25136
|
|
196
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/hi-in/office_strings.js,sha256=SgAlxNe44uo7WDIYEN3ikng5MaKlyjbrwfbehM-9gRc,37958
|
|
197
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/hr-ba/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
198
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/hr-hr/office_strings.js,sha256=fFK5YnUsxfG13p1oaa2i58hLdCrYXq65Rs7tsx4od7M,21611
|
|
199
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/hu-hu/office_strings.js,sha256=QgyM1TFOoKknnZsIIRhWP_Ls-UhlUULgDHk7smZbY-k,23272
|
|
200
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/hy-am/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
201
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/id-id/office_strings.js,sha256=bdBfcT_eXnFS3HB_wN1nkqV1PN_H5PK9nFgTB6E4zms,21075
|
|
202
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/is-is/office_strings.js,sha256=HgRpizmI7rXwTiTia7FOwXNv6FRYMIv558othq5_sGE,21691
|
|
203
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/it-ch/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
204
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/it-it/office_strings.js,sha256=4DLuVHB8amO7EbwrlSo-xhD58eTdMsZhbWIKDXquVNU,23183
|
|
205
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ja-jp/office_strings.js,sha256=V-xTo1Nztm4k4zj68a86eFpLJrkSA5gKQ3LTnZ0rRYo,26867
|
|
206
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ka-ge/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
207
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/kk-kz/office_strings.js,sha256=XW2PXL-nkXZJjWpbF_83D1BIr-eXriXa2qvLjZfzkFU,31477
|
|
208
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/km-kh/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
209
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/kn-in/office_strings.js,sha256=GXKkb7tXV6wtRHTzRbvcYxn3MuG_PNqsgITZ5bjJlRU,42215
|
|
210
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ko-kr/office_strings.js,sha256=kJ8XCAJ8o4cMDfLWC7qv6OZiJ68ZLrN3Ix0WRoBLB5Q,23964
|
|
211
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/lb-lu/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
212
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/lo-la/office_strings.js,sha256=1QgbxvskjSJrdOcF6lKaUqeVuDN3-7UN1marLTk0zrk,37526
|
|
213
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/lt-lt/office_strings.js,sha256=pbDSRl6RA5_Fqt93XLOCk_nkuulceA68c9CWrsUvRwE,21668
|
|
214
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/lv-lv/office_strings.js,sha256=edXFrtyfbtPB1OWS7usgYDXW7WYMBScwg7DoMkQXi_s,22134
|
|
215
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/mk-mk/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
216
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ml-in/office_strings.js,sha256=h4rXOsKFoPN4Du_sGC4DxhRLBAlFmPKXuU535UgHZJY,44477
|
|
217
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/mn-mn/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
218
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/mr-in/office_strings.js,sha256=vbD3SAzX6lebSejANJlQEO0Of_IMwJ6zL095a_AC7Uw,38199
|
|
219
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ms-bn/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
220
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ms-my/office_strings.js,sha256=mOenYUcRKp_IV3xOspjeoqSfQuoS0CkwfLMfOHRQXFM,21445
|
|
221
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/mt-mt/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
222
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/nb-no/office_strings.js,sha256=O0CRf0PxAfP3qUJh7O-wbCDKASI0SAhZIYzSDr-f4XI,21478
|
|
223
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ne-np/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
224
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/nl-be/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
225
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/nl-nl/office_strings.js,sha256=zATVWG-cQMWheeqv-JujlKfNtlIbOtzg-5JGzME6c54,22942
|
|
226
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/nn-no/office_strings.js,sha256=YMSziKKMXsQgsf-VTaysx_Lonais4rty1gnjkk2dm2A,21601
|
|
227
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/pl-pl/office_strings.js,sha256=Cwmf-tv3Cg2aZ-Cn9eJNCF6BnaA5-A7WJWneyKyCc4s,22854
|
|
228
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/pt-br/office_strings.js,sha256=sGlSb05THNUlRRRhAZ9tJcjOX9mJuKOHxCtSNsk1Pmc,22666
|
|
229
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/pt-pt/office_strings.js,sha256=QFzQBhbVfjI6q1gs8mt0EwXOa-uKHCsIl0j7BZdLO0E,22796
|
|
230
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ro-ro/office_strings.js,sha256=GfClFo-UDNbRx_zaj6w8oyHQsy6I3HXfKyD6Ql96ih4,22874
|
|
231
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ru-ru/office_strings.js,sha256=-bwDczXfYx4ziK9aFd8H8qSGdNY0t_Xm0brm3jY4Eqk,31940
|
|
232
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/si-lk/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
233
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/sk-sk/office_strings.js,sha256=TkNPDr8Yc4B6PSdgC7HwN4nXR5MYrxNRxSMaM9qbLuU,22066
|
|
234
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/sl-si/office_strings.js,sha256=TVopUtgyFZ1X1iJZJYzQmu8qmCE20v-vgqcfFYaLlNM,21163
|
|
235
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/sq-al/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
236
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/sr-cyrl-cs/office_strings.js,sha256=5MYOhfoNmE6BmBI0U5MGcsiozY6YPkJQi-WZjJBnhw0,30549
|
|
237
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/sr-cyrl-rs/office_strings.js,sha256=FSnTptBc1tCncu52w6web6QNjX_n1jLUQQ-MlvBQeWw,30553
|
|
238
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/sr-latn-cs/office_strings.js,sha256=Jg5b5GvoXIsIrLcm4KCYJKPWdvuYPpeQrFRpHHMP4fU,21727
|
|
239
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/sr-latn-rs/office_strings.js,sha256=G8sQASxBfv2dJVdWM-9KPBVjBHolvrMfdK-kr_NYVL8,21727
|
|
240
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/sv-fi/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
241
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/sv-se/office_strings.js,sha256=CTQrFDueaseEOI3ios6HD6eKZehsYGpfIFpKO2_wy9Q,21822
|
|
242
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/sw-ke/office_strings.js,sha256=83mS7okgMfFRTHX7KkkApcdewVNq_ThbrXqHgO4vU2U,21218
|
|
243
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ta-in/office_strings.js,sha256=N9WvmNMvxnddVhF_VatrQ6XjMuPaqWs1w-POP9FxPjM,43026
|
|
244
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/te-in/office_strings.js,sha256=KYuhxuT5QA8kQRfjojaGHSrHfEnjlOvfYx0JKBB7c3k,39880
|
|
245
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/telemetry/oteljs.js,sha256=13KrBfXjoMmFgspVWICITnhwMXyXiOhk4Wujld7naKo,24293
|
|
246
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/telemetry/oteljs_agave.js,sha256=9FLmKH2v07Yyy_-FM-1d_C9vR2yGcrRoz23P4yG4yIk,73679
|
|
247
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/th-th/office_strings.js,sha256=a7DcM2eJEJP8DU4sG9ZPzvrwik5VcIzc43VeIzqwNdA,38355
|
|
248
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/tr-tr/office_strings.js,sha256=18Nd5L6CNIVLHPdBUHANUgU_dTbmbZxxRLDWxa5UJQY,21789
|
|
249
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/uk-ua/office_strings.js,sha256=MIbBDoMFzszZ0gmqWBOLlK0dXrMqkgELJbNDj405K7s,31276
|
|
250
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/ur-pk/office_strings.js,sha256=tx3_gDn8JwwpxMn7plUHZsZc_x0nF1uOnZ6Z1BGtxow,28738
|
|
251
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/vi-vn/office_strings.js,sha256=lgesJZ8NxOL3EQGe7HvKRwoq43ucBSeLgYX4nYSBZGk,24889
|
|
252
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/webauth/webauth.browserauth.js,sha256=VOjUxRPyWBIR_fELei8MaK-IKSZBIOfenJOM6417MJw,340738
|
|
253
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/webauth/webauth.implicit.js,sha256=DNpJuv3TJCFYeHzP6pv8W3SNUnOIMYTql1c-Qnzp0gs,266595
|
|
254
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/zh-cn/office_strings.js,sha256=5VAdphxs2PWbvIKwIPd5CV7BxvYWDvbbGoIKX015cKw,19216
|
|
255
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/zh-hk/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
256
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/zh-mo/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
257
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/zh-sg/office_strings.js,sha256=W20_mPinVYePIms4_bH3wx5ntFYiHyU7cPlaozFmhZQ,21179
|
|
258
|
+
xlwings_server/static/vendor/@microsoft/office-js/dist/zh-tw/office_strings.js,sha256=xbJdbdcEtVFug8F2ysdfQiEkRO_GT5KQuvvgDnR2t1g,19344
|
|
259
|
+
xlwings_server/static/vendor/axios/dist/axios.min.js,sha256=9UiRtJ3cNB91qdVSArvgPVFvPO84K24aze2J0b7NKu0,54937
|
|
260
|
+
xlwings_server/static/vendor/axios/dist/axios.min.js.map,sha256=FnuxiqzTYe_EfLHfammuNdiqQT_XDFdNSdnjb1U3xMg,176715
|
|
261
|
+
xlwings_server/static/vendor/bootstrap/LICENSE,sha256=RiDIStXOhgL_ZWQO1rfIt467ngNlhPDrwczIggaku1E,1093
|
|
262
|
+
xlwings_server/static/vendor/bootstrap/dist/js/bootstrap.bundle.min.js,sha256=5P1JGBOIxI7FBAvT_mb1fCnI5n_NhQKzNUuW7Hq0fMc,80496
|
|
263
|
+
xlwings_server/static/vendor/bootstrap/dist/js/bootstrap.bundle.min.js.map,sha256=xhEj5YzApLZdc3ugcMSFkRs9vsbXuAK99mKDlavZwIs,332111
|
|
264
|
+
xlwings_server/static/vendor/bootstrap-xlwings/dist/bootstrap-xlwings.min.css,sha256=T9RjVNe-BcUaWVzqod0wWWXs-D1doGblDfd-1Gt8IQg,228545
|
|
265
|
+
xlwings_server/static/vendor/bootstrap-xlwings/dist/bootstrap-xlwings.min.css.map,sha256=QtWcRQQBBDXwZjBiKVcEVP0h4yo1wnLFum_6Kv7qGck,507631
|
|
266
|
+
xlwings_server/static/vendor/htmx-ext-head-support/head-support.js,sha256=IH9Em6cK0NOEsXNCiN2uhJPSZze9dNhRCCnAvltzdWg,6285
|
|
267
|
+
xlwings_server/static/vendor/htmx-ext-loading-states/loading-states.js,sha256=5U4hCA-1SFVik86NOWdV6A3hm0M403DgzmrXP9NCqs4,5551
|
|
268
|
+
xlwings_server/static/vendor/htmx.org/LICENSE,sha256=09JFb3ZBTyRWEEZg69Za_xwEzXlmuUK9q9Y_PNsxajg,642
|
|
269
|
+
xlwings_server/static/vendor/htmx.org/dist/htmx.min.js,sha256=YCMa5rqds4JesVomESLV9VkhxNU7Zr9jfcGLTuJ8efk,51076
|
|
270
|
+
xlwings_server/static/vendor/socket.io/LICENSE,sha256=cK67RscZU1RoNUaw_-vVmJyxjnJucV2bpx2WT5KfAHU,1113
|
|
271
|
+
xlwings_server/static/vendor/socket.io/client-dist/socket.io.min.js,sha256=sOc1gU-Nz-zWzbinzpWil6fh5fJyeinm9ZAYAdUvoMU,46831
|
|
272
|
+
xlwings_server/static/vendor/socket.io/client-dist/socket.io.min.js.map,sha256=SnCNwmOT61TFKKcXuyZz99rEer9Xjb9rO16O2WIX1SA,196256
|
|
273
|
+
xlwings_server/templates/_book.html,sha256=ezVFpNgAQe3MJLBo6BrBOg1sQgkgTXo0KahkRL-LUiI,284
|
|
274
|
+
xlwings_server/templates/alert_base.html,sha256=HlE2OvguJFpZfSTETPTL9vhVk6Y-5Hfnb633VcTduZg,379
|
|
275
|
+
xlwings_server/templates/base.html,sha256=WybfJZdd-umj9F2US_-0JIZ8zrTWRefJa4VU7VE9Y7o,5941
|
|
276
|
+
xlwings_server/templates/manifest.xml,sha256=w0U7C7RZETmIxpncLg-BRmEpy4tXJvyQneFlYpgSXBI,7698
|
|
277
|
+
xlwings_server/templates/taskpane.html,sha256=_XmhND6O4dWjOWHfEh7mmlECcqpSTO1EFOTuGkzTp_A,26
|
|
278
|
+
xlwings_server/templates/xlwings_alert.html,sha256=J4WZhJtajC0An5bY3E9dBqHcWX5DXRivWmULk2g4HHk,1049
|
|
279
|
+
xlwings_server/templates/examples/alpine/README.md,sha256=8UxAevMOCy5zSV1sTnuwrUQFOzJBSZR_Wyv4MS_Sj9U,612
|
|
280
|
+
xlwings_server/templates/examples/alpine/taskpane.html,sha256=TEl3tlqIqQbaT9No91yWa-On-2UcncthAwUEtn0ujhc,1670
|
|
281
|
+
xlwings_server/templates/examples/auth/README.md,sha256=JjjpRoyVESdi5_gilI-3p9Mjfge4eCvRo8jcfxzPRdw,1528
|
|
282
|
+
xlwings_server/templates/examples/auth/protected.html,sha256=ArR7bmegqrk8BraZag1yJ06OubKjQzdJDbFORXpagUs,212
|
|
283
|
+
xlwings_server/templates/examples/auth/public.html,sha256=XCk3DjQkShDaY8uTU_MZSdYaWlkxgpJSxs3g_Yc8_GI,474
|
|
284
|
+
xlwings_server/templates/examples/excel_object_model/README.md,sha256=7KAl0JAXM6eOuDtyow1prhX3QUoy24txSGMEqM63cyk,1417
|
|
285
|
+
xlwings_server/templates/examples/excel_object_model/add_name_form.html,sha256=Axbl2z0isB4PX9Ntpfh4Oo8AIYyWYtFqnF7CqH_aTS4,883
|
|
286
|
+
xlwings_server/templates/examples/hello_world/README.md,sha256=nIVYGMp7LNQ_uAVd7d7j40DrWVFDeyvOl1yqDpR9ah8,283
|
|
287
|
+
xlwings_server/templates/examples/hello_world/taskpane_hello.html,sha256=Yv1ihTRd0HgFGtttjomuBYPKsfYsI3gmq3k-sUdL9M8,961
|
|
288
|
+
xlwings_server/templates/examples/htmx_form/README.md,sha256=HcrjlF49mYNAkyzwOUjR63evlj_h_Zuz_w9Ehz5zmSI,1427
|
|
289
|
+
xlwings_server/templates/examples/htmx_form/_greeting.html,sha256=T19PiHPszW4cGz36YrCrcQCp-Bf3s1ySH1HsKkgUYXg,143
|
|
290
|
+
xlwings_server/templates/examples/htmx_form/taskpane_htmx_form.html,sha256=HbRpMLkrQhp969tatsXGpyHygMBW1KcrLdrC8_KeDnk,687
|
|
291
|
+
xlwings_server/templates/examples/live_form_validation/README.md,sha256=01yhiIKt0Nl_NZyaKhacwSnXPNzB9EVYOpg9TZ2hNVo,1730
|
|
292
|
+
xlwings_server/templates/examples/live_form_validation/add_name_form.html,sha256=aCRcFuL_ltGEzVCkS5MIr1fAABXfQtb3Tvk2pnQj9og,1056
|
|
293
|
+
xlwings_server/templates/examples/multi_app/README.md,sha256=4UjdL2vz_2teVoKkqQ3VjkLWLnfiq1_Q_FwkSe2JCew,834
|
|
294
|
+
xlwings_server/templates/examples/multi_app/taskpane1.html,sha256=UJVM8IenEIlMzlCeQKEqJkHGkLigFvqLvuPQ81KoWr8,140
|
|
295
|
+
xlwings_server/templates/examples/multi_app/taskpane2.html,sha256=wFSFnUeAwRdbC_Xa6OogKuc-5KFoFiNxbo4yNudH95g,140
|
|
296
|
+
xlwings_server/templates/examples/multi_app/taskpane_loader.html,sha256=jwnBtq7AtX-S6vZOCECBMBBNeDU-3tyRtPTTwMXhOO8,164
|
|
297
|
+
xlwings_server/templates/examples/navigation/README.md,sha256=2sB_6fGtQdFVHylTQPtiMLkP6h8MW_6M0PSvqndl2cE,887
|
|
298
|
+
xlwings_server/templates/examples/navigation/_navigation.html,sha256=W3lo-O9N6aVqLNuxMNDJiXZDGxbfcUNkcGjnXNcPVsY,460
|
|
299
|
+
xlwings_server/templates/examples/navigation/taskpane_one.html,sha256=HwPMVNaxgxF0WjNIG_fFeL32Ai9Piyt5ptmzY3AOpEU,201
|
|
300
|
+
xlwings_server/templates/examples/navigation/taskpane_three.html,sha256=fXg2cOq2XH5kYOWqn35mASvXXEvGLoZOTc4K0EItpuI,201
|
|
301
|
+
xlwings_server/templates/examples/navigation/taskpane_two.html,sha256=u1B46Q4WKnLNyI4y6t-jaIRSrIVEjsyFW2EoRAqhU30,201
|
|
302
|
+
xlwings_server/templates/examples/pictures/README.md,sha256=SvzQBsI5lQD8AxcHjYUwNIyh7OvU83yw5541QEKmDMc,1347
|
|
303
|
+
xlwings_server/templates/examples/pictures/_picture.html,sha256=XQ6ee75eCMZobiKlaHImpp515LG75tVRSW8SV5vPFjQ,135
|
|
304
|
+
xlwings_server/templates/examples/pictures/taskpane_pictures.html,sha256=JPVHLpacgjGt6KlU9k9jy1PEKmjT1TlPtfr4w9HeGEA,778
|
|
305
|
+
xlwings_server/wasm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
306
|
+
xlwings_server/wasm/config.py,sha256=bJkRGQqZRWKhphQxx92dP7TcGfdmwOcTSeUaub45VlU,707
|
|
307
|
+
xlwings_server/wasm/main.py,sha256=W-HdsyL4L-pvoE9oK4L-Fp71HP5lz14geOOAgvaLGqA,7423
|
|
308
|
+
xlwings_server/wasm/requirements.txt,sha256=BDRZOuwIAAnuy84UgQcdT_SccoI1e6HNUU8OJxiT23I,69
|
|
309
|
+
xlwings_server-1.1.0.dist-info/METADATA,sha256=a3lxZC08EZTytg_fAS4wQ3NiMgbRDlwsmjqww8hGmWQ,2644
|
|
310
|
+
xlwings_server-1.1.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
311
|
+
xlwings_server-1.1.0.dist-info/entry_points.txt,sha256=XlaMbdAxEuIk9wYPB62y8Y9Jltaghgdo_YwozLXq6fE,59
|
|
312
|
+
xlwings_server-1.1.0.dist-info/licenses/LICENSE.md,sha256=H5bJsQaGN4xIwsrb5syzELR0QJHeUHsDviqmHeNQcbI,25398
|
|
313
|
+
xlwings_server-1.1.0.dist-info/RECORD,,
|