├── .gitignore ├── DEVELOPMENT.md ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README.md ├── changelog.md ├── esbuild.mjs ├── makefile ├── mkdocs_pyscript ├── __init__.py ├── css │ └── pyrepl.css ├── js │ ├── makeblocks.js │ └── mini-coi.js ├── plugin.py └── prePostExtension.py ├── package-lock.json ├── package.json ├── requirements.txt ├── roadmap.md ├── setup.py └── tests ├── __init__.py ├── basic ├── docs │ └── index.md └── mkdocs.yml ├── conftest.py ├── prepost ├── docs │ └── index.md └── mkdocs.yml ├── support.py ├── test_dynamic.py └── test_static.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | share/python-wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .nox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *.cover 49 | *.py,cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | cover/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | .pybuilder/ 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # IPython 82 | profile_default/ 83 | ipython_config.py 84 | 85 | # pyenv 86 | # For a library or package, you might want to ignore these files since the code is 87 | # intended to run in multiple environments; otherwise, check them in: 88 | # .python-version 89 | 90 | # pipenv 91 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 92 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 93 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 94 | # install all needed dependencies. 95 | #Pipfile.lock 96 | 97 | # poetry 98 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 99 | # This is especially recommended for binary packages to ensure reproducibility, and is more 100 | # commonly ignored for libraries. 101 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 102 | #poetry.lock 103 | 104 | # pdm 105 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 106 | #pdm.lock 107 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 108 | # in version control. 109 | # https://pdm.fming.dev/#use-with-ide 110 | .pdm.toml 111 | 112 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 113 | __pypackages__/ 114 | 115 | # Celery stuff 116 | celerybeat-schedule 117 | celerybeat.pid 118 | 119 | # SageMath parsed files 120 | *.sage.py 121 | 122 | # Environments 123 | .env 124 | .venv 125 | env/ 126 | venv/ 127 | ENV/ 128 | env.bak/ 129 | venv.bak/ 130 | 131 | # Spyder project settings 132 | .spyderproject 133 | .spyproject 134 | 135 | # Rope project settings 136 | .ropeproject 137 | 138 | # mkdocs documentation 139 | **/site 140 | /_debug_site* 141 | 142 | # mypy 143 | .mypy_cache/ 144 | .dmypy.json 145 | dmypy.json 146 | 147 | # Pyre type checker 148 | .pyre/ 149 | 150 | # pytype static type analyzer 151 | .pytype/ 152 | 153 | # Cython debug symbols 154 | cython_debug/ 155 | 156 | # PyCharm 157 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 158 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 159 | # and can be added to the global gitignore or merged into this file. For a more nuclear 160 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 161 | #.idea/ 162 | 163 | node_modules -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- 1 | ## Installation 2 | To install the development environment: 3 | 1. Install [pipenv](https://pypi.org/project/pipenv/) on your system. 4 | 2. run `make setup` 5 | - This installs the npm build requirements and creates the pipenv 6 | 3. run `pipenv shell` to enter the development environment 7 | 8 | ## Testing 9 | 10 | With your `pipenv` environment active, run `make test` to run the static and Playwright integration tests. 11 | 12 | ## Building JS Artifacts 13 | Any JavaScript changes (in `makeblocks.js`) must be rebuilt into the distributed files using `make build-js`. 14 | 15 | To prepare a full build for release, run `make build-dist` 16 | 17 | ## Release 18 | 19 | To build a public a release to PyPI, run `make deploy-real` -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2023 Jeff Glass 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include mkdocs_pyscript/dist/js/*.js 2 | include mkdocs_pyscript/dist/css/*.css -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- 1 | [[source]] 2 | url = "https://pypi.org/simple" 3 | verify_ssl = true 4 | name = "pypi" 5 | 6 | [packages] 7 | mkdocs = ">=1.4" 8 | beautifulsoup4 = "*" 9 | 10 | [dev-packages] 11 | build = ">=1.0.3" 12 | pytest = ">=7.4" 13 | playwright = "1.33.0" 14 | pytest-playwright = "0.3.3" 15 | types-beautifulsoup4 = ">=4.12.0" 16 | mkdocs-pyscript = {editable = true, path = "."} 17 | black = ">=23.10.1" 18 | twine = ">=4.0.2" 19 | 20 | [requires] 21 | python_version = ">=3.10" 22 | -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "hash": { 4 | "sha256": "ad792c5e0b2a11a20a76a3df546bf55ad362dcb6d60c59080e104fa5b7e84cb2" 5 | }, 6 | "pipfile-spec": 6, 7 | "requires": { 8 | "python_version": ">=3.10" 9 | }, 10 | "sources": [ 11 | { 12 | "name": "pypi", 13 | "url": "https://pypi.org/simple", 14 | "verify_ssl": true 15 | } 16 | ] 17 | }, 18 | "default": { 19 | "beautifulsoup4": { 20 | "hashes": [ 21 | "sha256:492bbc69dca35d12daac71c4db1bfff0c876c00ef4a2ffacce226d4638eb72da", 22 | "sha256:bd2520ca0d9d7d12694a53d44ac482d181b4ec1888909b035a3dbf40d0f57d4a" 23 | ], 24 | "index": "pypi", 25 | "version": "==4.12.2" 26 | }, 27 | "certifi": { 28 | "hashes": [ 29 | "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082", 30 | "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9" 31 | ], 32 | "markers": "python_version >= '3.6'", 33 | "version": "==2023.7.22" 34 | }, 35 | "cffi": { 36 | "hashes": [ 37 | "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc", 38 | "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a", 39 | "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417", 40 | "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab", 41 | "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520", 42 | "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36", 43 | "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743", 44 | "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8", 45 | "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed", 46 | "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684", 47 | "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56", 48 | "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324", 49 | "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d", 50 | "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235", 51 | "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e", 52 | "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088", 53 | "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000", 54 | "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7", 55 | "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e", 56 | "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673", 57 | "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c", 58 | "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe", 59 | "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2", 60 | "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098", 61 | "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8", 62 | "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a", 63 | "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0", 64 | "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b", 65 | "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896", 66 | "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e", 67 | "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9", 68 | "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2", 69 | "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b", 70 | "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6", 71 | "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404", 72 | "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f", 73 | "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0", 74 | "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4", 75 | "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc", 76 | "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936", 77 | "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba", 78 | "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872", 79 | "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb", 80 | "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614", 81 | "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1", 82 | "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d", 83 | "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969", 84 | "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b", 85 | "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4", 86 | "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627", 87 | "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956", 88 | "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357" 89 | ], 90 | "markers": "python_version >= '3.8'", 91 | "version": "==1.16.0" 92 | }, 93 | "charset-normalizer": { 94 | "hashes": [ 95 | "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027", 96 | "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087", 97 | "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786", 98 | "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8", 99 | "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09", 100 | "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185", 101 | "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574", 102 | "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e", 103 | "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519", 104 | "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898", 105 | "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269", 106 | "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3", 107 | "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f", 108 | "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6", 109 | "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8", 110 | "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a", 111 | "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73", 112 | "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", 113 | "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714", 114 | "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2", 115 | "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc", 116 | "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce", 117 | "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d", 118 | "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e", 119 | "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6", 120 | "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269", 121 | "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96", 122 | "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d", 123 | "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a", 124 | "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4", 125 | "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77", 126 | "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d", 127 | "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0", 128 | "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed", 129 | "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068", 130 | "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac", 131 | "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25", 132 | "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8", 133 | "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab", 134 | "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26", 135 | "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2", 136 | "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db", 137 | "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f", 138 | "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5", 139 | "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99", 140 | "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c", 141 | "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d", 142 | "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811", 143 | "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa", 144 | "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a", 145 | "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03", 146 | "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b", 147 | "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04", 148 | "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c", 149 | "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001", 150 | "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458", 151 | "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389", 152 | "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99", 153 | "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985", 154 | "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537", 155 | "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238", 156 | "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f", 157 | "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d", 158 | "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796", 159 | "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a", 160 | "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143", 161 | "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8", 162 | "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c", 163 | "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5", 164 | "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5", 165 | "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711", 166 | "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4", 167 | "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6", 168 | "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c", 169 | "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7", 170 | "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4", 171 | "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b", 172 | "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae", 173 | "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12", 174 | "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c", 175 | "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae", 176 | "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8", 177 | "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887", 178 | "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b", 179 | "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4", 180 | "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f", 181 | "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5", 182 | "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33", 183 | "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519", 184 | "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561" 185 | ], 186 | "markers": "python_full_version >= '3.7.0'", 187 | "version": "==3.3.2" 188 | }, 189 | "click": { 190 | "hashes": [ 191 | "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", 192 | "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de" 193 | ], 194 | "markers": "python_version >= '3.7'", 195 | "version": "==8.1.7" 196 | }, 197 | "cryptography": { 198 | "hashes": [ 199 | "sha256:0c327cac00f082013c7c9fb6c46b7cc9fa3c288ca702c74773968173bda421bf", 200 | "sha256:0d2a6a598847c46e3e321a7aef8af1436f11c27f1254933746304ff014664d84", 201 | "sha256:227ec057cd32a41c6651701abc0328135e472ed450f47c2766f23267b792a88e", 202 | "sha256:22892cc830d8b2c89ea60148227631bb96a7da0c1b722f2aac8824b1b7c0b6b8", 203 | "sha256:392cb88b597247177172e02da6b7a63deeff1937fa6fec3bbf902ebd75d97ec7", 204 | "sha256:3be3ca726e1572517d2bef99a818378bbcf7d7799d5372a46c79c29eb8d166c1", 205 | "sha256:573eb7128cbca75f9157dcde974781209463ce56b5804983e11a1c462f0f4e88", 206 | "sha256:580afc7b7216deeb87a098ef0674d6ee34ab55993140838b14c9b83312b37b86", 207 | "sha256:5a70187954ba7292c7876734183e810b728b4f3965fbe571421cb2434d279179", 208 | "sha256:73801ac9736741f220e20435f84ecec75ed70eda90f781a148f1bad546963d81", 209 | "sha256:7d208c21e47940369accfc9e85f0de7693d9a5d843c2509b3846b2db170dfd20", 210 | "sha256:8254962e6ba1f4d2090c44daf50a547cd5f0bf446dc658a8e5f8156cae0d8548", 211 | "sha256:88417bff20162f635f24f849ab182b092697922088b477a7abd6664ddd82291d", 212 | "sha256:a48e74dad1fb349f3dc1d449ed88e0017d792997a7ad2ec9587ed17405667e6d", 213 | "sha256:b948e09fe5fb18517d99994184854ebd50b57248736fd4c720ad540560174ec5", 214 | "sha256:c707f7afd813478e2019ae32a7c49cd932dd60ab2d2a93e796f68236b7e1fbf1", 215 | "sha256:d38e6031e113b7421db1de0c1b1f7739564a88f1684c6b89234fbf6c11b75147", 216 | "sha256:d3977f0e276f6f5bf245c403156673db103283266601405376f075c849a0b936", 217 | "sha256:da6a0ff8f1016ccc7477e6339e1d50ce5f59b88905585f77193ebd5068f1e797", 218 | "sha256:e270c04f4d9b5671ebcc792b3ba5d4488bf7c42c3c241a3748e2599776f29696", 219 | "sha256:e886098619d3815e0ad5790c973afeee2c0e6e04b4da90b88e6bd06e2a0b1b72", 220 | "sha256:ec3b055ff8f1dce8e6ef28f626e0972981475173d7973d63f271b29c8a2897da", 221 | "sha256:fba1e91467c65fe64a82c689dc6cf58151158993b13eb7a7f3f4b7f395636723" 222 | ], 223 | "markers": "python_version >= '3.7'", 224 | "version": "==41.0.5" 225 | }, 226 | "docutils": { 227 | "hashes": [ 228 | "sha256:96f387a2c5562db4476f09f13bbab2192e764cac08ebbf3a34a95d9b1e4a59d6", 229 | "sha256:f08a4e276c3a1583a86dce3e34aba3fe04d02bba2dd51ed16106244e8a923e3b" 230 | ], 231 | "markers": "python_version >= '3.7'", 232 | "version": "==0.20.1" 233 | }, 234 | "ghp-import": { 235 | "hashes": [ 236 | "sha256:8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619", 237 | "sha256:9c535c4c61193c2df8871222567d7fd7e5014d835f97dc7b7439069e2413d343" 238 | ], 239 | "version": "==2.1.0" 240 | }, 241 | "idna": { 242 | "hashes": [ 243 | "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4", 244 | "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2" 245 | ], 246 | "markers": "python_version >= '3.5'", 247 | "version": "==3.4" 248 | }, 249 | "importlib-metadata": { 250 | "hashes": [ 251 | "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb", 252 | "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743" 253 | ], 254 | "markers": "python_version >= '3.8'", 255 | "version": "==6.8.0" 256 | }, 257 | "jaraco.classes": { 258 | "hashes": [ 259 | "sha256:10afa92b6743f25c0cf5f37c6bb6e18e2c5bb84a16527ccfc0040ea377e7aaeb", 260 | "sha256:c063dd08e89217cee02c8d5e5ec560f2c8ce6cdc2fcdc2e68f7b2e5547ed3621" 261 | ], 262 | "markers": "python_version >= '3.8'", 263 | "version": "==3.3.0" 264 | }, 265 | "jeepney": { 266 | "hashes": [ 267 | "sha256:5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806", 268 | "sha256:c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755" 269 | ], 270 | "markers": "sys_platform == 'linux'", 271 | "version": "==0.8.0" 272 | }, 273 | "jinja2": { 274 | "hashes": [ 275 | "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852", 276 | "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61" 277 | ], 278 | "markers": "python_version >= '3.7'", 279 | "version": "==3.1.2" 280 | }, 281 | "keyring": { 282 | "hashes": [ 283 | "sha256:4901caaf597bfd3bbd78c9a0c7c4c29fcd8310dab2cffefe749e916b6527acd6", 284 | "sha256:ca0746a19ec421219f4d713f848fa297a661a8a8c1504867e55bfb5e09091509" 285 | ], 286 | "markers": "python_version >= '3.8'", 287 | "version": "==24.2.0" 288 | }, 289 | "markdown": { 290 | "hashes": [ 291 | "sha256:5874b47d4ee3f0b14d764324d2c94c03ea66bee56f2d929da9f2508d65e722dc", 292 | "sha256:b65d7beb248dc22f2e8a31fb706d93798093c308dc1aba295aedeb9d41a813bd" 293 | ], 294 | "index": "pypi", 295 | "version": "==3.5.1" 296 | }, 297 | "markdown-it-py": { 298 | "hashes": [ 299 | "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", 300 | "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb" 301 | ], 302 | "markers": "python_version >= '3.8'", 303 | "version": "==3.0.0" 304 | }, 305 | "markupsafe": { 306 | "hashes": [ 307 | "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e", 308 | "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e", 309 | "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431", 310 | "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686", 311 | "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c", 312 | "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559", 313 | "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc", 314 | "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb", 315 | "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939", 316 | "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c", 317 | "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0", 318 | "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4", 319 | "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9", 320 | "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575", 321 | "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba", 322 | "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d", 323 | "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd", 324 | "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3", 325 | "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00", 326 | "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155", 327 | "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac", 328 | "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52", 329 | "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f", 330 | "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8", 331 | "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b", 332 | "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007", 333 | "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24", 334 | "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea", 335 | "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198", 336 | "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0", 337 | "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee", 338 | "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be", 339 | "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2", 340 | "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1", 341 | "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707", 342 | "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6", 343 | "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c", 344 | "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58", 345 | "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823", 346 | "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779", 347 | "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636", 348 | "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c", 349 | "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad", 350 | "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee", 351 | "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc", 352 | "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2", 353 | "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48", 354 | "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7", 355 | "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e", 356 | "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b", 357 | "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa", 358 | "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5", 359 | "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e", 360 | "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb", 361 | "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9", 362 | "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57", 363 | "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc", 364 | "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc", 365 | "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2", 366 | "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11" 367 | ], 368 | "markers": "python_version >= '3.7'", 369 | "version": "==2.1.3" 370 | }, 371 | "mdurl": { 372 | "hashes": [ 373 | "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", 374 | "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba" 375 | ], 376 | "markers": "python_version >= '3.7'", 377 | "version": "==0.1.2" 378 | }, 379 | "mergedeep": { 380 | "hashes": [ 381 | "sha256:0096d52e9dad9939c3d975a774666af186eda617e6ca84df4c94dec30004f2a8", 382 | "sha256:70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307" 383 | ], 384 | "markers": "python_version >= '3.6'", 385 | "version": "==1.3.4" 386 | }, 387 | "mkdocs": { 388 | "hashes": [ 389 | "sha256:3b3a78e736b31158d64dbb2f8ba29bd46a379d0c6e324c2246c3bc3d2189cfc1", 390 | "sha256:eb7c99214dcb945313ba30426c2451b735992c73c2e10838f76d09e39ff4d0e2" 391 | ], 392 | "index": "pypi", 393 | "version": "==1.5.3" 394 | }, 395 | "more-itertools": { 396 | "hashes": [ 397 | "sha256:626c369fa0eb37bac0291bce8259b332fd59ac792fa5497b59837309cd5b114a", 398 | "sha256:64e0735fcfdc6f3464ea133afe8ea4483b1c5fe3a3d69852e6503b43a0b222e6" 399 | ], 400 | "markers": "python_version >= '3.8'", 401 | "version": "==10.1.0" 402 | }, 403 | "nh3": { 404 | "hashes": [ 405 | "sha256:116c9515937f94f0057ef50ebcbcc10600860065953ba56f14473ff706371873", 406 | "sha256:18415df36db9b001f71a42a3a5395db79cf23d556996090d293764436e98e8ad", 407 | "sha256:203cac86e313cf6486704d0ec620a992c8bc164c86d3a4fd3d761dd552d839b5", 408 | "sha256:2b0be5c792bd43d0abef8ca39dd8acb3c0611052ce466d0401d51ea0d9aa7525", 409 | "sha256:377aaf6a9e7c63962f367158d808c6a1344e2b4f83d071c43fbd631b75c4f0b2", 410 | "sha256:525846c56c2bcd376f5eaee76063ebf33cf1e620c1498b2a40107f60cfc6054e", 411 | "sha256:5529a3bf99402c34056576d80ae5547123f1078da76aa99e8ed79e44fa67282d", 412 | "sha256:7771d43222b639a4cd9e341f870cee336b9d886de1ad9bec8dddab22fe1de450", 413 | "sha256:88c753efbcdfc2644a5012938c6b9753f1c64a5723a67f0301ca43e7b85dcf0e", 414 | "sha256:93a943cfd3e33bd03f77b97baa11990148687877b74193bf777956b67054dcc6", 415 | "sha256:9be2f68fb9a40d8440cbf34cbf40758aa7f6093160bfc7fb018cce8e424f0c3a", 416 | "sha256:a0c509894fd4dccdff557068e5074999ae3b75f4c5a2d6fb5415e782e25679c4", 417 | "sha256:ac8056e937f264995a82bf0053ca898a1cb1c9efc7cd68fa07fe0060734df7e4", 418 | "sha256:aed56a86daa43966dd790ba86d4b810b219f75b4bb737461b6886ce2bde38fd6", 419 | "sha256:e8986f1dd3221d1e741fda0a12eaa4a273f1d80a35e31a1ffe579e7c621d069e", 420 | "sha256:f99212a81c62b5f22f9e7c3e347aa00491114a5647e1f13bbebd79c3e5f08d75" 421 | ], 422 | "version": "==0.2.14" 423 | }, 424 | "packaging": { 425 | "hashes": [ 426 | "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5", 427 | "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7" 428 | ], 429 | "markers": "python_version >= '3.7'", 430 | "version": "==23.2" 431 | }, 432 | "pathspec": { 433 | "hashes": [ 434 | "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20", 435 | "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3" 436 | ], 437 | "markers": "python_version >= '3.7'", 438 | "version": "==0.11.2" 439 | }, 440 | "pkginfo": { 441 | "hashes": [ 442 | "sha256:4b7a555a6d5a22169fcc9cf7bfd78d296b0361adad412a346c1226849af5e546", 443 | "sha256:8fd5896e8718a4372f0ea9cc9d96f6417c9b986e23a4d116dda26b62cc29d046" 444 | ], 445 | "markers": "python_version >= '3.6'", 446 | "version": "==1.9.6" 447 | }, 448 | "platformdirs": { 449 | "hashes": [ 450 | "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3", 451 | "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e" 452 | ], 453 | "markers": "python_version >= '3.7'", 454 | "version": "==3.11.0" 455 | }, 456 | "pycparser": { 457 | "hashes": [ 458 | "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9", 459 | "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206" 460 | ], 461 | "version": "==2.21" 462 | }, 463 | "pygments": { 464 | "hashes": [ 465 | "sha256:13fc09fa63bc8d8671a6d247e1eb303c4b343eaee81d861f3404db2935653692", 466 | "sha256:1daff0494820c69bc8941e407aa20f577374ee88364ee10a98fdbe0aece96e29" 467 | ], 468 | "markers": "python_version >= '3.7'", 469 | "version": "==2.16.1" 470 | }, 471 | "python-dateutil": { 472 | "hashes": [ 473 | "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86", 474 | "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" 475 | ], 476 | "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", 477 | "version": "==2.8.2" 478 | }, 479 | "pyyaml": { 480 | "hashes": [ 481 | "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5", 482 | "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc", 483 | "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df", 484 | "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741", 485 | "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206", 486 | "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27", 487 | "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595", 488 | "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62", 489 | "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98", 490 | "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696", 491 | "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290", 492 | "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9", 493 | "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d", 494 | "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6", 495 | "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867", 496 | "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47", 497 | "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486", 498 | "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6", 499 | "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3", 500 | "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007", 501 | "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938", 502 | "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0", 503 | "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c", 504 | "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735", 505 | "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d", 506 | "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28", 507 | "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4", 508 | "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba", 509 | "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8", 510 | "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5", 511 | "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd", 512 | "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3", 513 | "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0", 514 | "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515", 515 | "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c", 516 | "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c", 517 | "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924", 518 | "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34", 519 | "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43", 520 | "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859", 521 | "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673", 522 | "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54", 523 | "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a", 524 | "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b", 525 | "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab", 526 | "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa", 527 | "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c", 528 | "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585", 529 | "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d", 530 | "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f" 531 | ], 532 | "markers": "python_version >= '3.6'", 533 | "version": "==6.0.1" 534 | }, 535 | "pyyaml-env-tag": { 536 | "hashes": [ 537 | "sha256:70092675bda14fdec33b31ba77e7543de9ddc88f2e5b99160396572d11525bdb", 538 | "sha256:af31106dec8a4d68c60207c1886031cbf839b68aa7abccdb19868200532c2069" 539 | ], 540 | "markers": "python_version >= '3.6'", 541 | "version": "==0.1" 542 | }, 543 | "readme-renderer": { 544 | "hashes": [ 545 | "sha256:13d039515c1f24de668e2c93f2e877b9dbe6c6c32328b90a40a49d8b2b85f36d", 546 | "sha256:2d55489f83be4992fe4454939d1a051c33edbab778e82761d060c9fc6b308cd1" 547 | ], 548 | "markers": "python_version >= '3.8'", 549 | "version": "==42.0" 550 | }, 551 | "requests": { 552 | "hashes": [ 553 | "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f", 554 | "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1" 555 | ], 556 | "markers": "python_version >= '3.7'", 557 | "version": "==2.31.0" 558 | }, 559 | "requests-toolbelt": { 560 | "hashes": [ 561 | "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6", 562 | "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06" 563 | ], 564 | "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", 565 | "version": "==1.0.0" 566 | }, 567 | "rfc3986": { 568 | "hashes": [ 569 | "sha256:50b1502b60e289cb37883f3dfd34532b8873c7de9f49bb546641ce9cbd256ebd", 570 | "sha256:97aacf9dbd4bfd829baad6e6309fa6573aaf1be3f6fa735c8ab05e46cecb261c" 571 | ], 572 | "markers": "python_version >= '3.7'", 573 | "version": "==2.0.0" 574 | }, 575 | "rich": { 576 | "hashes": [ 577 | "sha256:2b38e2fe9ca72c9a00170a1a2d20c63c790d0e10ef1fe35eba76e1e7b1d7d245", 578 | "sha256:5c14d22737e6d5084ef4771b62d5d4363165b403455a30a1c8ca39dc7b644bef" 579 | ], 580 | "markers": "python_full_version >= '3.7.0'", 581 | "version": "==13.6.0" 582 | }, 583 | "secretstorage": { 584 | "hashes": [ 585 | "sha256:2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77", 586 | "sha256:f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99" 587 | ], 588 | "markers": "sys_platform == 'linux'", 589 | "version": "==3.3.3" 590 | }, 591 | "six": { 592 | "hashes": [ 593 | "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", 594 | "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" 595 | ], 596 | "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", 597 | "version": "==1.16.0" 598 | }, 599 | "soupsieve": { 600 | "hashes": [ 601 | "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690", 602 | "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7" 603 | ], 604 | "markers": "python_version >= '3.8'", 605 | "version": "==2.5" 606 | }, 607 | "twine": { 608 | "hashes": [ 609 | "sha256:929bc3c280033347a00f847236564d1c52a3e61b1ac2516c97c48f3ceab756d8", 610 | "sha256:9e102ef5fdd5a20661eb88fad46338806c3bd32cf1db729603fe3697b1bc83c8" 611 | ], 612 | "index": "pypi", 613 | "version": "==4.0.2" 614 | }, 615 | "urllib3": { 616 | "hashes": [ 617 | "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84", 618 | "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e" 619 | ], 620 | "markers": "python_version >= '3.7'", 621 | "version": "==2.0.7" 622 | }, 623 | "watchdog": { 624 | "hashes": [ 625 | "sha256:0e06ab8858a76e1219e68c7573dfeba9dd1c0219476c5a44d5333b01d7e1743a", 626 | "sha256:13bbbb462ee42ec3c5723e1205be8ced776f05b100e4737518c67c8325cf6100", 627 | "sha256:233b5817932685d39a7896b1090353fc8efc1ef99c9c054e46c8002561252fb8", 628 | "sha256:25f70b4aa53bd743729c7475d7ec41093a580528b100e9a8c5b5efe8899592fc", 629 | "sha256:2b57a1e730af3156d13b7fdddfc23dea6487fceca29fc75c5a868beed29177ae", 630 | "sha256:336adfc6f5cc4e037d52db31194f7581ff744b67382eb6021c868322e32eef41", 631 | "sha256:3aa7f6a12e831ddfe78cdd4f8996af9cf334fd6346531b16cec61c3b3c0d8da0", 632 | "sha256:3ed7c71a9dccfe838c2f0b6314ed0d9b22e77d268c67e015450a29036a81f60f", 633 | "sha256:4c9956d27be0bb08fc5f30d9d0179a855436e655f046d288e2bcc11adfae893c", 634 | "sha256:4d98a320595da7a7c5a18fc48cb633c2e73cda78f93cac2ef42d42bf609a33f9", 635 | "sha256:4f94069eb16657d2c6faada4624c39464f65c05606af50bb7902e036e3219be3", 636 | "sha256:5113334cf8cf0ac8cd45e1f8309a603291b614191c9add34d33075727a967709", 637 | "sha256:51f90f73b4697bac9c9a78394c3acbbd331ccd3655c11be1a15ae6fe289a8c83", 638 | "sha256:5d9f3a10e02d7371cd929b5d8f11e87d4bad890212ed3901f9b4d68767bee759", 639 | "sha256:7ade88d0d778b1b222adebcc0927428f883db07017618a5e684fd03b83342bd9", 640 | "sha256:7c5f84b5194c24dd573fa6472685b2a27cc5a17fe5f7b6fd40345378ca6812e3", 641 | "sha256:7e447d172af52ad204d19982739aa2346245cc5ba6f579d16dac4bfec226d2e7", 642 | "sha256:8ae9cda41fa114e28faf86cb137d751a17ffd0316d1c34ccf2235e8a84365c7f", 643 | "sha256:8f3ceecd20d71067c7fd4c9e832d4e22584318983cabc013dbf3f70ea95de346", 644 | "sha256:9fac43a7466eb73e64a9940ac9ed6369baa39b3bf221ae23493a9ec4d0022674", 645 | "sha256:a70a8dcde91be523c35b2bf96196edc5730edb347e374c7de7cd20c43ed95397", 646 | "sha256:adfdeab2da79ea2f76f87eb42a3ab1966a5313e5a69a0213a3cc06ef692b0e96", 647 | "sha256:ba07e92756c97e3aca0912b5cbc4e5ad802f4557212788e72a72a47ff376950d", 648 | "sha256:c07253088265c363d1ddf4b3cdb808d59a0468ecd017770ed716991620b8f77a", 649 | "sha256:c9d8c8ec7efb887333cf71e328e39cffbf771d8f8f95d308ea4125bf5f90ba64", 650 | "sha256:d00e6be486affb5781468457b21a6cbe848c33ef43f9ea4a73b4882e5f188a44", 651 | "sha256:d429c2430c93b7903914e4db9a966c7f2b068dd2ebdd2fa9b9ce094c7d459f33" 652 | ], 653 | "markers": "python_version >= '3.7'", 654 | "version": "==3.0.0" 655 | }, 656 | "zipp": { 657 | "hashes": [ 658 | "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31", 659 | "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0" 660 | ], 661 | "markers": "python_version >= '3.8'", 662 | "version": "==3.17.0" 663 | } 664 | }, 665 | "develop": { 666 | "beautifulsoup4": { 667 | "hashes": [ 668 | "sha256:492bbc69dca35d12daac71c4db1bfff0c876c00ef4a2ffacce226d4638eb72da", 669 | "sha256:bd2520ca0d9d7d12694a53d44ac482d181b4ec1888909b035a3dbf40d0f57d4a" 670 | ], 671 | "index": "pypi", 672 | "version": "==4.12.2" 673 | }, 674 | "black": { 675 | "hashes": [ 676 | "sha256:037e9b4664cafda5f025a1728c50a9e9aedb99a759c89f760bd83730e76ba884", 677 | "sha256:1b917a2aa020ca600483a7b340c165970b26e9029067f019e3755b56e8dd5916", 678 | "sha256:1f8ce316753428ff68749c65a5f7844631aa18c8679dfd3ca9dc1a289979c258", 679 | "sha256:33d40f5b06be80c1bbce17b173cda17994fbad096ce60eb22054da021bf933d1", 680 | "sha256:3f157a8945a7b2d424da3335f7ace89c14a3b0625e6593d21139c2d8214d55ce", 681 | "sha256:5ed45ac9a613fb52dad3b61c8dea2ec9510bf3108d4db88422bacc7d1ba1243d", 682 | "sha256:6d23d7822140e3fef190734216cefb262521789367fbdc0b3f22af6744058982", 683 | "sha256:7670242e90dc129c539e9ca17665e39a146a761e681805c54fbd86015c7c84f7", 684 | "sha256:7b4d10b0f016616a0d93d24a448100adf1699712fb7a4efd0e2c32bbb219b173", 685 | "sha256:7cb5936e686e782fddb1c73f8aa6f459e1ad38a6a7b0e54b403f1f05a1507ee9", 686 | "sha256:7d56124b7a61d092cb52cce34182a5280e160e6aff3137172a68c2c2c4b76bcb", 687 | "sha256:840015166dbdfbc47992871325799fd2dc0dcf9395e401ada6d88fe11498abad", 688 | "sha256:9c74de4c77b849e6359c6f01987e94873c707098322b91490d24296f66d067dc", 689 | "sha256:b15b75fc53a2fbcac8a87d3e20f69874d161beef13954747e053bca7a1ce53a0", 690 | "sha256:cfcce6f0a384d0da692119f2d72d79ed07c7159879d0bb1bb32d2e443382bf3a", 691 | "sha256:d431e6739f727bb2e0495df64a6c7a5310758e87505f5f8cde9ff6c0f2d7e4fe", 692 | "sha256:e293e4c2f4a992b980032bbd62df07c1bcff82d6964d6c9496f2cd726e246ace", 693 | "sha256:ec3f8e6234c4e46ff9e16d9ae96f4ef69fa328bb4ad08198c8cee45bb1f08c69" 694 | ], 695 | "index": "pypi", 696 | "version": "==23.10.1" 697 | }, 698 | "build": { 699 | "hashes": [ 700 | "sha256:538aab1b64f9828977f84bc63ae570b060a8ed1be419e7870b8b4fc5e6ea553b", 701 | "sha256:589bf99a67df7c9cf07ec0ac0e5e2ea5d4b37ac63301c4986d1acb126aa83f8f" 702 | ], 703 | "index": "pypi", 704 | "version": "==1.0.3" 705 | }, 706 | "certifi": { 707 | "hashes": [ 708 | "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082", 709 | "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9" 710 | ], 711 | "markers": "python_version >= '3.6'", 712 | "version": "==2023.7.22" 713 | }, 714 | "cffi": { 715 | "hashes": [ 716 | "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc", 717 | "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a", 718 | "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417", 719 | "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab", 720 | "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520", 721 | "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36", 722 | "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743", 723 | "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8", 724 | "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed", 725 | "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684", 726 | "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56", 727 | "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324", 728 | "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d", 729 | "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235", 730 | "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e", 731 | "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088", 732 | "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000", 733 | "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7", 734 | "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e", 735 | "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673", 736 | "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c", 737 | "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe", 738 | "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2", 739 | "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098", 740 | "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8", 741 | "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a", 742 | "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0", 743 | "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b", 744 | "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896", 745 | "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e", 746 | "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9", 747 | "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2", 748 | "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b", 749 | "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6", 750 | "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404", 751 | "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f", 752 | "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0", 753 | "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4", 754 | "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc", 755 | "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936", 756 | "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba", 757 | "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872", 758 | "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb", 759 | "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614", 760 | "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1", 761 | "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d", 762 | "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969", 763 | "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b", 764 | "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4", 765 | "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627", 766 | "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956", 767 | "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357" 768 | ], 769 | "markers": "python_version >= '3.8'", 770 | "version": "==1.16.0" 771 | }, 772 | "charset-normalizer": { 773 | "hashes": [ 774 | "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027", 775 | "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087", 776 | "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786", 777 | "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8", 778 | "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09", 779 | "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185", 780 | "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574", 781 | "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e", 782 | "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519", 783 | "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898", 784 | "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269", 785 | "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3", 786 | "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f", 787 | "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6", 788 | "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8", 789 | "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a", 790 | "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73", 791 | "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", 792 | "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714", 793 | "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2", 794 | "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc", 795 | "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce", 796 | "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d", 797 | "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e", 798 | "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6", 799 | "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269", 800 | "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96", 801 | "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d", 802 | "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a", 803 | "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4", 804 | "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77", 805 | "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d", 806 | "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0", 807 | "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed", 808 | "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068", 809 | "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac", 810 | "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25", 811 | "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8", 812 | "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab", 813 | "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26", 814 | "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2", 815 | "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db", 816 | "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f", 817 | "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5", 818 | "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99", 819 | "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c", 820 | "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d", 821 | "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811", 822 | "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa", 823 | "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a", 824 | "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03", 825 | "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b", 826 | "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04", 827 | "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c", 828 | "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001", 829 | "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458", 830 | "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389", 831 | "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99", 832 | "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985", 833 | "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537", 834 | "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238", 835 | "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f", 836 | "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d", 837 | "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796", 838 | "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a", 839 | "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143", 840 | "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8", 841 | "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c", 842 | "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5", 843 | "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5", 844 | "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711", 845 | "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4", 846 | "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6", 847 | "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c", 848 | "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7", 849 | "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4", 850 | "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b", 851 | "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae", 852 | "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12", 853 | "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c", 854 | "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae", 855 | "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8", 856 | "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887", 857 | "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b", 858 | "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4", 859 | "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f", 860 | "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5", 861 | "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33", 862 | "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519", 863 | "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561" 864 | ], 865 | "markers": "python_full_version >= '3.7.0'", 866 | "version": "==3.3.2" 867 | }, 868 | "click": { 869 | "hashes": [ 870 | "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", 871 | "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de" 872 | ], 873 | "markers": "python_version >= '3.7'", 874 | "version": "==8.1.7" 875 | }, 876 | "cryptography": { 877 | "hashes": [ 878 | "sha256:0c327cac00f082013c7c9fb6c46b7cc9fa3c288ca702c74773968173bda421bf", 879 | "sha256:0d2a6a598847c46e3e321a7aef8af1436f11c27f1254933746304ff014664d84", 880 | "sha256:227ec057cd32a41c6651701abc0328135e472ed450f47c2766f23267b792a88e", 881 | "sha256:22892cc830d8b2c89ea60148227631bb96a7da0c1b722f2aac8824b1b7c0b6b8", 882 | "sha256:392cb88b597247177172e02da6b7a63deeff1937fa6fec3bbf902ebd75d97ec7", 883 | "sha256:3be3ca726e1572517d2bef99a818378bbcf7d7799d5372a46c79c29eb8d166c1", 884 | "sha256:573eb7128cbca75f9157dcde974781209463ce56b5804983e11a1c462f0f4e88", 885 | "sha256:580afc7b7216deeb87a098ef0674d6ee34ab55993140838b14c9b83312b37b86", 886 | "sha256:5a70187954ba7292c7876734183e810b728b4f3965fbe571421cb2434d279179", 887 | "sha256:73801ac9736741f220e20435f84ecec75ed70eda90f781a148f1bad546963d81", 888 | "sha256:7d208c21e47940369accfc9e85f0de7693d9a5d843c2509b3846b2db170dfd20", 889 | "sha256:8254962e6ba1f4d2090c44daf50a547cd5f0bf446dc658a8e5f8156cae0d8548", 890 | "sha256:88417bff20162f635f24f849ab182b092697922088b477a7abd6664ddd82291d", 891 | "sha256:a48e74dad1fb349f3dc1d449ed88e0017d792997a7ad2ec9587ed17405667e6d", 892 | "sha256:b948e09fe5fb18517d99994184854ebd50b57248736fd4c720ad540560174ec5", 893 | "sha256:c707f7afd813478e2019ae32a7c49cd932dd60ab2d2a93e796f68236b7e1fbf1", 894 | "sha256:d38e6031e113b7421db1de0c1b1f7739564a88f1684c6b89234fbf6c11b75147", 895 | "sha256:d3977f0e276f6f5bf245c403156673db103283266601405376f075c849a0b936", 896 | "sha256:da6a0ff8f1016ccc7477e6339e1d50ce5f59b88905585f77193ebd5068f1e797", 897 | "sha256:e270c04f4d9b5671ebcc792b3ba5d4488bf7c42c3c241a3748e2599776f29696", 898 | "sha256:e886098619d3815e0ad5790c973afeee2c0e6e04b4da90b88e6bd06e2a0b1b72", 899 | "sha256:ec3b055ff8f1dce8e6ef28f626e0972981475173d7973d63f271b29c8a2897da", 900 | "sha256:fba1e91467c65fe64a82c689dc6cf58151158993b13eb7a7f3f4b7f395636723" 901 | ], 902 | "markers": "python_version >= '3.7'", 903 | "version": "==41.0.5" 904 | }, 905 | "docutils": { 906 | "hashes": [ 907 | "sha256:96f387a2c5562db4476f09f13bbab2192e764cac08ebbf3a34a95d9b1e4a59d6", 908 | "sha256:f08a4e276c3a1583a86dce3e34aba3fe04d02bba2dd51ed16106244e8a923e3b" 909 | ], 910 | "markers": "python_version >= '3.7'", 911 | "version": "==0.20.1" 912 | }, 913 | "exceptiongroup": { 914 | "hashes": [ 915 | "sha256:097acd85d473d75af5bb98e41b61ff7fe35efe6675e4f9370ec6ec5126d160e9", 916 | "sha256:343280667a4585d195ca1cf9cef84a4e178c4b6cf2274caef9859782b567d5e3" 917 | ], 918 | "markers": "python_version < '3.11'", 919 | "version": "==1.1.3" 920 | }, 921 | "ghp-import": { 922 | "hashes": [ 923 | "sha256:8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619", 924 | "sha256:9c535c4c61193c2df8871222567d7fd7e5014d835f97dc7b7439069e2413d343" 925 | ], 926 | "version": "==2.1.0" 927 | }, 928 | "greenlet": { 929 | "hashes": [ 930 | "sha256:02a807b2a58d5cdebb07050efe3d7deaf915468d112dfcf5e426d0564aa3aa4a", 931 | "sha256:0b72b802496cccbd9b31acea72b6f87e7771ccfd7f7927437d592e5c92ed703c", 932 | "sha256:0d3f83ffb18dc57243e0151331e3c383b05e5b6c5029ac29f754745c800f8ed9", 933 | "sha256:10b5582744abd9858947d163843d323d0b67be9432db50f8bf83031032bc218d", 934 | "sha256:123910c58234a8d40eaab595bc56a5ae49bdd90122dde5bdc012c20595a94c14", 935 | "sha256:1482fba7fbed96ea7842b5a7fc11d61727e8be75a077e603e8ab49d24e234383", 936 | "sha256:19834e3f91f485442adc1ee440171ec5d9a4840a1f7bd5ed97833544719ce10b", 937 | "sha256:1d363666acc21d2c204dd8705c0e0457d7b2ee7a76cb16ffc099d6799744ac99", 938 | "sha256:211ef8d174601b80e01436f4e6905aca341b15a566f35a10dd8d1e93f5dbb3b7", 939 | "sha256:269d06fa0f9624455ce08ae0179430eea61085e3cf6457f05982b37fd2cefe17", 940 | "sha256:2e7dcdfad252f2ca83c685b0fa9fba00e4d8f243b73839229d56ee3d9d219314", 941 | "sha256:334ef6ed8337bd0b58bb0ae4f7f2dcc84c9f116e474bb4ec250a8bb9bd797a66", 942 | "sha256:343675e0da2f3c69d3fb1e894ba0a1acf58f481f3b9372ce1eb465ef93cf6fed", 943 | "sha256:37f60b3a42d8b5499be910d1267b24355c495064f271cfe74bf28b17b099133c", 944 | "sha256:38ad562a104cd41e9d4644f46ea37167b93190c6d5e4048fcc4b80d34ecb278f", 945 | "sha256:3c0d36f5adc6e6100aedbc976d7428a9f7194ea79911aa4bf471f44ee13a9464", 946 | "sha256:3fd2b18432e7298fcbec3d39e1a0aa91ae9ea1c93356ec089421fabc3651572b", 947 | "sha256:4a1a6244ff96343e9994e37e5b4839f09a0207d35ef6134dce5c20d260d0302c", 948 | "sha256:4cd83fb8d8e17633ad534d9ac93719ef8937568d730ef07ac3a98cb520fd93e4", 949 | "sha256:527cd90ba3d8d7ae7dceb06fda619895768a46a1b4e423bdb24c1969823b8362", 950 | "sha256:56867a3b3cf26dc8a0beecdb4459c59f4c47cdd5424618c08515f682e1d46692", 951 | "sha256:621fcb346141ae08cb95424ebfc5b014361621b8132c48e538e34c3c93ac7365", 952 | "sha256:63acdc34c9cde42a6534518e32ce55c30f932b473c62c235a466469a710bfbf9", 953 | "sha256:6512592cc49b2c6d9b19fbaa0312124cd4c4c8a90d28473f86f92685cc5fef8e", 954 | "sha256:6672fdde0fd1a60b44fb1751a7779c6db487e42b0cc65e7caa6aa686874e79fb", 955 | "sha256:6a5b2d4cdaf1c71057ff823a19d850ed5c6c2d3686cb71f73ae4d6382aaa7a06", 956 | "sha256:6a68d670c8f89ff65c82b936275369e532772eebc027c3be68c6b87ad05ca695", 957 | "sha256:6bb36985f606a7c49916eff74ab99399cdfd09241c375d5a820bb855dfb4af9f", 958 | "sha256:73b2f1922a39d5d59cc0e597987300df3396b148a9bd10b76a058a2f2772fc04", 959 | "sha256:7709fd7bb02b31908dc8fd35bfd0a29fc24681d5cc9ac1d64ad07f8d2b7db62f", 960 | "sha256:8060b32d8586e912a7b7dac2d15b28dbbd63a174ab32f5bc6d107a1c4143f40b", 961 | "sha256:80dcd3c938cbcac986c5c92779db8e8ce51a89a849c135172c88ecbdc8c056b7", 962 | "sha256:813720bd57e193391dfe26f4871186cf460848b83df7e23e6bef698a7624b4c9", 963 | "sha256:831d6f35037cf18ca5e80a737a27d822d87cd922521d18ed3dbc8a6967be50ce", 964 | "sha256:871b0a8835f9e9d461b7fdaa1b57e3492dd45398e87324c047469ce2fc9f516c", 965 | "sha256:952256c2bc5b4ee8df8dfc54fc4de330970bf5d79253c863fb5e6761f00dda35", 966 | "sha256:96d9ea57292f636ec851a9bb961a5cc0f9976900e16e5d5647f19aa36ba6366b", 967 | "sha256:9a812224a5fb17a538207e8cf8e86f517df2080c8ee0f8c1ed2bdaccd18f38f4", 968 | "sha256:9adbd8ecf097e34ada8efde9b6fec4dd2a903b1e98037adf72d12993a1c80b51", 969 | "sha256:9de687479faec7db5b198cc365bc34addd256b0028956501f4d4d5e9ca2e240a", 970 | "sha256:a048293392d4e058298710a54dfaefcefdf49d287cd33fb1f7d63d55426e4355", 971 | "sha256:aa15a2ec737cb609ed48902b45c5e4ff6044feb5dcdfcf6fa8482379190330d7", 972 | "sha256:abe1ef3d780de56defd0c77c5ba95e152f4e4c4e12d7e11dd8447d338b85a625", 973 | "sha256:ad6fb737e46b8bd63156b8f59ba6cdef46fe2b7db0c5804388a2d0519b8ddb99", 974 | "sha256:b1660a15a446206c8545edc292ab5c48b91ff732f91b3d3b30d9a915d5ec4779", 975 | "sha256:b505fcfc26f4148551826a96f7317e02c400665fa0883fe505d4fcaab1dabfdd", 976 | "sha256:b822fab253ac0f330ee807e7485769e3ac85d5eef827ca224feaaefa462dc0d0", 977 | "sha256:bdd696947cd695924aecb3870660b7545a19851f93b9d327ef8236bfc49be705", 978 | "sha256:bdfaeecf8cc705d35d8e6de324bf58427d7eafb55f67050d8f28053a3d57118c", 979 | "sha256:be557119bf467d37a8099d91fbf11b2de5eb1fd5fc5b91598407574848dc910f", 980 | "sha256:c6b5ce7f40f0e2f8b88c28e6691ca6806814157ff05e794cdd161be928550f4c", 981 | "sha256:c94e4e924d09b5a3e37b853fe5924a95eac058cb6f6fb437ebb588b7eda79870", 982 | "sha256:cc3e2679ea13b4de79bdc44b25a0c4fcd5e94e21b8f290791744ac42d34a0353", 983 | "sha256:d1e22c22f7826096ad503e9bb681b05b8c1f5a8138469b255eb91f26a76634f2", 984 | "sha256:d5539f6da3418c3dc002739cb2bb8d169056aa66e0c83f6bacae0cd3ac26b423", 985 | "sha256:d55db1db455c59b46f794346efce896e754b8942817f46a1bada2d29446e305a", 986 | "sha256:e09dea87cc91aea5500262993cbd484b41edf8af74f976719dd83fe724644cd6", 987 | "sha256:e52a712c38e5fb4fd68e00dc3caf00b60cb65634d50e32281a9d6431b33b4af1", 988 | "sha256:e693e759e172fa1c2c90d35dea4acbdd1d609b6936115d3739148d5e4cd11947", 989 | "sha256:ecf94aa539e97a8411b5ea52fc6ccd8371be9550c4041011a091eb8b3ca1d810", 990 | "sha256:f351479a6914fd81a55c8e68963609f792d9b067fb8a60a042c585a621e0de4f", 991 | "sha256:f47932c434a3c8d3c86d865443fadc1fbf574e9b11d6650b656e602b1797908a" 992 | ], 993 | "markers": "python_version >= '3.7'", 994 | "version": "==3.0.0" 995 | }, 996 | "idna": { 997 | "hashes": [ 998 | "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4", 999 | "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2" 1000 | ], 1001 | "markers": "python_version >= '3.5'", 1002 | "version": "==3.4" 1003 | }, 1004 | "importlib-metadata": { 1005 | "hashes": [ 1006 | "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb", 1007 | "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743" 1008 | ], 1009 | "markers": "python_version >= '3.8'", 1010 | "version": "==6.8.0" 1011 | }, 1012 | "iniconfig": { 1013 | "hashes": [ 1014 | "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", 1015 | "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374" 1016 | ], 1017 | "markers": "python_version >= '3.7'", 1018 | "version": "==2.0.0" 1019 | }, 1020 | "jaraco.classes": { 1021 | "hashes": [ 1022 | "sha256:10afa92b6743f25c0cf5f37c6bb6e18e2c5bb84a16527ccfc0040ea377e7aaeb", 1023 | "sha256:c063dd08e89217cee02c8d5e5ec560f2c8ce6cdc2fcdc2e68f7b2e5547ed3621" 1024 | ], 1025 | "markers": "python_version >= '3.8'", 1026 | "version": "==3.3.0" 1027 | }, 1028 | "jeepney": { 1029 | "hashes": [ 1030 | "sha256:5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806", 1031 | "sha256:c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755" 1032 | ], 1033 | "markers": "sys_platform == 'linux'", 1034 | "version": "==0.8.0" 1035 | }, 1036 | "jinja2": { 1037 | "hashes": [ 1038 | "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852", 1039 | "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61" 1040 | ], 1041 | "markers": "python_version >= '3.7'", 1042 | "version": "==3.1.2" 1043 | }, 1044 | "keyring": { 1045 | "hashes": [ 1046 | "sha256:4901caaf597bfd3bbd78c9a0c7c4c29fcd8310dab2cffefe749e916b6527acd6", 1047 | "sha256:ca0746a19ec421219f4d713f848fa297a661a8a8c1504867e55bfb5e09091509" 1048 | ], 1049 | "markers": "python_version >= '3.8'", 1050 | "version": "==24.2.0" 1051 | }, 1052 | "markdown": { 1053 | "hashes": [ 1054 | "sha256:5874b47d4ee3f0b14d764324d2c94c03ea66bee56f2d929da9f2508d65e722dc", 1055 | "sha256:b65d7beb248dc22f2e8a31fb706d93798093c308dc1aba295aedeb9d41a813bd" 1056 | ], 1057 | "index": "pypi", 1058 | "version": "==3.5.1" 1059 | }, 1060 | "markdown-it-py": { 1061 | "hashes": [ 1062 | "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", 1063 | "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb" 1064 | ], 1065 | "markers": "python_version >= '3.8'", 1066 | "version": "==3.0.0" 1067 | }, 1068 | "markupsafe": { 1069 | "hashes": [ 1070 | "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e", 1071 | "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e", 1072 | "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431", 1073 | "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686", 1074 | "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c", 1075 | "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559", 1076 | "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc", 1077 | "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb", 1078 | "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939", 1079 | "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c", 1080 | "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0", 1081 | "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4", 1082 | "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9", 1083 | "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575", 1084 | "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba", 1085 | "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d", 1086 | "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd", 1087 | "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3", 1088 | "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00", 1089 | "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155", 1090 | "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac", 1091 | "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52", 1092 | "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f", 1093 | "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8", 1094 | "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b", 1095 | "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007", 1096 | "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24", 1097 | "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea", 1098 | "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198", 1099 | "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0", 1100 | "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee", 1101 | "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be", 1102 | "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2", 1103 | "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1", 1104 | "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707", 1105 | "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6", 1106 | "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c", 1107 | "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58", 1108 | "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823", 1109 | "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779", 1110 | "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636", 1111 | "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c", 1112 | "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad", 1113 | "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee", 1114 | "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc", 1115 | "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2", 1116 | "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48", 1117 | "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7", 1118 | "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e", 1119 | "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b", 1120 | "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa", 1121 | "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5", 1122 | "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e", 1123 | "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb", 1124 | "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9", 1125 | "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57", 1126 | "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc", 1127 | "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc", 1128 | "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2", 1129 | "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11" 1130 | ], 1131 | "markers": "python_version >= '3.7'", 1132 | "version": "==2.1.3" 1133 | }, 1134 | "mdurl": { 1135 | "hashes": [ 1136 | "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", 1137 | "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba" 1138 | ], 1139 | "markers": "python_version >= '3.7'", 1140 | "version": "==0.1.2" 1141 | }, 1142 | "mergedeep": { 1143 | "hashes": [ 1144 | "sha256:0096d52e9dad9939c3d975a774666af186eda617e6ca84df4c94dec30004f2a8", 1145 | "sha256:70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307" 1146 | ], 1147 | "markers": "python_version >= '3.6'", 1148 | "version": "==1.3.4" 1149 | }, 1150 | "mkdocs": { 1151 | "hashes": [ 1152 | "sha256:3b3a78e736b31158d64dbb2f8ba29bd46a379d0c6e324c2246c3bc3d2189cfc1", 1153 | "sha256:eb7c99214dcb945313ba30426c2451b735992c73c2e10838f76d09e39ff4d0e2" 1154 | ], 1155 | "index": "pypi", 1156 | "version": "==1.5.3" 1157 | }, 1158 | "mkdocs-pyscript": { 1159 | "editable": true, 1160 | "path": "." 1161 | }, 1162 | "more-itertools": { 1163 | "hashes": [ 1164 | "sha256:626c369fa0eb37bac0291bce8259b332fd59ac792fa5497b59837309cd5b114a", 1165 | "sha256:64e0735fcfdc6f3464ea133afe8ea4483b1c5fe3a3d69852e6503b43a0b222e6" 1166 | ], 1167 | "markers": "python_version >= '3.8'", 1168 | "version": "==10.1.0" 1169 | }, 1170 | "mypy-extensions": { 1171 | "hashes": [ 1172 | "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", 1173 | "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782" 1174 | ], 1175 | "markers": "python_version >= '3.5'", 1176 | "version": "==1.0.0" 1177 | }, 1178 | "nh3": { 1179 | "hashes": [ 1180 | "sha256:116c9515937f94f0057ef50ebcbcc10600860065953ba56f14473ff706371873", 1181 | "sha256:18415df36db9b001f71a42a3a5395db79cf23d556996090d293764436e98e8ad", 1182 | "sha256:203cac86e313cf6486704d0ec620a992c8bc164c86d3a4fd3d761dd552d839b5", 1183 | "sha256:2b0be5c792bd43d0abef8ca39dd8acb3c0611052ce466d0401d51ea0d9aa7525", 1184 | "sha256:377aaf6a9e7c63962f367158d808c6a1344e2b4f83d071c43fbd631b75c4f0b2", 1185 | "sha256:525846c56c2bcd376f5eaee76063ebf33cf1e620c1498b2a40107f60cfc6054e", 1186 | "sha256:5529a3bf99402c34056576d80ae5547123f1078da76aa99e8ed79e44fa67282d", 1187 | "sha256:7771d43222b639a4cd9e341f870cee336b9d886de1ad9bec8dddab22fe1de450", 1188 | "sha256:88c753efbcdfc2644a5012938c6b9753f1c64a5723a67f0301ca43e7b85dcf0e", 1189 | "sha256:93a943cfd3e33bd03f77b97baa11990148687877b74193bf777956b67054dcc6", 1190 | "sha256:9be2f68fb9a40d8440cbf34cbf40758aa7f6093160bfc7fb018cce8e424f0c3a", 1191 | "sha256:a0c509894fd4dccdff557068e5074999ae3b75f4c5a2d6fb5415e782e25679c4", 1192 | "sha256:ac8056e937f264995a82bf0053ca898a1cb1c9efc7cd68fa07fe0060734df7e4", 1193 | "sha256:aed56a86daa43966dd790ba86d4b810b219f75b4bb737461b6886ce2bde38fd6", 1194 | "sha256:e8986f1dd3221d1e741fda0a12eaa4a273f1d80a35e31a1ffe579e7c621d069e", 1195 | "sha256:f99212a81c62b5f22f9e7c3e347aa00491114a5647e1f13bbebd79c3e5f08d75" 1196 | ], 1197 | "version": "==0.2.14" 1198 | }, 1199 | "packaging": { 1200 | "hashes": [ 1201 | "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5", 1202 | "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7" 1203 | ], 1204 | "markers": "python_version >= '3.7'", 1205 | "version": "==23.2" 1206 | }, 1207 | "pathspec": { 1208 | "hashes": [ 1209 | "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20", 1210 | "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3" 1211 | ], 1212 | "markers": "python_version >= '3.7'", 1213 | "version": "==0.11.2" 1214 | }, 1215 | "pkginfo": { 1216 | "hashes": [ 1217 | "sha256:4b7a555a6d5a22169fcc9cf7bfd78d296b0361adad412a346c1226849af5e546", 1218 | "sha256:8fd5896e8718a4372f0ea9cc9d96f6417c9b986e23a4d116dda26b62cc29d046" 1219 | ], 1220 | "markers": "python_version >= '3.6'", 1221 | "version": "==1.9.6" 1222 | }, 1223 | "platformdirs": { 1224 | "hashes": [ 1225 | "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3", 1226 | "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e" 1227 | ], 1228 | "markers": "python_version >= '3.7'", 1229 | "version": "==3.11.0" 1230 | }, 1231 | "playwright": { 1232 | "hashes": [ 1233 | "sha256:384e195a6d09343f319031cf552e9cd601ede78fe9c082b9fa197537c5cbfe7a", 1234 | "sha256:40ed7f2546c64f1bb3d22b2295b4d43ed5a2f0b7ea7599d93a72f723a1883e1e", 1235 | "sha256:654bb3ae0dc3c69ffddc0c38c127c3b8e93032d8cf3928e2c4f21890cb39514b", 1236 | "sha256:699a8e707ca5f3567aa28223ee1be7e42d2bf25eda7d3d86babda71e36e5f16f", 1237 | "sha256:a420d814e21b05e1156747e2a9fae6c3cca2b46bb4a0226fb26ee65538ce09c9", 1238 | "sha256:d2c3634411828d9273196ed6f69f2fa7645c89732b3c982dcf09ab03ed4c5d2b", 1239 | "sha256:d2fd90f370599cf9a2c6a041bd79a5eeec62baf0e943c7c5c2079b29be476d2a" 1240 | ], 1241 | "index": "pypi", 1242 | "version": "==1.39.0" 1243 | }, 1244 | "pluggy": { 1245 | "hashes": [ 1246 | "sha256:cf61ae8f126ac6f7c451172cf30e3e43d3ca77615509771b3a984a0730651e12", 1247 | "sha256:d89c696a773f8bd377d18e5ecda92b7a3793cbe66c87060a6fb58c7b6e1061f7" 1248 | ], 1249 | "markers": "python_version >= '3.8'", 1250 | "version": "==1.3.0" 1251 | }, 1252 | "pycparser": { 1253 | "hashes": [ 1254 | "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9", 1255 | "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206" 1256 | ], 1257 | "version": "==2.21" 1258 | }, 1259 | "pyee": { 1260 | "hashes": [ 1261 | "sha256:9bcc9647822234f42c228d88de63d0f9ffa881e87a87f9d36ddf5211f6ac977d", 1262 | "sha256:a642c51e3885a33ead087286e35212783a4e9b8d6514a10a5db4e57ac57b2b29" 1263 | ], 1264 | "markers": "python_version >= '3.8'", 1265 | "version": "==11.0.1" 1266 | }, 1267 | "pygments": { 1268 | "hashes": [ 1269 | "sha256:13fc09fa63bc8d8671a6d247e1eb303c4b343eaee81d861f3404db2935653692", 1270 | "sha256:1daff0494820c69bc8941e407aa20f577374ee88364ee10a98fdbe0aece96e29" 1271 | ], 1272 | "markers": "python_version >= '3.7'", 1273 | "version": "==2.16.1" 1274 | }, 1275 | "pyproject-hooks": { 1276 | "hashes": [ 1277 | "sha256:283c11acd6b928d2f6a7c73fa0d01cb2bdc5f07c57a2eeb6e83d5e56b97976f8", 1278 | "sha256:f271b298b97f5955d53fb12b72c1fb1948c22c1a6b70b315c54cedaca0264ef5" 1279 | ], 1280 | "markers": "python_version >= '3.7'", 1281 | "version": "==1.0.0" 1282 | }, 1283 | "pytest": { 1284 | "hashes": [ 1285 | "sha256:0d009c083ea859a71b76adf7c1d502e4bc170b80a8ef002da5806527b9591fac", 1286 | "sha256:d989d136982de4e3b29dabcc838ad581c64e8ed52c11fbe86ddebd9da0818cd5" 1287 | ], 1288 | "index": "pypi", 1289 | "version": "==7.4.3" 1290 | }, 1291 | "pytest-base-url": { 1292 | "hashes": [ 1293 | "sha256:e1e88a4fd221941572ccdcf3bf6c051392d2f8b6cef3e0bc7da95abec4b5346e", 1294 | "sha256:ed36fd632c32af9f1c08f2c2835dcf42ca8fcd097d6ed44a09f253d365ad8297" 1295 | ], 1296 | "markers": "python_version >= '3.7' and python_version < '4.0'", 1297 | "version": "==2.0.0" 1298 | }, 1299 | "pytest-playwright": { 1300 | "hashes": [ 1301 | "sha256:699e2c47fbb1e6a57895454693eba278cf55d04d44c15017709b00e1de1d9ccd", 1302 | "sha256:c9ff6e7ebfd967b562f5c3d67f1ae6b45a061d6ea51ad304fdd95aca9db20774" 1303 | ], 1304 | "index": "pypi", 1305 | "version": "==0.4.3" 1306 | }, 1307 | "python-dateutil": { 1308 | "hashes": [ 1309 | "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86", 1310 | "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" 1311 | ], 1312 | "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", 1313 | "version": "==2.8.2" 1314 | }, 1315 | "python-slugify": { 1316 | "hashes": [ 1317 | "sha256:70ca6ea68fe63ecc8fa4fcf00ae651fc8a5d02d93dcd12ae6d4fc7ca46c4d395", 1318 | "sha256:ce0d46ddb668b3be82f4ed5e503dbc33dd815d83e2eb6824211310d3fb172a27" 1319 | ], 1320 | "markers": "python_version >= '3.7'", 1321 | "version": "==8.0.1" 1322 | }, 1323 | "pyyaml": { 1324 | "hashes": [ 1325 | "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5", 1326 | "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc", 1327 | "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df", 1328 | "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741", 1329 | "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206", 1330 | "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27", 1331 | "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595", 1332 | "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62", 1333 | "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98", 1334 | "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696", 1335 | "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290", 1336 | "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9", 1337 | "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d", 1338 | "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6", 1339 | "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867", 1340 | "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47", 1341 | "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486", 1342 | "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6", 1343 | "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3", 1344 | "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007", 1345 | "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938", 1346 | "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0", 1347 | "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c", 1348 | "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735", 1349 | "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d", 1350 | "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28", 1351 | "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4", 1352 | "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba", 1353 | "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8", 1354 | "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5", 1355 | "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd", 1356 | "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3", 1357 | "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0", 1358 | "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515", 1359 | "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c", 1360 | "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c", 1361 | "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924", 1362 | "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34", 1363 | "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43", 1364 | "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859", 1365 | "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673", 1366 | "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54", 1367 | "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a", 1368 | "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b", 1369 | "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab", 1370 | "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa", 1371 | "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c", 1372 | "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585", 1373 | "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d", 1374 | "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f" 1375 | ], 1376 | "markers": "python_version >= '3.6'", 1377 | "version": "==6.0.1" 1378 | }, 1379 | "pyyaml-env-tag": { 1380 | "hashes": [ 1381 | "sha256:70092675bda14fdec33b31ba77e7543de9ddc88f2e5b99160396572d11525bdb", 1382 | "sha256:af31106dec8a4d68c60207c1886031cbf839b68aa7abccdb19868200532c2069" 1383 | ], 1384 | "markers": "python_version >= '3.6'", 1385 | "version": "==0.1" 1386 | }, 1387 | "readme-renderer": { 1388 | "hashes": [ 1389 | "sha256:13d039515c1f24de668e2c93f2e877b9dbe6c6c32328b90a40a49d8b2b85f36d", 1390 | "sha256:2d55489f83be4992fe4454939d1a051c33edbab778e82761d060c9fc6b308cd1" 1391 | ], 1392 | "markers": "python_version >= '3.8'", 1393 | "version": "==42.0" 1394 | }, 1395 | "requests": { 1396 | "hashes": [ 1397 | "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f", 1398 | "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1" 1399 | ], 1400 | "markers": "python_version >= '3.7'", 1401 | "version": "==2.31.0" 1402 | }, 1403 | "requests-toolbelt": { 1404 | "hashes": [ 1405 | "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6", 1406 | "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06" 1407 | ], 1408 | "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", 1409 | "version": "==1.0.0" 1410 | }, 1411 | "rfc3986": { 1412 | "hashes": [ 1413 | "sha256:50b1502b60e289cb37883f3dfd34532b8873c7de9f49bb546641ce9cbd256ebd", 1414 | "sha256:97aacf9dbd4bfd829baad6e6309fa6573aaf1be3f6fa735c8ab05e46cecb261c" 1415 | ], 1416 | "markers": "python_version >= '3.7'", 1417 | "version": "==2.0.0" 1418 | }, 1419 | "rich": { 1420 | "hashes": [ 1421 | "sha256:2b38e2fe9ca72c9a00170a1a2d20c63c790d0e10ef1fe35eba76e1e7b1d7d245", 1422 | "sha256:5c14d22737e6d5084ef4771b62d5d4363165b403455a30a1c8ca39dc7b644bef" 1423 | ], 1424 | "markers": "python_full_version >= '3.7.0'", 1425 | "version": "==13.6.0" 1426 | }, 1427 | "secretstorage": { 1428 | "hashes": [ 1429 | "sha256:2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77", 1430 | "sha256:f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99" 1431 | ], 1432 | "markers": "sys_platform == 'linux'", 1433 | "version": "==3.3.3" 1434 | }, 1435 | "six": { 1436 | "hashes": [ 1437 | "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", 1438 | "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" 1439 | ], 1440 | "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", 1441 | "version": "==1.16.0" 1442 | }, 1443 | "soupsieve": { 1444 | "hashes": [ 1445 | "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690", 1446 | "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7" 1447 | ], 1448 | "markers": "python_version >= '3.8'", 1449 | "version": "==2.5" 1450 | }, 1451 | "text-unidecode": { 1452 | "hashes": [ 1453 | "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8", 1454 | "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93" 1455 | ], 1456 | "version": "==1.3" 1457 | }, 1458 | "tomli": { 1459 | "hashes": [ 1460 | "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc", 1461 | "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f" 1462 | ], 1463 | "markers": "python_version < '3.11'", 1464 | "version": "==2.0.1" 1465 | }, 1466 | "twine": { 1467 | "hashes": [ 1468 | "sha256:929bc3c280033347a00f847236564d1c52a3e61b1ac2516c97c48f3ceab756d8", 1469 | "sha256:9e102ef5fdd5a20661eb88fad46338806c3bd32cf1db729603fe3697b1bc83c8" 1470 | ], 1471 | "index": "pypi", 1472 | "version": "==4.0.2" 1473 | }, 1474 | "types-beautifulsoup4": { 1475 | "hashes": [ 1476 | "sha256:59980028d29bf55d0db359efa305b75bacf0cb92e3f3f6b3fd408f2531df274c", 1477 | "sha256:8b03b054cb2e62abf82bbbeda57a07257026f4ed9010ef17d8f8eff43bb1f9b7" 1478 | ], 1479 | "index": "pypi", 1480 | "version": "==4.12.0.7" 1481 | }, 1482 | "types-html5lib": { 1483 | "hashes": [ 1484 | "sha256:16fe936d99b9f7fc210e2e21a2aed1b6bbbc554ad8242a6ef75f6f2bddb27e58", 1485 | "sha256:80e1a2062d22a3affe5c28d97da30bffbf3a076d393c80fc6f1671216c1bd492" 1486 | ], 1487 | "version": "==1.1.11.15" 1488 | }, 1489 | "typing-extensions": { 1490 | "hashes": [ 1491 | "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0", 1492 | "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef" 1493 | ], 1494 | "markers": "python_version < '3.11'", 1495 | "version": "==4.8.0" 1496 | }, 1497 | "urllib3": { 1498 | "hashes": [ 1499 | "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84", 1500 | "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e" 1501 | ], 1502 | "markers": "python_version >= '3.7'", 1503 | "version": "==2.0.7" 1504 | }, 1505 | "watchdog": { 1506 | "hashes": [ 1507 | "sha256:0e06ab8858a76e1219e68c7573dfeba9dd1c0219476c5a44d5333b01d7e1743a", 1508 | "sha256:13bbbb462ee42ec3c5723e1205be8ced776f05b100e4737518c67c8325cf6100", 1509 | "sha256:233b5817932685d39a7896b1090353fc8efc1ef99c9c054e46c8002561252fb8", 1510 | "sha256:25f70b4aa53bd743729c7475d7ec41093a580528b100e9a8c5b5efe8899592fc", 1511 | "sha256:2b57a1e730af3156d13b7fdddfc23dea6487fceca29fc75c5a868beed29177ae", 1512 | "sha256:336adfc6f5cc4e037d52db31194f7581ff744b67382eb6021c868322e32eef41", 1513 | "sha256:3aa7f6a12e831ddfe78cdd4f8996af9cf334fd6346531b16cec61c3b3c0d8da0", 1514 | "sha256:3ed7c71a9dccfe838c2f0b6314ed0d9b22e77d268c67e015450a29036a81f60f", 1515 | "sha256:4c9956d27be0bb08fc5f30d9d0179a855436e655f046d288e2bcc11adfae893c", 1516 | "sha256:4d98a320595da7a7c5a18fc48cb633c2e73cda78f93cac2ef42d42bf609a33f9", 1517 | "sha256:4f94069eb16657d2c6faada4624c39464f65c05606af50bb7902e036e3219be3", 1518 | "sha256:5113334cf8cf0ac8cd45e1f8309a603291b614191c9add34d33075727a967709", 1519 | "sha256:51f90f73b4697bac9c9a78394c3acbbd331ccd3655c11be1a15ae6fe289a8c83", 1520 | "sha256:5d9f3a10e02d7371cd929b5d8f11e87d4bad890212ed3901f9b4d68767bee759", 1521 | "sha256:7ade88d0d778b1b222adebcc0927428f883db07017618a5e684fd03b83342bd9", 1522 | "sha256:7c5f84b5194c24dd573fa6472685b2a27cc5a17fe5f7b6fd40345378ca6812e3", 1523 | "sha256:7e447d172af52ad204d19982739aa2346245cc5ba6f579d16dac4bfec226d2e7", 1524 | "sha256:8ae9cda41fa114e28faf86cb137d751a17ffd0316d1c34ccf2235e8a84365c7f", 1525 | "sha256:8f3ceecd20d71067c7fd4c9e832d4e22584318983cabc013dbf3f70ea95de346", 1526 | "sha256:9fac43a7466eb73e64a9940ac9ed6369baa39b3bf221ae23493a9ec4d0022674", 1527 | "sha256:a70a8dcde91be523c35b2bf96196edc5730edb347e374c7de7cd20c43ed95397", 1528 | "sha256:adfdeab2da79ea2f76f87eb42a3ab1966a5313e5a69a0213a3cc06ef692b0e96", 1529 | "sha256:ba07e92756c97e3aca0912b5cbc4e5ad802f4557212788e72a72a47ff376950d", 1530 | "sha256:c07253088265c363d1ddf4b3cdb808d59a0468ecd017770ed716991620b8f77a", 1531 | "sha256:c9d8c8ec7efb887333cf71e328e39cffbf771d8f8f95d308ea4125bf5f90ba64", 1532 | "sha256:d00e6be486affb5781468457b21a6cbe848c33ef43f9ea4a73b4882e5f188a44", 1533 | "sha256:d429c2430c93b7903914e4db9a966c7f2b068dd2ebdd2fa9b9ce094c7d459f33" 1534 | ], 1535 | "markers": "python_version >= '3.7'", 1536 | "version": "==3.0.0" 1537 | }, 1538 | "zipp": { 1539 | "hashes": [ 1540 | "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31", 1541 | "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0" 1542 | ], 1543 | "markers": "python_version >= '3.8'", 1544 | "version": "==3.17.0" 1545 | } 1546 | } 1547 | } 1548 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mkdocs-pyscript 2 | `mkdocs-pyscript` is a plugin for [mkdocs](https://mkdocs.org/) that allows you to transform [code blocks](https://www.mkdocs.org/user-guide/writing-your-docs/#fenced-code-blocks) into executable Python scripts that run in the user's browser, with no backend server, using [PyScript](https://github.com/pyscript/pyscript). 3 | 4 | ## Installation 5 | 6 | Install the plugin into your environment using `pip`, or your favorite environment manager that ues PYPI: 7 | 8 | ```sh 9 | pip3 install mkdocs-pyscript 10 | ``` 11 | 12 | Enable the plugin by adding it to `mkdocs.yaml`: 13 | 14 | ``` 15 | plugins: 16 | - mkdocs-pyscript 17 | ``` 18 | 19 | ## Usage 20 | 21 | With this plugin enabled, all Python [fenced code blocks](https://www.mkdocs.org/user-guide/writing-your-docs/#fenced-code-blocks) (type `py` or `python` or any other label that maps to `lang-python`) will have an added LOAD button in the lower-right corrner. When clicked, the code block will be transformed into an editable code snippet (using [codemirror](https://codemirror.net/)). When the user clicks on the green "run" arrow in the lower right corner, or pressed SHIFT+ENTER when focused, will run the inner Python code using PyScript. 22 | 23 | The included code is run in a [Web Worker](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers), so as not to block the main thread. Each snippet is run in a separate web worker; variables, objects, and names are not shared between executions of the same cell. 24 | 25 | ### `pre` and `post` code 26 | 27 | Some demo code snippets may require setup and/or teardown code to properly function, which don't necessarily need to be displayed to the user. To run a chunk of Python code before any code the user runs in a particular code editor, add the `.py-pre` class to a fenced code block immediately before the user-visible code block, using the style of the [attr_list](https://python-markdown.github.io/extensions/attr_list/) markdown plugin. To run a chunk of code after a user runs a particular code editor add the `.py-post` class to a fenced code block immediately after the user-visible code block: 28 | 29 | ```` 30 | ```{.py .py-pre} 31 | print("This is some pre-code") 32 | ``` 33 | 34 | ```py 35 | print("This is the main tag") 36 | # Only this code will be displayed in the code editor 37 | ``` 38 | 39 | ```{.py .py-post} 40 | print("This is some post code") 41 | ``` 42 | ```` 43 | 44 | ## Configuration 45 | 46 | `mkdocs-pyscript` supports options that can be set in `mkdocs.yaml` to control the behavior of the plugin 47 | 48 | ### `pyscript_version` 49 | 50 | The `pyscript_version` property of the plugin controls the version of PyScript that is loaded. If not specified, the current default version is `snapshots/2023.09.1.RC2`. 51 | 52 | 53 | To support both pre-release snapshots and released versions of PyScript, the provided value is inserted into the following string: 54 | 55 | ```py 56 | SCRIPT = f'https://pyscript.net/{pyscript_version}/core.js' 57 | ``` 58 | 59 | That is, to load a specific release or snapshot, use: 60 | ```yaml 61 | #Load a release 62 | plugins: 63 | - mkdocs-pyscript: 64 | pyscript_version: "releases/2023.11.1" 65 | 66 | #Load a snapshot 67 | plugins: 68 | - mkdocs-pyscript: 69 | pyscript_version: "snapshots/2023.11.1.RC3" 70 | 71 | #Load the most recent (unstable) build: 72 | plugins: 73 | - mkdocs-pyscript: 74 | pyscript_version: "unstable" 75 | ``` 76 | 77 | ### `selective` 78 | 79 | By default, `mkdocs-pyscript` turns *all* blocks with type `py` or `python` into exectuable code snippets. To cause only selected blocks to be transformed: 80 | 81 | 1. Set the `selective` property to `true`: 82 | ```yaml 83 | plugins: 84 | - mkdocs-pyscript: 85 | selective: true 86 | ``` 87 | 2. Specify `.pyscript` as an additional class for the codeblocks that you want to be runnable: 88 | 89 | ````py 90 | ```{.py .pyscript} 91 | print("Hello, world!") 92 | ``` 93 | ```` -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 2 | 3 | - Initial Release -------------------------------------------------------------------------------- /esbuild.mjs: -------------------------------------------------------------------------------- 1 | import { build } from 'esbuild' 2 | await build({ 3 | entryPoints: ['mkdocs_pyscript/js/makeblocks.js', 'mkdocs_pyscript/js/mini-coi.js'], 4 | bundle: true, 5 | format: 'esm', 6 | outdir: 'mkdocs_pyscript/dist/js', 7 | external: ['@pyscript*'] 8 | }) -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- 1 | env := ./env 2 | 3 | setup: 4 | npm install 5 | pipenv install -d 6 | playwright install 7 | 8 | build-js: 9 | npm run build 10 | cp -r mkdocs_pyscript/css mkdocs_pyscript/dist 11 | 12 | build-dist: 13 | rm -rf ./dist 14 | rm -rf ./build 15 | make build-js 16 | python -m build 17 | twine check dist/* 18 | 19 | test: 20 | make build-js 21 | pytest ./tests $(ARGS) 22 | 23 | test-dev: 24 | PWDEBUG=1 pytest ./tests $(ARGS) 25 | 26 | deploy-test: 27 | echo "Deploying a test.pypi.org" 28 | twine upload -r testpypi dist/* 29 | 30 | deploy-real: 31 | make build-dist 32 | @read -p "Are you sure? [y/N] " ans && ans=$${ans:-N} ; \ 33 | if [ $${ans} = y ] || [ $${ans} = Y ]; then \ 34 | printf $(_SUCCESS) "Uploading to PyPI" ; \ 35 | twine upload -r pypi dist/*; \ 36 | else \ 37 | printf $(_DANGER) "ABORTING UPLOAD" ; \ 38 | exit 1; \ 39 | fi 40 | echo "Deploying to pypi.org" 41 | 42 | _SUCCESS := "\033[32m[%s]\033[0m %s\n" # Green text for "printf" 43 | _DANGER := "\033[31m[%s]\033[0m %s\n" # Red text for "printf" -------------------------------------------------------------------------------- /mkdocs_pyscript/__init__.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | base_path = os.path.dirname(os.path.abspath(__file__)) 4 | 5 | def glr_path_static(pathname): 6 | """Returns path to packaged static files""" 7 | return os.path.join(base_path, pathname) -------------------------------------------------------------------------------- /mkdocs_pyscript/css/pyrepl.css: -------------------------------------------------------------------------------- 1 | /* Portions of this code are adapted from code in the PyScript project, licensed under Apache License 2.0 2 | Full license information is here: https://github.com/pyscript/pyscript/blob/main/LICENSE */ 3 | 4 | .py-repl-editor { 5 | --tw-border-opacity: 1; 6 | border-color: rgba(209, 213, 219, var(--tw-border-opacity)); 7 | border-width: 1px; 8 | position: relative; 9 | --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/); 10 | --tw-ring-offset-width: 0px; 11 | --tw-ring-offset-color: #fff; 12 | --tw-ring-color: rgba(59, 130, 246, 0.5); 13 | --tw-ring-offset-shadow: 0 0 #0000; 14 | --tw-ring-shadow: 0 0 #0000; 15 | --tw-shadow: 0 0 #0000; 16 | position: relative; 17 | 18 | box-sizing: border-box; 19 | border-width: 1px; 20 | border-style: solid; 21 | border-color: rgb(209, 213, 219); 22 | } 23 | 24 | .editor-box:hover button { 25 | opacity: 1; 26 | } 27 | 28 | .py-repl-run-button { 29 | opacity: 0; 30 | bottom: 0.25rem; 31 | right: 0.25rem; 32 | position: absolute; 33 | padding: 0; 34 | line-height: inherit; 35 | color: inherit; 36 | cursor: pointer; 37 | background-color: transparent; 38 | background-image: none; 39 | -webkit-appearance: button; 40 | text-transform: none; 41 | font-family: inherit; 42 | font-size: 100%; 43 | margin: 0; 44 | text-rendering: auto; 45 | letter-spacing: normal; 46 | word-spacing: normal; 47 | line-height: normal; 48 | text-transform: none; 49 | text-indent: 0px; 50 | text-shadow: none; 51 | display: inline-block; 52 | text-align: center; 53 | align-items: flex-start; 54 | cursor: default; 55 | box-sizing: border-box; 56 | background-color: -internal-light-dark(rgb(239, 239, 239), rgb(59, 59, 59)); 57 | margin: 0em; 58 | padding: 1px 6px; 59 | border: 0; 60 | } 61 | 62 | .py-repl-run-button:hover { 63 | opacity: 1; 64 | } 65 | 66 | .py-repl-output{ 67 | background-color: lightblue; 68 | box-sizing: border-box; 69 | border-width: 1px; 70 | border-style: solid; 71 | border-color: rgb(28, 107, 224); 72 | margin: 0.5rem; 73 | } 74 | 75 | .py-repl-output:empty{ 76 | border: none; 77 | } -------------------------------------------------------------------------------- /mkdocs_pyscript/js/makeblocks.js: -------------------------------------------------------------------------------- 1 | import { basicSetup, EditorView } from 'codemirror' 2 | import { EditorState, Compartment } from '@codemirror/state' 3 | import { python } from '@codemirror/lang-python'; 4 | import { indentUnit } from '@codemirror/language'; 5 | import { keymap } from '@codemirror/view'; 6 | import { defaultKeymap } from '@codemirror/commands'; 7 | import { $, $$ } from 'basic-devtools' 8 | import { PyWorker, hooks } from "@pyscript/core"; 9 | 10 | const RUNBUTTON = ``; 11 | 12 | hooks.worker.codeBeforeRun.add(` 13 | import sys 14 | from pyscript import sync 15 | 16 | class MyStdout: 17 | def write(self, line): 18 | sync.write(line) 19 | 20 | class MyStderr: 21 | def write(self, line): 22 | sync.writeErr(line) 23 | 24 | sys.stdout = MyStdout() 25 | sys.stderr = MyStderr() 26 | `) 27 | 28 | function addButtons(){ 29 | const wrappers = document.querySelectorAll(".py-wrapper") 30 | 31 | wrappers.forEach(wrapper => { 32 | const pySrc = wrapper.querySelector('code').textContent; 33 | const pyPre = wrapper.querySelector('script[type="py-pre"]') 34 | const pyPost = wrapper.querySelector('script[type="py-post"]') 35 | 36 | const btn = document.createElement('a') 37 | btn.style.cssText = "position:absolute; width:80px; height:30px; bottom:3px; right:3px; background-color:#7773f7; color:#FFF; border-radius:5px; text-align:center; box-shadow: 2px 2px 3px #999; cursor:pointer" 38 | btn.setAttribute('data-pyscript', 'button') 39 | btn.addEventListener("click", replaceWithEditor.bind(btn, pySrc, wrapper, pyPre?.textContent, pyPost?.textContent)) 40 | 41 | const label = document.createElement('i') 42 | label.style.cssText = "color:white;position:absolute; top:4px; left: 14px " 43 | label.innerText = "LOAD" 44 | 45 | btn.appendChild(label) 46 | wrapper.appendChild(btn) 47 | }) 48 | } 49 | 50 | let _uniqueIdCounter = 0; 51 | function ensureUniqueId(el) { 52 | if (el.id === '') el.id = `py-internal-${_uniqueIdCounter++}`; 53 | } 54 | 55 | // Portions of this code are adapted from code in the PyScript project, licensed under Apache License 2.0 56 | // Full license information is here: https://github.com/pyscript/pyscript/blob/main/LICENSE 57 | 58 | class PyRepl extends HTMLElement { 59 | outDiv ; 60 | editor ; 61 | stdout_manager; 62 | stderr_manager; 63 | static observedAttributes = ['src']; 64 | preCode; 65 | postCode; 66 | connectedCallback() { 67 | ensureUniqueId(this); 68 | 69 | if (!this.hasAttribute('exec-id')) { 70 | this.setAttribute('exec-id', '0'); 71 | } 72 | if (!this.hasAttribute('root')) { 73 | this.setAttribute('root', this.id); 74 | } 75 | 76 | const pySrc = "" 77 | this.innerHTML = ''; 78 | const boxDiv = this.makeBoxDiv(); 79 | const shadowRoot = $('.py-repl-editor > div', boxDiv).attachShadow({ mode: 'open' }); 80 | // avoid inheriting styles from the outer component 81 | shadowRoot.innerHTML = ``; 82 | this.appendChild(boxDiv); 83 | this.editor = this.makeEditor(pySrc, shadowRoot); 84 | this.editor.focus(); 85 | console.debug(`element ${this.id} successfully connected`); 86 | } 87 | 88 | 89 | /** Create and configure the codemirror editor 90 | */ 91 | makeEditor(pySrc, parent) { 92 | const languageConf = new Compartment(); 93 | const extensions = [ 94 | indentUnit.of(' '), 95 | languageConf.of(python()), 96 | keymap.of([ 97 | ...defaultKeymap, 98 | { key: 'Ctrl-Enter', run: this.execute.bind(this), preventDefault: true }, 99 | { key: 'Shift-Enter', run: this.execute.bind(this), preventDefault: true }, 100 | ]), 101 | basicSetup, 102 | ]; 103 | 104 | return new EditorView({ 105 | doc: pySrc, 106 | extensions: extensions, 107 | parent: parent, 108 | }); 109 | } 110 | 111 | // ******** main entry point for py-repl DOM building ********** 112 | // 113 | // The following functions are written in a top-down, depth-first 114 | // order (so that the order of code roughly matches the order of 115 | // execution) 116 | makeBoxDiv() { 117 | const boxDiv = document.createElement('div'); 118 | boxDiv.className = 'py-repl-box'; 119 | 120 | const editorDiv = this.makeEditorDiv(); 121 | this.outDiv = this.makeOutDiv(); 122 | 123 | boxDiv.appendChild(editorDiv); 124 | boxDiv.appendChild(this.outDiv); 125 | 126 | return boxDiv; 127 | } 128 | 129 | makeEditorDiv() { 130 | const editorDiv = document.createElement('div'); 131 | editorDiv.className = 'py-repl-editor'; 132 | editorDiv.setAttribute('aria-label', 'Python Script Area'); 133 | 134 | const runButton = this.makeRunButton(); 135 | const editorShadowContainer = document.createElement('div'); 136 | 137 | // avoid outer elements intercepting key events (reveal as example) 138 | editorShadowContainer.addEventListener('keydown', event => { 139 | event.stopPropagation(); 140 | }); 141 | 142 | editorDiv.append(editorShadowContainer, runButton); 143 | 144 | return editorDiv; 145 | } 146 | 147 | makeRunButton() { 148 | const runButton = document.createElement('button'); 149 | runButton.className = 'absolute py-repl-run-button'; 150 | runButton.innerHTML = RUNBUTTON; 151 | runButton.setAttribute('aria-label', 'Python Script Run Button'); 152 | runButton.addEventListener('click', this.execute.bind(this)); 153 | return runButton; 154 | } 155 | 156 | makeOutDiv() { 157 | const outDiv = document.createElement('div'); 158 | outDiv.className = 'py-repl-output'; 159 | outDiv.id = this.id + '-repl-output'; 160 | return outDiv; 161 | } 162 | 163 | // ********************* execution logic ********************* 164 | 165 | /** Execute the python code written in the editor, and automatically 166 | * display() the last evaluated expression 167 | */ 168 | async execute() { 169 | var pySrc = this.getPySrc(); 170 | if (this.preCode) pySrc = this.preCode + "\n" + pySrc 171 | if (this.postCode) pySrc = pySrc + "\n" + this.postCode 172 | 173 | const srcLink = URL.createObjectURL((new Blob([pySrc]))) 174 | this.outDiv.innerHTML = "" 175 | 176 | const worker = PyWorker(srcLink); 177 | worker.sync.write = (str) => {this.outDiv.innerText += str} 178 | worker.sync.writeErr = (str) => {this.outDiv.innerHTML += `${str}`} 179 | worker.onerror = ({error}) => {this.outDiv.innerHTML += `${str}`; console.log(error)} 180 | } 181 | 182 | getPySrc() { 183 | return this.editor.state.doc.toString(); 184 | } 185 | } 186 | 187 | customElements.define("py-repl", PyRepl) 188 | 189 | function replaceWithEditor(pySrc, parent, preCode=null, postCode=null){ 190 | const repl = document.createElement("py-repl") 191 | repl.preCode = preCode 192 | repl.postCode = postCode 193 | parent.innerHTML = "" 194 | parent.appendChild(repl) 195 | 196 | //Insert PySrc 197 | repl.editor.dispatch({changes: { 198 | from: 0, 199 | to: repl.editor.state.doc.length, 200 | insert: pySrc 201 | }}) 202 | } 203 | 204 | addButtons(); -------------------------------------------------------------------------------- /mkdocs_pyscript/js/mini-coi.js: -------------------------------------------------------------------------------- 1 | /*! coi-serviceworker v0.1.7 - Guido Zuidhof and contributors, licensed under MIT */ 2 | /*! mini-coi - Andrea Giammarchi and contributors, licensed under MIT */ 3 | /*mini-coi.js. Verison 0.2.1. Copyright 2023 Andrea Giammarchi 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*/ 10 | 11 | (({ document: d, navigator: { serviceWorker: s } }) => { 12 | if (d) { 13 | const { currentScript: c } = d; 14 | s.register(c.src, { scope: c.getAttribute('scope') || '.' }).then(r => { 15 | r.addEventListener('updatefound', () => location.reload()); 16 | if (r.active && !s.controller) location.reload(); 17 | }); 18 | } 19 | else { 20 | addEventListener('install', () => skipWaiting()); 21 | addEventListener('activate', e => e.waitUntil(clients.claim())); 22 | addEventListener('fetch', e => { 23 | const { request: r } = e; 24 | if (r.cache === 'only-if-cached' && r.mode !== 'same-origin') return; 25 | e.respondWith(fetch(r).then(r => { 26 | const { body, status, statusText } = r; 27 | if (!status || status > 399) return r; 28 | const h = new Headers(r.headers); 29 | h.set('Cross-Origin-Opener-Policy', 'same-origin'); 30 | h.set('Cross-Origin-Embedder-Policy', 'require-corp'); 31 | h.set('Cross-Origin-Resource-Policy', 'cross-origin'); 32 | return new Response(body, { status, statusText, headers: h }); 33 | })); 34 | }); 35 | } 36 | })(self); -------------------------------------------------------------------------------- /mkdocs_pyscript/plugin.py: -------------------------------------------------------------------------------- 1 | from dataclasses import dataclass 2 | import logging 3 | import os 4 | from typing import Union, List 5 | 6 | from bs4 import BeautifulSoup, Tag 7 | from mkdocs.config import config_options, config_options, base 8 | from mkdocs.config.defaults import MkDocsConfig 9 | from mkdocs.plugins import BasePlugin, get_plugin_logger 10 | from mkdocs.structure.files import Files 11 | from mkdocs.structure.pages import Page 12 | 13 | DEFAULT_VERSION = "snapshots/2023.11.1.RC3" 14 | SCRIPT = 'https://pyscript.net/{version}/core.js' 15 | 16 | from . import glr_path_static 17 | 18 | @dataclass 19 | class Script(): 20 | path: str 21 | type: str = None 22 | defer: bool = None 23 | async_: bool = None 24 | 25 | class MyPluginConfig(base.Config): 26 | pyscript_version = config_options.Type(str, default=DEFAULT_VERSION) 27 | selective = config_options.Type(bool, default=False) 28 | 29 | class Plugin(BasePlugin[MyPluginConfig]): 30 | logger = get_plugin_logger("mkdocs-pyscript") 31 | def __init__(self): 32 | self.enabled = True 33 | self.total_time = 0 34 | self.logger.setLevel(logging.DEBUG) 35 | 36 | 37 | def on_config(self, config: MkDocsConfig) -> Union[MkDocsConfig, None]: 38 | # Append static resources 39 | config["theme"].dirs.append(glr_path_static("dist/js")) 40 | config["theme"].dirs.append(glr_path_static("dist/css")) 41 | for file in os.listdir(glr_path_static("dist/css")): 42 | if file.endswith(".css"): 43 | config["extra_css"].append(file) 44 | 45 | for file in os.listdir(glr_path_static("dist/js")): 46 | if file.endswith(".js"): 47 | config["extra_javascript"].append(file) 48 | 49 | 50 | # Set version 51 | self.SCRIPT_LINK = SCRIPT.format(version=self.config.pyscript_version) 52 | 53 | # Disable navigation.instant 54 | if 'features' in config['theme'] and 'navigation.instant' in config['theme']['features']: 55 | self.logger.warning("mkdocs-pyscript is not compatible with navigation.instant; instant navigation will be disabled.") 56 | config['theme']['features'].remove('navigation.instant') 57 | 58 | if 'attr_list' not in config['markdown_extensions']: config['markdown_extensions'].append('attr_list') 59 | 60 | # Inject pre-post Markdown plugin 61 | #config['markdown_extensions'].append(PrePostExtension()) 62 | 63 | return config 64 | 65 | def scriptize(self, soup: BeautifulSoup, block: Tag, *, script_type="unmanaged-pyscript-mkdocs", label=None,): 66 | #Remove linenumber links: 67 | lineno_links = block.find_all('a') 68 | for a in lineno_links: 69 | if 'href' in a.attrs and "codelineno" in a['href']: a.extract() 70 | 71 | script = soup.new_tag("script") 72 | script['type'] = script_type 73 | script['id'] = label 74 | script.string = block.text 75 | return script 76 | 77 | 78 | def on_page_content(self, html: str, *, page: Page, config: MkDocsConfig, files: Files) -> Union[str, None]: 79 | soup = BeautifulSoup(html, features="html.parser") 80 | 81 | tag_names = ['code', 'div'] 82 | 83 | # Get all potential codeblocks in order: 84 | code_blocks: List[Tag] = [] 85 | tag = soup.find(name=tag_names) 86 | if tag: 87 | code_blocks.append(tag) 88 | while tag:= tag.find_next(name=tag_names): 89 | # Only include "top level" code tags 90 | if not any((tag in existing_tag.descendants) for existing_tag in code_blocks): code_blocks.append(tag) 91 | 92 | # exit early if no codeblocks on page 93 | if not code_blocks: return html 94 | 95 | # When we process a 'py-pre' tag, we'll turn it into a comment and extract it from the document, 96 | # only saving the most recent one seen. Then, when we process an actual code tag, we'll inject 97 | # that py-pre tag before it with a matching ID 98 | 99 | # Similarly, when we see an actual code tag, we'll save a reference to it; when we process a 'py-post' 100 | # tag, we'll inject it after the most recent code tag with a matching ID 101 | last_seen_pre_tag = None 102 | last_seen_primary_tag = None 103 | primary_block_index = -1 104 | 105 | # Process all blocks 106 | for block in code_blocks: 107 | try: 108 | #Classless blocks cannot be handled 109 | classes = block.attrs['class'] 110 | except KeyError: 111 | continue 112 | 113 | # Move classes from exterior pre/post to py-wrapper 114 | if block.parent.name == 'pre' and 'class' in block.parent.attrs: 115 | block.attrs['class'].extend(block.parent.attrs['class']) 116 | 117 | if 'py-pre' in classes: 118 | if last_seen_pre_tag: 119 | self.logger.warning("Multiple py-pre tags encountered with no primary tag between them") 120 | last_seen_pre_tag = block.extract() 121 | 122 | elif 'py-post' in classes: 123 | block.extract() 124 | if last_seen_primary_tag: 125 | last_seen_primary_tag.insert_before(self.scriptize(soup, block, script_type="py-post", label=f"py-post-{primary_block_index}")) 126 | last_seen_primary_tag = None 127 | else: self.logger.warning('Encountered py-post tag with no valid primary tag preceding it') 128 | 129 | elif (self.config.selective and 'pyscript' in classes) or \ 130 | ((not self.config.selective) and ('language-python' in classes or 'language-py' in classes)): 131 | #Wrap codeblock in a new div 132 | div = soup.new_tag('div') 133 | div['class'] = "py-wrapper" 134 | div['style'] = "position:relative" 135 | div['id'] = f"py-main-{(primary_block_index := primary_block_index + 1)}" 136 | 137 | block.wrap(div) # Wrap codeblock with div 138 | last_seen_primary_tag = block 139 | 140 | #Inject a pre-tag if necessary 141 | if last_seen_pre_tag: 142 | block.insert_before(self.scriptize(soup, last_seen_pre_tag, script_type="py-pre", label=f"py-pre-{primary_block_index}")) 143 | last_seen_pre_tag = None 144 | 145 | return str(soup) 146 | 147 | def on_post_page(self, output: str, *, page: Page, config: MkDocsConfig) -> Union[str, None]: 148 | soup = BeautifulSoup(output, features="html.parser") 149 | codeblocks = soup.find_all(attrs={"class": "py-wrapper" },) 150 | if (len(codeblocks)): 151 | # Add importmap 152 | imp_map = soup.new_tag("script") 153 | imp_map['type'] = "importmap" 154 | imp_map.string = f""" 155 | {{ 156 | "imports": {{ 157 | "@pyscript/core": "{self.SCRIPT_LINK}" 158 | }} 159 | }} 160 | """ 161 | soup.head.append(imp_map) 162 | 163 | # PyScript is imported in makeblocks.js via the import map 164 | 165 | # Make makeblock script a module 166 | makeblocks = [s for s in soup.find_all("script") if 'src' in s.attrs and "makeblocks" in s['src']][0] 167 | makeblocks['type'] = "module" 168 | return str(soup) 169 | 170 | -------------------------------------------------------------------------------- /mkdocs_pyscript/prePostExtension.py: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | from xml.etree.ElementTree import Element 3 | from markdown import Extension 4 | from markdown.blockprocessors import BlockProcessor 5 | 6 | from markdown.core import Markdown 7 | 8 | class PrePostExtension(Extension): 9 | 10 | def __init__(self, **kwargs: Any) -> None: 11 | print("Creating pre-post extesion") 12 | super().__init__(**kwargs) 13 | 14 | def extendMarkdown(self, md: Markdown) -> None: 15 | 16 | class CodeBlockCommentProcessor(BlockProcessor): 17 | def test(self, parent: Element, block: str) -> bool: 18 | return super().test(parent, block) 19 | 20 | def run(self, parent: Element, blocks: list[str]) -> bool | None: 21 | print("Running on code block") 22 | print(parent) 23 | for b in blocks: 24 | print("----") 25 | print(b) 26 | return super().run(parent, blocks) 27 | 28 | 29 | md.parser.blockprocessors.register(CodeBlockCommentProcessor(md.parser), "codePrePost", 1000) 30 | """ for index, bp in enumerate(md.parser.blockprocessors): 31 | print(bp) 32 | print(md.parser.blockprocessors._priority[index]) 33 | """ 34 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mkdocs-pyscript", 3 | "lockfileVersion": 2, 4 | "requires": true, 5 | "packages": { 6 | "": { 7 | "dependencies": { 8 | "@codemirror/commands": "^6.3.0", 9 | "@codemirror/lang-python": "^6.1.3", 10 | "@codemirror/language": "^6.9.1", 11 | "@codemirror/state": "^6.2.1", 12 | "@codemirror/view": "^6.21.3", 13 | "@pyscript/core": "^0.3.2", 14 | "basic-devtools": "^0.1.6", 15 | "codemirror": "^6.0.1", 16 | "esbuild": "^0.19.4" 17 | } 18 | }, 19 | "node_modules/@codemirror/autocomplete": { 20 | "version": "6.9.2", 21 | "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.9.2.tgz", 22 | "integrity": "sha512-suItGf7PhtfgQMCd8ofYzycdsAHDBB8BkNrmyxeLvptW7yNT6zGT6ZzwhAfmB94TUyAAStrHjaDGC4/foenF2A==", 23 | "dependencies": { 24 | "@codemirror/language": "^6.0.0", 25 | "@codemirror/state": "^6.0.0", 26 | "@codemirror/view": "^6.17.0", 27 | "@lezer/common": "^1.0.0" 28 | }, 29 | "peerDependencies": { 30 | "@codemirror/language": "^6.0.0", 31 | "@codemirror/state": "^6.0.0", 32 | "@codemirror/view": "^6.0.0", 33 | "@lezer/common": "^1.0.0" 34 | } 35 | }, 36 | "node_modules/@codemirror/commands": { 37 | "version": "6.3.0", 38 | "resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.3.0.tgz", 39 | "integrity": "sha512-tFfcxRIlOWiQDFhjBSWJ10MxcvbCIsRr6V64SgrcaY0MwNk32cUOcCuNlWo8VjV4qRQCgNgUAnIeo0svkk4R5Q==", 40 | "dependencies": { 41 | "@codemirror/language": "^6.0.0", 42 | "@codemirror/state": "^6.2.0", 43 | "@codemirror/view": "^6.0.0", 44 | "@lezer/common": "^1.1.0" 45 | } 46 | }, 47 | "node_modules/@codemirror/lang-python": { 48 | "version": "6.1.3", 49 | "resolved": "https://registry.npmjs.org/@codemirror/lang-python/-/lang-python-6.1.3.tgz", 50 | "integrity": "sha512-S9w2Jl74hFlD5nqtUMIaXAq9t5WlM0acCkyuQWUUSvZclk1sV+UfnpFiZzuZSG+hfEaOmxKR5UxY/Uxswn7EhQ==", 51 | "dependencies": { 52 | "@codemirror/autocomplete": "^6.3.2", 53 | "@codemirror/language": "^6.8.0", 54 | "@lezer/python": "^1.1.4" 55 | } 56 | }, 57 | "node_modules/@codemirror/language": { 58 | "version": "6.9.1", 59 | "resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.9.1.tgz", 60 | "integrity": "sha512-lWRP3Y9IUdOms6DXuBpoWwjkR7yRmnS0hKYCbSfPz9v6Em1A1UCRujAkDiCrdYfs1Z0Eu4dGtwovNPStIfkgNA==", 61 | "dependencies": { 62 | "@codemirror/state": "^6.0.0", 63 | "@codemirror/view": "^6.0.0", 64 | "@lezer/common": "^1.1.0", 65 | "@lezer/highlight": "^1.0.0", 66 | "@lezer/lr": "^1.0.0", 67 | "style-mod": "^4.0.0" 68 | } 69 | }, 70 | "node_modules/@codemirror/lint": { 71 | "version": "6.4.2", 72 | "resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.4.2.tgz", 73 | "integrity": "sha512-wzRkluWb1ptPKdzlsrbwwjYCPLgzU6N88YBAmlZi8WFyuiEduSd05MnJYNogzyc8rPK7pj6m95ptUApc8sHKVA==", 74 | "dependencies": { 75 | "@codemirror/state": "^6.0.0", 76 | "@codemirror/view": "^6.0.0", 77 | "crelt": "^1.0.5" 78 | } 79 | }, 80 | "node_modules/@codemirror/search": { 81 | "version": "6.5.4", 82 | "resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.4.tgz", 83 | "integrity": "sha512-YoTrvjv9e8EbPs58opjZKyJ3ewFrVSUzQ/4WXlULQLSDDr1nGPJ67mMXFNNVYwdFhybzhrzrtqgHmtpJwIF+8g==", 84 | "dependencies": { 85 | "@codemirror/state": "^6.0.0", 86 | "@codemirror/view": "^6.0.0", 87 | "crelt": "^1.0.5" 88 | } 89 | }, 90 | "node_modules/@codemirror/state": { 91 | "version": "6.2.1", 92 | "resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.2.1.tgz", 93 | "integrity": "sha512-RupHSZ8+OjNT38zU9fKH2sv+Dnlr8Eb8sl4NOnnqz95mCFTZUaiRP8Xv5MeeaG0px2b8Bnfe7YGwCV3nsBhbuw==" 94 | }, 95 | "node_modules/@codemirror/view": { 96 | "version": "6.21.3", 97 | "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.21.3.tgz", 98 | "integrity": "sha512-8l1aSQ6MygzL4Nx7GVYhucSXvW4jQd0F6Zm3v9Dg+6nZEfwzJVqi4C2zHfDljID+73gsQrWp9TgHc81xU15O4A==", 99 | "dependencies": { 100 | "@codemirror/state": "^6.1.4", 101 | "style-mod": "^4.1.0", 102 | "w3c-keyname": "^2.2.4" 103 | } 104 | }, 105 | "node_modules/@esbuild/android-arm": { 106 | "version": "0.19.4", 107 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.4.tgz", 108 | "integrity": "sha512-uBIbiYMeSsy2U0XQoOGVVcpIktjLMEKa7ryz2RLr7L/vTnANNEsPVAh4xOv7ondGz6ac1zVb0F8Jx20rQikffQ==", 109 | "cpu": [ 110 | "arm" 111 | ], 112 | "optional": true, 113 | "os": [ 114 | "android" 115 | ], 116 | "engines": { 117 | "node": ">=12" 118 | } 119 | }, 120 | "node_modules/@esbuild/android-arm64": { 121 | "version": "0.19.4", 122 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.4.tgz", 123 | "integrity": "sha512-mRsi2vJsk4Bx/AFsNBqOH2fqedxn5L/moT58xgg51DjX1la64Z3Npicut2VbhvDFO26qjWtPMsVxCd80YTFVeg==", 124 | "cpu": [ 125 | "arm64" 126 | ], 127 | "optional": true, 128 | "os": [ 129 | "android" 130 | ], 131 | "engines": { 132 | "node": ">=12" 133 | } 134 | }, 135 | "node_modules/@esbuild/android-x64": { 136 | "version": "0.19.4", 137 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.4.tgz", 138 | "integrity": "sha512-4iPufZ1TMOD3oBlGFqHXBpa3KFT46aLl6Vy7gwed0ZSYgHaZ/mihbYb4t7Z9etjkC9Al3ZYIoOaHrU60gcMy7g==", 139 | "cpu": [ 140 | "x64" 141 | ], 142 | "optional": true, 143 | "os": [ 144 | "android" 145 | ], 146 | "engines": { 147 | "node": ">=12" 148 | } 149 | }, 150 | "node_modules/@esbuild/darwin-arm64": { 151 | "version": "0.19.4", 152 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.4.tgz", 153 | "integrity": "sha512-Lviw8EzxsVQKpbS+rSt6/6zjn9ashUZ7Tbuvc2YENgRl0yZTktGlachZ9KMJUsVjZEGFVu336kl5lBgDN6PmpA==", 154 | "cpu": [ 155 | "arm64" 156 | ], 157 | "optional": true, 158 | "os": [ 159 | "darwin" 160 | ], 161 | "engines": { 162 | "node": ">=12" 163 | } 164 | }, 165 | "node_modules/@esbuild/darwin-x64": { 166 | "version": "0.19.4", 167 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.4.tgz", 168 | "integrity": "sha512-YHbSFlLgDwglFn0lAO3Zsdrife9jcQXQhgRp77YiTDja23FrC2uwnhXMNkAucthsf+Psr7sTwYEryxz6FPAVqw==", 169 | "cpu": [ 170 | "x64" 171 | ], 172 | "optional": true, 173 | "os": [ 174 | "darwin" 175 | ], 176 | "engines": { 177 | "node": ">=12" 178 | } 179 | }, 180 | "node_modules/@esbuild/freebsd-arm64": { 181 | "version": "0.19.4", 182 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.4.tgz", 183 | "integrity": "sha512-vz59ijyrTG22Hshaj620e5yhs2dU1WJy723ofc+KUgxVCM6zxQESmWdMuVmUzxtGqtj5heHyB44PjV/HKsEmuQ==", 184 | "cpu": [ 185 | "arm64" 186 | ], 187 | "optional": true, 188 | "os": [ 189 | "freebsd" 190 | ], 191 | "engines": { 192 | "node": ">=12" 193 | } 194 | }, 195 | "node_modules/@esbuild/freebsd-x64": { 196 | "version": "0.19.4", 197 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.4.tgz", 198 | "integrity": "sha512-3sRbQ6W5kAiVQRBWREGJNd1YE7OgzS0AmOGjDmX/qZZecq8NFlQsQH0IfXjjmD0XtUYqr64e0EKNFjMUlPL3Cw==", 199 | "cpu": [ 200 | "x64" 201 | ], 202 | "optional": true, 203 | "os": [ 204 | "freebsd" 205 | ], 206 | "engines": { 207 | "node": ">=12" 208 | } 209 | }, 210 | "node_modules/@esbuild/linux-arm": { 211 | "version": "0.19.4", 212 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.4.tgz", 213 | "integrity": "sha512-z/4ArqOo9EImzTi4b6Vq+pthLnepFzJ92BnofU1jgNlcVb+UqynVFdoXMCFreTK7FdhqAzH0vmdwW5373Hm9pg==", 214 | "cpu": [ 215 | "arm" 216 | ], 217 | "optional": true, 218 | "os": [ 219 | "linux" 220 | ], 221 | "engines": { 222 | "node": ">=12" 223 | } 224 | }, 225 | "node_modules/@esbuild/linux-arm64": { 226 | "version": "0.19.4", 227 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.4.tgz", 228 | "integrity": "sha512-ZWmWORaPbsPwmyu7eIEATFlaqm0QGt+joRE9sKcnVUG3oBbr/KYdNE2TnkzdQwX6EDRdg/x8Q4EZQTXoClUqqA==", 229 | "cpu": [ 230 | "arm64" 231 | ], 232 | "optional": true, 233 | "os": [ 234 | "linux" 235 | ], 236 | "engines": { 237 | "node": ">=12" 238 | } 239 | }, 240 | "node_modules/@esbuild/linux-ia32": { 241 | "version": "0.19.4", 242 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.4.tgz", 243 | "integrity": "sha512-EGc4vYM7i1GRUIMqRZNCTzJh25MHePYsnQfKDexD8uPTCm9mK56NIL04LUfX2aaJ+C9vyEp2fJ7jbqFEYgO9lQ==", 244 | "cpu": [ 245 | "ia32" 246 | ], 247 | "optional": true, 248 | "os": [ 249 | "linux" 250 | ], 251 | "engines": { 252 | "node": ">=12" 253 | } 254 | }, 255 | "node_modules/@esbuild/linux-loong64": { 256 | "version": "0.19.4", 257 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.4.tgz", 258 | "integrity": "sha512-WVhIKO26kmm8lPmNrUikxSpXcgd6HDog0cx12BUfA2PkmURHSgx9G6vA19lrlQOMw+UjMZ+l3PpbtzffCxFDRg==", 259 | "cpu": [ 260 | "loong64" 261 | ], 262 | "optional": true, 263 | "os": [ 264 | "linux" 265 | ], 266 | "engines": { 267 | "node": ">=12" 268 | } 269 | }, 270 | "node_modules/@esbuild/linux-mips64el": { 271 | "version": "0.19.4", 272 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.4.tgz", 273 | "integrity": "sha512-keYY+Hlj5w86hNp5JJPuZNbvW4jql7c1eXdBUHIJGTeN/+0QFutU3GrS+c27L+NTmzi73yhtojHk+lr2+502Mw==", 274 | "cpu": [ 275 | "mips64el" 276 | ], 277 | "optional": true, 278 | "os": [ 279 | "linux" 280 | ], 281 | "engines": { 282 | "node": ">=12" 283 | } 284 | }, 285 | "node_modules/@esbuild/linux-ppc64": { 286 | "version": "0.19.4", 287 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.4.tgz", 288 | "integrity": "sha512-tQ92n0WMXyEsCH4m32S21fND8VxNiVazUbU4IUGVXQpWiaAxOBvtOtbEt3cXIV3GEBydYsY8pyeRMJx9kn3rvw==", 289 | "cpu": [ 290 | "ppc64" 291 | ], 292 | "optional": true, 293 | "os": [ 294 | "linux" 295 | ], 296 | "engines": { 297 | "node": ">=12" 298 | } 299 | }, 300 | "node_modules/@esbuild/linux-riscv64": { 301 | "version": "0.19.4", 302 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.4.tgz", 303 | "integrity": "sha512-tRRBey6fG9tqGH6V75xH3lFPpj9E8BH+N+zjSUCnFOX93kEzqS0WdyJHkta/mmJHn7MBaa++9P4ARiU4ykjhig==", 304 | "cpu": [ 305 | "riscv64" 306 | ], 307 | "optional": true, 308 | "os": [ 309 | "linux" 310 | ], 311 | "engines": { 312 | "node": ">=12" 313 | } 314 | }, 315 | "node_modules/@esbuild/linux-s390x": { 316 | "version": "0.19.4", 317 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.4.tgz", 318 | "integrity": "sha512-152aLpQqKZYhThiJ+uAM4PcuLCAOxDsCekIbnGzPKVBRUDlgaaAfaUl5NYkB1hgY6WN4sPkejxKlANgVcGl9Qg==", 319 | "cpu": [ 320 | "s390x" 321 | ], 322 | "optional": true, 323 | "os": [ 324 | "linux" 325 | ], 326 | "engines": { 327 | "node": ">=12" 328 | } 329 | }, 330 | "node_modules/@esbuild/linux-x64": { 331 | "version": "0.19.4", 332 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.4.tgz", 333 | "integrity": "sha512-Mi4aNA3rz1BNFtB7aGadMD0MavmzuuXNTaYL6/uiYIs08U7YMPETpgNn5oue3ICr+inKwItOwSsJDYkrE9ekVg==", 334 | "cpu": [ 335 | "x64" 336 | ], 337 | "optional": true, 338 | "os": [ 339 | "linux" 340 | ], 341 | "engines": { 342 | "node": ">=12" 343 | } 344 | }, 345 | "node_modules/@esbuild/netbsd-x64": { 346 | "version": "0.19.4", 347 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.4.tgz", 348 | "integrity": "sha512-9+Wxx1i5N/CYo505CTT7T+ix4lVzEdz0uCoYGxM5JDVlP2YdDC1Bdz+Khv6IbqmisT0Si928eAxbmGkcbiuM/A==", 349 | "cpu": [ 350 | "x64" 351 | ], 352 | "optional": true, 353 | "os": [ 354 | "netbsd" 355 | ], 356 | "engines": { 357 | "node": ">=12" 358 | } 359 | }, 360 | "node_modules/@esbuild/openbsd-x64": { 361 | "version": "0.19.4", 362 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.4.tgz", 363 | "integrity": "sha512-MFsHleM5/rWRW9EivFssop+OulYVUoVcqkyOkjiynKBCGBj9Lihl7kh9IzrreDyXa4sNkquei5/DTP4uCk25xw==", 364 | "cpu": [ 365 | "x64" 366 | ], 367 | "optional": true, 368 | "os": [ 369 | "openbsd" 370 | ], 371 | "engines": { 372 | "node": ">=12" 373 | } 374 | }, 375 | "node_modules/@esbuild/sunos-x64": { 376 | "version": "0.19.4", 377 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.4.tgz", 378 | "integrity": "sha512-6Xq8SpK46yLvrGxjp6HftkDwPP49puU4OF0hEL4dTxqCbfx09LyrbUj/D7tmIRMj5D5FCUPksBbxyQhp8tmHzw==", 379 | "cpu": [ 380 | "x64" 381 | ], 382 | "optional": true, 383 | "os": [ 384 | "sunos" 385 | ], 386 | "engines": { 387 | "node": ">=12" 388 | } 389 | }, 390 | "node_modules/@esbuild/win32-arm64": { 391 | "version": "0.19.4", 392 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.4.tgz", 393 | "integrity": "sha512-PkIl7Jq4mP6ke7QKwyg4fD4Xvn8PXisagV/+HntWoDEdmerB2LTukRZg728Yd1Fj+LuEX75t/hKXE2Ppk8Hh1w==", 394 | "cpu": [ 395 | "arm64" 396 | ], 397 | "optional": true, 398 | "os": [ 399 | "win32" 400 | ], 401 | "engines": { 402 | "node": ">=12" 403 | } 404 | }, 405 | "node_modules/@esbuild/win32-ia32": { 406 | "version": "0.19.4", 407 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.4.tgz", 408 | "integrity": "sha512-ga676Hnvw7/ycdKB53qPusvsKdwrWzEyJ+AtItHGoARszIqvjffTwaaW3b2L6l90i7MO9i+dlAW415INuRhSGg==", 409 | "cpu": [ 410 | "ia32" 411 | ], 412 | "optional": true, 413 | "os": [ 414 | "win32" 415 | ], 416 | "engines": { 417 | "node": ">=12" 418 | } 419 | }, 420 | "node_modules/@esbuild/win32-x64": { 421 | "version": "0.19.4", 422 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.4.tgz", 423 | "integrity": "sha512-HP0GDNla1T3ZL8Ko/SHAS2GgtjOg+VmWnnYLhuTksr++EnduYB0f3Y2LzHsUwb2iQ13JGoY6G3R8h6Du/WG6uA==", 424 | "cpu": [ 425 | "x64" 426 | ], 427 | "optional": true, 428 | "os": [ 429 | "win32" 430 | ], 431 | "engines": { 432 | "node": ">=12" 433 | } 434 | }, 435 | "node_modules/@lezer/common": { 436 | "version": "1.1.0", 437 | "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.1.0.tgz", 438 | "integrity": "sha512-XPIN3cYDXsoJI/oDWoR2tD++juVrhgIago9xyKhZ7IhGlzdDM9QgC8D8saKNCz5pindGcznFr2HBSsEQSWnSjw==" 439 | }, 440 | "node_modules/@lezer/highlight": { 441 | "version": "1.1.6", 442 | "resolved": "https://registry.npmjs.org/@lezer/highlight/-/highlight-1.1.6.tgz", 443 | "integrity": "sha512-cmSJYa2us+r3SePpRCjN5ymCqCPv+zyXmDl0ciWtVaNiORT/MxM7ZgOMQZADD0o51qOaOg24qc/zBViOIwAjJg==", 444 | "dependencies": { 445 | "@lezer/common": "^1.0.0" 446 | } 447 | }, 448 | "node_modules/@lezer/lr": { 449 | "version": "1.3.13", 450 | "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.3.13.tgz", 451 | "integrity": "sha512-RLAbau/4uSzKgIKj96mI5WUtG1qtiR0Frn0Ei9zhPj8YOkHM+1Bb8SgdVvmR/aWJCFIzjo2KFnDiRZ75Xf5NdQ==", 452 | "dependencies": { 453 | "@lezer/common": "^1.0.0" 454 | } 455 | }, 456 | "node_modules/@lezer/python": { 457 | "version": "1.1.8", 458 | "resolved": "https://registry.npmjs.org/@lezer/python/-/python-1.1.8.tgz", 459 | "integrity": "sha512-1T/XsmeF57ijrjpC0Zmrf9YeO5mn2zC1XeSNrOnc0KB+6PgxJ5m7kWKt0CnwyS74oHQXbJxUUL+QDQJR26c1Gw==", 460 | "dependencies": { 461 | "@lezer/highlight": "^1.0.0", 462 | "@lezer/lr": "^1.0.0" 463 | } 464 | }, 465 | "node_modules/@pyscript/core": { 466 | "version": "0.3.2", 467 | "resolved": "https://registry.npmjs.org/@pyscript/core/-/core-0.3.2.tgz", 468 | "integrity": "sha512-jPWMi3omP+RV/U3OyHSu/bPm0tF/FCTIkc16VkCvupOxTqzWNGshKioGRu2r5o1jjVf/yEKdv5Z5Gr/+uRV57A==", 469 | "dependencies": { 470 | "@ungap/with-resolvers": "^0.1.0", 471 | "basic-devtools": "^0.1.6", 472 | "polyscript": "^0.5.6", 473 | "sticky-module": "^0.1.0", 474 | "to-json-callback": "^0.1.1", 475 | "type-checked-collections": "^0.1.7" 476 | } 477 | }, 478 | "node_modules/@ungap/structured-clone": { 479 | "version": "1.2.0", 480 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 481 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" 482 | }, 483 | "node_modules/@ungap/with-resolvers": { 484 | "version": "0.1.0", 485 | "resolved": "https://registry.npmjs.org/@ungap/with-resolvers/-/with-resolvers-0.1.0.tgz", 486 | "integrity": "sha512-g7f0IkJdPW2xhY7H4iE72DAsIyfuwEFc6JWc2tYFwKDMWWAF699vGjrM348cwQuOXgHpe1gWFe+Eiyjx/ewvvw==" 487 | }, 488 | "node_modules/basic-devtools": { 489 | "version": "0.1.6", 490 | "resolved": "https://registry.npmjs.org/basic-devtools/-/basic-devtools-0.1.6.tgz", 491 | "integrity": "sha512-g9zJ63GmdUesS3/Fwv0B5SYX6nR56TQXmGr+wE5PRTNCnGQMYWhUx/nZB/mMWnQJVLPPAp89oxDNlasdtNkW5Q==" 492 | }, 493 | "node_modules/codedent": { 494 | "version": "0.1.2", 495 | "resolved": "https://registry.npmjs.org/codedent/-/codedent-0.1.2.tgz", 496 | "integrity": "sha512-qEqzcy5viM3UoCN0jYHZeXZoyd4NZQzYFg0kOBj8O1CgoGG9WYYTF+VeQRsN0OSKFjF3G1u4WDUOtOsWEx6N2w==", 497 | "dependencies": { 498 | "plain-tag": "^0.1.3" 499 | } 500 | }, 501 | "node_modules/codemirror": { 502 | "version": "6.0.1", 503 | "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-6.0.1.tgz", 504 | "integrity": "sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==", 505 | "dependencies": { 506 | "@codemirror/autocomplete": "^6.0.0", 507 | "@codemirror/commands": "^6.0.0", 508 | "@codemirror/language": "^6.0.0", 509 | "@codemirror/lint": "^6.0.0", 510 | "@codemirror/search": "^6.0.0", 511 | "@codemirror/state": "^6.0.0", 512 | "@codemirror/view": "^6.0.0" 513 | } 514 | }, 515 | "node_modules/coincident": { 516 | "version": "0.14.3", 517 | "resolved": "https://registry.npmjs.org/coincident/-/coincident-0.14.3.tgz", 518 | "integrity": "sha512-vd5xP+d5vCCcwTTUxQb3LHRi+dhXnuD+Bgjyf1r1H0IPjfXGDs3z2C4RZJifCJmokqf3Ff9BiFealewTBMTgYw==", 519 | "dependencies": { 520 | "@ungap/structured-clone": "^1.2.0", 521 | "@ungap/with-resolvers": "^0.1.0", 522 | "gc-hook": "^0.2.3" 523 | }, 524 | "optionalDependencies": { 525 | "ws": "^8.14.2" 526 | } 527 | }, 528 | "node_modules/crelt": { 529 | "version": "1.0.6", 530 | "resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz", 531 | "integrity": "sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==" 532 | }, 533 | "node_modules/esbuild": { 534 | "version": "0.19.4", 535 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.4.tgz", 536 | "integrity": "sha512-x7jL0tbRRpv4QUyuDMjONtWFciygUxWaUM1kMX2zWxI0X2YWOt7MSA0g4UdeSiHM8fcYVzpQhKYOycZwxTdZkA==", 537 | "hasInstallScript": true, 538 | "bin": { 539 | "esbuild": "bin/esbuild" 540 | }, 541 | "engines": { 542 | "node": ">=12" 543 | }, 544 | "optionalDependencies": { 545 | "@esbuild/android-arm": "0.19.4", 546 | "@esbuild/android-arm64": "0.19.4", 547 | "@esbuild/android-x64": "0.19.4", 548 | "@esbuild/darwin-arm64": "0.19.4", 549 | "@esbuild/darwin-x64": "0.19.4", 550 | "@esbuild/freebsd-arm64": "0.19.4", 551 | "@esbuild/freebsd-x64": "0.19.4", 552 | "@esbuild/linux-arm": "0.19.4", 553 | "@esbuild/linux-arm64": "0.19.4", 554 | "@esbuild/linux-ia32": "0.19.4", 555 | "@esbuild/linux-loong64": "0.19.4", 556 | "@esbuild/linux-mips64el": "0.19.4", 557 | "@esbuild/linux-ppc64": "0.19.4", 558 | "@esbuild/linux-riscv64": "0.19.4", 559 | "@esbuild/linux-s390x": "0.19.4", 560 | "@esbuild/linux-x64": "0.19.4", 561 | "@esbuild/netbsd-x64": "0.19.4", 562 | "@esbuild/openbsd-x64": "0.19.4", 563 | "@esbuild/sunos-x64": "0.19.4", 564 | "@esbuild/win32-arm64": "0.19.4", 565 | "@esbuild/win32-ia32": "0.19.4", 566 | "@esbuild/win32-x64": "0.19.4" 567 | } 568 | }, 569 | "node_modules/gc-hook": { 570 | "version": "0.2.3", 571 | "resolved": "https://registry.npmjs.org/gc-hook/-/gc-hook-0.2.3.tgz", 572 | "integrity": "sha512-XfA+XiE7QzJzonfvNjTXmcyGtprD6m85KEH9fngmxghVR7PJ4f3ZKsLI22QNpWJiDO5EIR6iMzz9wSxLBqw6+A==" 573 | }, 574 | "node_modules/html-escaper": { 575 | "version": "3.0.3", 576 | "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz", 577 | "integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==" 578 | }, 579 | "node_modules/plain-tag": { 580 | "version": "0.1.3", 581 | "resolved": "https://registry.npmjs.org/plain-tag/-/plain-tag-0.1.3.tgz", 582 | "integrity": "sha512-yyVAOFKTAElc7KdLt2+UKGExNYwYb/Y/WE9i+1ezCQsJE8gbKSjewfpRqK2nQgZ4d4hhAAGgDCOcIZVilqE5UA==" 583 | }, 584 | "node_modules/polyscript": { 585 | "version": "0.5.6", 586 | "resolved": "https://registry.npmjs.org/polyscript/-/polyscript-0.5.6.tgz", 587 | "integrity": "sha512-T1iufSnsq33K5m2vECiVvgDd5zJiSum+eNv3/SUTb38vIxQpDG2W4aVffoIXIgPYe2Bij/aU2xW1P9M2CHUifw==", 588 | "dependencies": { 589 | "@ungap/structured-clone": "^1.2.0", 590 | "@ungap/with-resolvers": "^0.1.0", 591 | "basic-devtools": "^0.1.6", 592 | "codedent": "^0.1.2", 593 | "coincident": "^0.14.3", 594 | "html-escaper": "^3.0.3", 595 | "sticky-module": "^0.1.0" 596 | } 597 | }, 598 | "node_modules/sticky-module": { 599 | "version": "0.1.0", 600 | "resolved": "https://registry.npmjs.org/sticky-module/-/sticky-module-0.1.0.tgz", 601 | "integrity": "sha512-MYmkk/ihfpzQjOPfxbqScT2JS72H/8ueUtnBxxZiJbHopmJ1Lw62Lq/IimL34czVf1oQoG0Be/TDtJUyNVdEvA==" 602 | }, 603 | "node_modules/style-mod": { 604 | "version": "4.1.0", 605 | "resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.1.0.tgz", 606 | "integrity": "sha512-Ca5ib8HrFn+f+0n4N4ScTIA9iTOQ7MaGS1ylHcoVqW9J7w2w8PzN6g9gKmTYgGEBH8e120+RCmhpje6jC5uGWA==" 607 | }, 608 | "node_modules/to-json-callback": { 609 | "version": "0.1.1", 610 | "resolved": "https://registry.npmjs.org/to-json-callback/-/to-json-callback-0.1.1.tgz", 611 | "integrity": "sha512-BzOeinTT3NjE+FJ2iCvWB8HvyuyBzoH3WlSnJ+AYVC4tlePyZWSYdkQIFOARWiq0t35/XhmI0uQsFiUsRksRqg==" 612 | }, 613 | "node_modules/type-checked-collections": { 614 | "version": "0.1.7", 615 | "resolved": "https://registry.npmjs.org/type-checked-collections/-/type-checked-collections-0.1.7.tgz", 616 | "integrity": "sha512-fLIydlJy7IG9XL4wjRwEcKhxx/ekLXiWiMvcGo01cOMF+TN+5ZqajM1mRNRz2bNNi1bzou2yofhjZEQi7kgl9A==" 617 | }, 618 | "node_modules/w3c-keyname": { 619 | "version": "2.2.8", 620 | "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz", 621 | "integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==" 622 | }, 623 | "node_modules/ws": { 624 | "version": "8.14.2", 625 | "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", 626 | "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", 627 | "optional": true, 628 | "engines": { 629 | "node": ">=10.0.0" 630 | }, 631 | "peerDependencies": { 632 | "bufferutil": "^4.0.1", 633 | "utf-8-validate": ">=5.0.2" 634 | }, 635 | "peerDependenciesMeta": { 636 | "bufferutil": { 637 | "optional": true 638 | }, 639 | "utf-8-validate": { 640 | "optional": true 641 | } 642 | } 643 | } 644 | }, 645 | "dependencies": { 646 | "@codemirror/autocomplete": { 647 | "version": "6.9.2", 648 | "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.9.2.tgz", 649 | "integrity": "sha512-suItGf7PhtfgQMCd8ofYzycdsAHDBB8BkNrmyxeLvptW7yNT6zGT6ZzwhAfmB94TUyAAStrHjaDGC4/foenF2A==", 650 | "requires": { 651 | "@codemirror/language": "^6.0.0", 652 | "@codemirror/state": "^6.0.0", 653 | "@codemirror/view": "^6.17.0", 654 | "@lezer/common": "^1.0.0" 655 | } 656 | }, 657 | "@codemirror/commands": { 658 | "version": "6.3.0", 659 | "resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.3.0.tgz", 660 | "integrity": "sha512-tFfcxRIlOWiQDFhjBSWJ10MxcvbCIsRr6V64SgrcaY0MwNk32cUOcCuNlWo8VjV4qRQCgNgUAnIeo0svkk4R5Q==", 661 | "requires": { 662 | "@codemirror/language": "^6.0.0", 663 | "@codemirror/state": "^6.2.0", 664 | "@codemirror/view": "^6.0.0", 665 | "@lezer/common": "^1.1.0" 666 | } 667 | }, 668 | "@codemirror/lang-python": { 669 | "version": "6.1.3", 670 | "resolved": "https://registry.npmjs.org/@codemirror/lang-python/-/lang-python-6.1.3.tgz", 671 | "integrity": "sha512-S9w2Jl74hFlD5nqtUMIaXAq9t5WlM0acCkyuQWUUSvZclk1sV+UfnpFiZzuZSG+hfEaOmxKR5UxY/Uxswn7EhQ==", 672 | "requires": { 673 | "@codemirror/autocomplete": "^6.3.2", 674 | "@codemirror/language": "^6.8.0", 675 | "@lezer/python": "^1.1.4" 676 | } 677 | }, 678 | "@codemirror/language": { 679 | "version": "6.9.1", 680 | "resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.9.1.tgz", 681 | "integrity": "sha512-lWRP3Y9IUdOms6DXuBpoWwjkR7yRmnS0hKYCbSfPz9v6Em1A1UCRujAkDiCrdYfs1Z0Eu4dGtwovNPStIfkgNA==", 682 | "requires": { 683 | "@codemirror/state": "^6.0.0", 684 | "@codemirror/view": "^6.0.0", 685 | "@lezer/common": "^1.1.0", 686 | "@lezer/highlight": "^1.0.0", 687 | "@lezer/lr": "^1.0.0", 688 | "style-mod": "^4.0.0" 689 | } 690 | }, 691 | "@codemirror/lint": { 692 | "version": "6.4.2", 693 | "resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.4.2.tgz", 694 | "integrity": "sha512-wzRkluWb1ptPKdzlsrbwwjYCPLgzU6N88YBAmlZi8WFyuiEduSd05MnJYNogzyc8rPK7pj6m95ptUApc8sHKVA==", 695 | "requires": { 696 | "@codemirror/state": "^6.0.0", 697 | "@codemirror/view": "^6.0.0", 698 | "crelt": "^1.0.5" 699 | } 700 | }, 701 | "@codemirror/search": { 702 | "version": "6.5.4", 703 | "resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.4.tgz", 704 | "integrity": "sha512-YoTrvjv9e8EbPs58opjZKyJ3ewFrVSUzQ/4WXlULQLSDDr1nGPJ67mMXFNNVYwdFhybzhrzrtqgHmtpJwIF+8g==", 705 | "requires": { 706 | "@codemirror/state": "^6.0.0", 707 | "@codemirror/view": "^6.0.0", 708 | "crelt": "^1.0.5" 709 | } 710 | }, 711 | "@codemirror/state": { 712 | "version": "6.2.1", 713 | "resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.2.1.tgz", 714 | "integrity": "sha512-RupHSZ8+OjNT38zU9fKH2sv+Dnlr8Eb8sl4NOnnqz95mCFTZUaiRP8Xv5MeeaG0px2b8Bnfe7YGwCV3nsBhbuw==" 715 | }, 716 | "@codemirror/view": { 717 | "version": "6.21.3", 718 | "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.21.3.tgz", 719 | "integrity": "sha512-8l1aSQ6MygzL4Nx7GVYhucSXvW4jQd0F6Zm3v9Dg+6nZEfwzJVqi4C2zHfDljID+73gsQrWp9TgHc81xU15O4A==", 720 | "requires": { 721 | "@codemirror/state": "^6.1.4", 722 | "style-mod": "^4.1.0", 723 | "w3c-keyname": "^2.2.4" 724 | } 725 | }, 726 | "@esbuild/android-arm": { 727 | "version": "0.19.4", 728 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.4.tgz", 729 | "integrity": "sha512-uBIbiYMeSsy2U0XQoOGVVcpIktjLMEKa7ryz2RLr7L/vTnANNEsPVAh4xOv7ondGz6ac1zVb0F8Jx20rQikffQ==", 730 | "optional": true 731 | }, 732 | "@esbuild/android-arm64": { 733 | "version": "0.19.4", 734 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.4.tgz", 735 | "integrity": "sha512-mRsi2vJsk4Bx/AFsNBqOH2fqedxn5L/moT58xgg51DjX1la64Z3Npicut2VbhvDFO26qjWtPMsVxCd80YTFVeg==", 736 | "optional": true 737 | }, 738 | "@esbuild/android-x64": { 739 | "version": "0.19.4", 740 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.4.tgz", 741 | "integrity": "sha512-4iPufZ1TMOD3oBlGFqHXBpa3KFT46aLl6Vy7gwed0ZSYgHaZ/mihbYb4t7Z9etjkC9Al3ZYIoOaHrU60gcMy7g==", 742 | "optional": true 743 | }, 744 | "@esbuild/darwin-arm64": { 745 | "version": "0.19.4", 746 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.4.tgz", 747 | "integrity": "sha512-Lviw8EzxsVQKpbS+rSt6/6zjn9ashUZ7Tbuvc2YENgRl0yZTktGlachZ9KMJUsVjZEGFVu336kl5lBgDN6PmpA==", 748 | "optional": true 749 | }, 750 | "@esbuild/darwin-x64": { 751 | "version": "0.19.4", 752 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.4.tgz", 753 | "integrity": "sha512-YHbSFlLgDwglFn0lAO3Zsdrife9jcQXQhgRp77YiTDja23FrC2uwnhXMNkAucthsf+Psr7sTwYEryxz6FPAVqw==", 754 | "optional": true 755 | }, 756 | "@esbuild/freebsd-arm64": { 757 | "version": "0.19.4", 758 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.4.tgz", 759 | "integrity": "sha512-vz59ijyrTG22Hshaj620e5yhs2dU1WJy723ofc+KUgxVCM6zxQESmWdMuVmUzxtGqtj5heHyB44PjV/HKsEmuQ==", 760 | "optional": true 761 | }, 762 | "@esbuild/freebsd-x64": { 763 | "version": "0.19.4", 764 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.4.tgz", 765 | "integrity": "sha512-3sRbQ6W5kAiVQRBWREGJNd1YE7OgzS0AmOGjDmX/qZZecq8NFlQsQH0IfXjjmD0XtUYqr64e0EKNFjMUlPL3Cw==", 766 | "optional": true 767 | }, 768 | "@esbuild/linux-arm": { 769 | "version": "0.19.4", 770 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.4.tgz", 771 | "integrity": "sha512-z/4ArqOo9EImzTi4b6Vq+pthLnepFzJ92BnofU1jgNlcVb+UqynVFdoXMCFreTK7FdhqAzH0vmdwW5373Hm9pg==", 772 | "optional": true 773 | }, 774 | "@esbuild/linux-arm64": { 775 | "version": "0.19.4", 776 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.4.tgz", 777 | "integrity": "sha512-ZWmWORaPbsPwmyu7eIEATFlaqm0QGt+joRE9sKcnVUG3oBbr/KYdNE2TnkzdQwX6EDRdg/x8Q4EZQTXoClUqqA==", 778 | "optional": true 779 | }, 780 | "@esbuild/linux-ia32": { 781 | "version": "0.19.4", 782 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.4.tgz", 783 | "integrity": "sha512-EGc4vYM7i1GRUIMqRZNCTzJh25MHePYsnQfKDexD8uPTCm9mK56NIL04LUfX2aaJ+C9vyEp2fJ7jbqFEYgO9lQ==", 784 | "optional": true 785 | }, 786 | "@esbuild/linux-loong64": { 787 | "version": "0.19.4", 788 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.4.tgz", 789 | "integrity": "sha512-WVhIKO26kmm8lPmNrUikxSpXcgd6HDog0cx12BUfA2PkmURHSgx9G6vA19lrlQOMw+UjMZ+l3PpbtzffCxFDRg==", 790 | "optional": true 791 | }, 792 | "@esbuild/linux-mips64el": { 793 | "version": "0.19.4", 794 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.4.tgz", 795 | "integrity": "sha512-keYY+Hlj5w86hNp5JJPuZNbvW4jql7c1eXdBUHIJGTeN/+0QFutU3GrS+c27L+NTmzi73yhtojHk+lr2+502Mw==", 796 | "optional": true 797 | }, 798 | "@esbuild/linux-ppc64": { 799 | "version": "0.19.4", 800 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.4.tgz", 801 | "integrity": "sha512-tQ92n0WMXyEsCH4m32S21fND8VxNiVazUbU4IUGVXQpWiaAxOBvtOtbEt3cXIV3GEBydYsY8pyeRMJx9kn3rvw==", 802 | "optional": true 803 | }, 804 | "@esbuild/linux-riscv64": { 805 | "version": "0.19.4", 806 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.4.tgz", 807 | "integrity": "sha512-tRRBey6fG9tqGH6V75xH3lFPpj9E8BH+N+zjSUCnFOX93kEzqS0WdyJHkta/mmJHn7MBaa++9P4ARiU4ykjhig==", 808 | "optional": true 809 | }, 810 | "@esbuild/linux-s390x": { 811 | "version": "0.19.4", 812 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.4.tgz", 813 | "integrity": "sha512-152aLpQqKZYhThiJ+uAM4PcuLCAOxDsCekIbnGzPKVBRUDlgaaAfaUl5NYkB1hgY6WN4sPkejxKlANgVcGl9Qg==", 814 | "optional": true 815 | }, 816 | "@esbuild/linux-x64": { 817 | "version": "0.19.4", 818 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.4.tgz", 819 | "integrity": "sha512-Mi4aNA3rz1BNFtB7aGadMD0MavmzuuXNTaYL6/uiYIs08U7YMPETpgNn5oue3ICr+inKwItOwSsJDYkrE9ekVg==", 820 | "optional": true 821 | }, 822 | "@esbuild/netbsd-x64": { 823 | "version": "0.19.4", 824 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.4.tgz", 825 | "integrity": "sha512-9+Wxx1i5N/CYo505CTT7T+ix4lVzEdz0uCoYGxM5JDVlP2YdDC1Bdz+Khv6IbqmisT0Si928eAxbmGkcbiuM/A==", 826 | "optional": true 827 | }, 828 | "@esbuild/openbsd-x64": { 829 | "version": "0.19.4", 830 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.4.tgz", 831 | "integrity": "sha512-MFsHleM5/rWRW9EivFssop+OulYVUoVcqkyOkjiynKBCGBj9Lihl7kh9IzrreDyXa4sNkquei5/DTP4uCk25xw==", 832 | "optional": true 833 | }, 834 | "@esbuild/sunos-x64": { 835 | "version": "0.19.4", 836 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.4.tgz", 837 | "integrity": "sha512-6Xq8SpK46yLvrGxjp6HftkDwPP49puU4OF0hEL4dTxqCbfx09LyrbUj/D7tmIRMj5D5FCUPksBbxyQhp8tmHzw==", 838 | "optional": true 839 | }, 840 | "@esbuild/win32-arm64": { 841 | "version": "0.19.4", 842 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.4.tgz", 843 | "integrity": "sha512-PkIl7Jq4mP6ke7QKwyg4fD4Xvn8PXisagV/+HntWoDEdmerB2LTukRZg728Yd1Fj+LuEX75t/hKXE2Ppk8Hh1w==", 844 | "optional": true 845 | }, 846 | "@esbuild/win32-ia32": { 847 | "version": "0.19.4", 848 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.4.tgz", 849 | "integrity": "sha512-ga676Hnvw7/ycdKB53qPusvsKdwrWzEyJ+AtItHGoARszIqvjffTwaaW3b2L6l90i7MO9i+dlAW415INuRhSGg==", 850 | "optional": true 851 | }, 852 | "@esbuild/win32-x64": { 853 | "version": "0.19.4", 854 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.4.tgz", 855 | "integrity": "sha512-HP0GDNla1T3ZL8Ko/SHAS2GgtjOg+VmWnnYLhuTksr++EnduYB0f3Y2LzHsUwb2iQ13JGoY6G3R8h6Du/WG6uA==", 856 | "optional": true 857 | }, 858 | "@lezer/common": { 859 | "version": "1.1.0", 860 | "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.1.0.tgz", 861 | "integrity": "sha512-XPIN3cYDXsoJI/oDWoR2tD++juVrhgIago9xyKhZ7IhGlzdDM9QgC8D8saKNCz5pindGcznFr2HBSsEQSWnSjw==" 862 | }, 863 | "@lezer/highlight": { 864 | "version": "1.1.6", 865 | "resolved": "https://registry.npmjs.org/@lezer/highlight/-/highlight-1.1.6.tgz", 866 | "integrity": "sha512-cmSJYa2us+r3SePpRCjN5ymCqCPv+zyXmDl0ciWtVaNiORT/MxM7ZgOMQZADD0o51qOaOg24qc/zBViOIwAjJg==", 867 | "requires": { 868 | "@lezer/common": "^1.0.0" 869 | } 870 | }, 871 | "@lezer/lr": { 872 | "version": "1.3.13", 873 | "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.3.13.tgz", 874 | "integrity": "sha512-RLAbau/4uSzKgIKj96mI5WUtG1qtiR0Frn0Ei9zhPj8YOkHM+1Bb8SgdVvmR/aWJCFIzjo2KFnDiRZ75Xf5NdQ==", 875 | "requires": { 876 | "@lezer/common": "^1.0.0" 877 | } 878 | }, 879 | "@lezer/python": { 880 | "version": "1.1.8", 881 | "resolved": "https://registry.npmjs.org/@lezer/python/-/python-1.1.8.tgz", 882 | "integrity": "sha512-1T/XsmeF57ijrjpC0Zmrf9YeO5mn2zC1XeSNrOnc0KB+6PgxJ5m7kWKt0CnwyS74oHQXbJxUUL+QDQJR26c1Gw==", 883 | "requires": { 884 | "@lezer/highlight": "^1.0.0", 885 | "@lezer/lr": "^1.0.0" 886 | } 887 | }, 888 | "@pyscript/core": { 889 | "version": "0.3.2", 890 | "resolved": "https://registry.npmjs.org/@pyscript/core/-/core-0.3.2.tgz", 891 | "integrity": "sha512-jPWMi3omP+RV/U3OyHSu/bPm0tF/FCTIkc16VkCvupOxTqzWNGshKioGRu2r5o1jjVf/yEKdv5Z5Gr/+uRV57A==", 892 | "requires": { 893 | "@ungap/with-resolvers": "^0.1.0", 894 | "basic-devtools": "^0.1.6", 895 | "polyscript": "^0.5.6", 896 | "sticky-module": "^0.1.0", 897 | "to-json-callback": "^0.1.1", 898 | "type-checked-collections": "^0.1.7" 899 | } 900 | }, 901 | "@ungap/structured-clone": { 902 | "version": "1.2.0", 903 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 904 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" 905 | }, 906 | "@ungap/with-resolvers": { 907 | "version": "0.1.0", 908 | "resolved": "https://registry.npmjs.org/@ungap/with-resolvers/-/with-resolvers-0.1.0.tgz", 909 | "integrity": "sha512-g7f0IkJdPW2xhY7H4iE72DAsIyfuwEFc6JWc2tYFwKDMWWAF699vGjrM348cwQuOXgHpe1gWFe+Eiyjx/ewvvw==" 910 | }, 911 | "basic-devtools": { 912 | "version": "0.1.6", 913 | "resolved": "https://registry.npmjs.org/basic-devtools/-/basic-devtools-0.1.6.tgz", 914 | "integrity": "sha512-g9zJ63GmdUesS3/Fwv0B5SYX6nR56TQXmGr+wE5PRTNCnGQMYWhUx/nZB/mMWnQJVLPPAp89oxDNlasdtNkW5Q==" 915 | }, 916 | "codedent": { 917 | "version": "0.1.2", 918 | "resolved": "https://registry.npmjs.org/codedent/-/codedent-0.1.2.tgz", 919 | "integrity": "sha512-qEqzcy5viM3UoCN0jYHZeXZoyd4NZQzYFg0kOBj8O1CgoGG9WYYTF+VeQRsN0OSKFjF3G1u4WDUOtOsWEx6N2w==", 920 | "requires": { 921 | "plain-tag": "^0.1.3" 922 | } 923 | }, 924 | "codemirror": { 925 | "version": "6.0.1", 926 | "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-6.0.1.tgz", 927 | "integrity": "sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==", 928 | "requires": { 929 | "@codemirror/autocomplete": "^6.0.0", 930 | "@codemirror/commands": "^6.0.0", 931 | "@codemirror/language": "^6.0.0", 932 | "@codemirror/lint": "^6.0.0", 933 | "@codemirror/search": "^6.0.0", 934 | "@codemirror/state": "^6.0.0", 935 | "@codemirror/view": "^6.0.0" 936 | } 937 | }, 938 | "coincident": { 939 | "version": "0.14.3", 940 | "resolved": "https://registry.npmjs.org/coincident/-/coincident-0.14.3.tgz", 941 | "integrity": "sha512-vd5xP+d5vCCcwTTUxQb3LHRi+dhXnuD+Bgjyf1r1H0IPjfXGDs3z2C4RZJifCJmokqf3Ff9BiFealewTBMTgYw==", 942 | "requires": { 943 | "@ungap/structured-clone": "^1.2.0", 944 | "@ungap/with-resolvers": "^0.1.0", 945 | "gc-hook": "^0.2.3", 946 | "ws": "^8.14.2" 947 | } 948 | }, 949 | "crelt": { 950 | "version": "1.0.6", 951 | "resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz", 952 | "integrity": "sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==" 953 | }, 954 | "esbuild": { 955 | "version": "0.19.4", 956 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.4.tgz", 957 | "integrity": "sha512-x7jL0tbRRpv4QUyuDMjONtWFciygUxWaUM1kMX2zWxI0X2YWOt7MSA0g4UdeSiHM8fcYVzpQhKYOycZwxTdZkA==", 958 | "requires": { 959 | "@esbuild/android-arm": "0.19.4", 960 | "@esbuild/android-arm64": "0.19.4", 961 | "@esbuild/android-x64": "0.19.4", 962 | "@esbuild/darwin-arm64": "0.19.4", 963 | "@esbuild/darwin-x64": "0.19.4", 964 | "@esbuild/freebsd-arm64": "0.19.4", 965 | "@esbuild/freebsd-x64": "0.19.4", 966 | "@esbuild/linux-arm": "0.19.4", 967 | "@esbuild/linux-arm64": "0.19.4", 968 | "@esbuild/linux-ia32": "0.19.4", 969 | "@esbuild/linux-loong64": "0.19.4", 970 | "@esbuild/linux-mips64el": "0.19.4", 971 | "@esbuild/linux-ppc64": "0.19.4", 972 | "@esbuild/linux-riscv64": "0.19.4", 973 | "@esbuild/linux-s390x": "0.19.4", 974 | "@esbuild/linux-x64": "0.19.4", 975 | "@esbuild/netbsd-x64": "0.19.4", 976 | "@esbuild/openbsd-x64": "0.19.4", 977 | "@esbuild/sunos-x64": "0.19.4", 978 | "@esbuild/win32-arm64": "0.19.4", 979 | "@esbuild/win32-ia32": "0.19.4", 980 | "@esbuild/win32-x64": "0.19.4" 981 | } 982 | }, 983 | "gc-hook": { 984 | "version": "0.2.3", 985 | "resolved": "https://registry.npmjs.org/gc-hook/-/gc-hook-0.2.3.tgz", 986 | "integrity": "sha512-XfA+XiE7QzJzonfvNjTXmcyGtprD6m85KEH9fngmxghVR7PJ4f3ZKsLI22QNpWJiDO5EIR6iMzz9wSxLBqw6+A==" 987 | }, 988 | "html-escaper": { 989 | "version": "3.0.3", 990 | "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz", 991 | "integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==" 992 | }, 993 | "plain-tag": { 994 | "version": "0.1.3", 995 | "resolved": "https://registry.npmjs.org/plain-tag/-/plain-tag-0.1.3.tgz", 996 | "integrity": "sha512-yyVAOFKTAElc7KdLt2+UKGExNYwYb/Y/WE9i+1ezCQsJE8gbKSjewfpRqK2nQgZ4d4hhAAGgDCOcIZVilqE5UA==" 997 | }, 998 | "polyscript": { 999 | "version": "0.5.6", 1000 | "resolved": "https://registry.npmjs.org/polyscript/-/polyscript-0.5.6.tgz", 1001 | "integrity": "sha512-T1iufSnsq33K5m2vECiVvgDd5zJiSum+eNv3/SUTb38vIxQpDG2W4aVffoIXIgPYe2Bij/aU2xW1P9M2CHUifw==", 1002 | "requires": { 1003 | "@ungap/structured-clone": "^1.2.0", 1004 | "@ungap/with-resolvers": "^0.1.0", 1005 | "basic-devtools": "^0.1.6", 1006 | "codedent": "^0.1.2", 1007 | "coincident": "^0.14.3", 1008 | "html-escaper": "^3.0.3", 1009 | "sticky-module": "^0.1.0" 1010 | } 1011 | }, 1012 | "sticky-module": { 1013 | "version": "0.1.0", 1014 | "resolved": "https://registry.npmjs.org/sticky-module/-/sticky-module-0.1.0.tgz", 1015 | "integrity": "sha512-MYmkk/ihfpzQjOPfxbqScT2JS72H/8ueUtnBxxZiJbHopmJ1Lw62Lq/IimL34czVf1oQoG0Be/TDtJUyNVdEvA==" 1016 | }, 1017 | "style-mod": { 1018 | "version": "4.1.0", 1019 | "resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.1.0.tgz", 1020 | "integrity": "sha512-Ca5ib8HrFn+f+0n4N4ScTIA9iTOQ7MaGS1ylHcoVqW9J7w2w8PzN6g9gKmTYgGEBH8e120+RCmhpje6jC5uGWA==" 1021 | }, 1022 | "to-json-callback": { 1023 | "version": "0.1.1", 1024 | "resolved": "https://registry.npmjs.org/to-json-callback/-/to-json-callback-0.1.1.tgz", 1025 | "integrity": "sha512-BzOeinTT3NjE+FJ2iCvWB8HvyuyBzoH3WlSnJ+AYVC4tlePyZWSYdkQIFOARWiq0t35/XhmI0uQsFiUsRksRqg==" 1026 | }, 1027 | "type-checked-collections": { 1028 | "version": "0.1.7", 1029 | "resolved": "https://registry.npmjs.org/type-checked-collections/-/type-checked-collections-0.1.7.tgz", 1030 | "integrity": "sha512-fLIydlJy7IG9XL4wjRwEcKhxx/ekLXiWiMvcGo01cOMF+TN+5ZqajM1mRNRz2bNNi1bzou2yofhjZEQi7kgl9A==" 1031 | }, 1032 | "w3c-keyname": { 1033 | "version": "2.2.8", 1034 | "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz", 1035 | "integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==" 1036 | }, 1037 | "ws": { 1038 | "version": "8.14.2", 1039 | "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", 1040 | "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", 1041 | "optional": true, 1042 | "requires": {} 1043 | } 1044 | } 1045 | } 1046 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "@codemirror/commands": "^6.3.0", 4 | "@codemirror/lang-python": "^6.1.3", 5 | "@codemirror/language": "^6.9.1", 6 | "@codemirror/state": "^6.2.1", 7 | "@codemirror/view": "^6.21.3", 8 | "@pyscript/core": "^0.3.2", 9 | "basic-devtools": "^0.1.6", 10 | "codemirror": "^6.0.1", 11 | "esbuild": "^0.19.4" 12 | }, 13 | "scripts": { 14 | "build": "node esbuild.mjs" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs>=1.4 2 | beautifulsoup4>=4.1 3 | -------------------------------------------------------------------------------- /roadmap.md: -------------------------------------------------------------------------------- 1 | # Possible Future Features 2 | 3 | [x] Selectively include (exclude?) python blocks from plugin (0.0.2) 4 | 5 | [ ] Ability to style elements 6 | [ ] Load button 7 | [ ] Run button 8 | [ ] Output area 9 | [ ] codemirror color theme 10 | [ ] Responsive dark/light theme w/ mkdocs-material? 11 | 12 | [ ] Add preamble/post-amble Python code to be added visibly when code block loads 13 | 14 | [x] Add pre/post code that runs *invisibly* before/after block runs (Python) (0.1.0) 15 | [ ] Add the ability to re-use pre/cost code on multiple blocks 16 | 17 | [ ] Add way to specify dependencies per-block 18 | 19 | # Infrastructure 20 | 21 | [ ] Move builds to GitHub Actions 22 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup, find_packages 2 | from pathlib import Path 3 | 4 | this_directory = Path(__file__).parent 5 | long_description = (this_directory / "README.md").read_text() 6 | 7 | setup( 8 | name='mkdocs-pyscript', 9 | version='0.1.0', 10 | description='Add PyScript to your mkdocs site', 11 | long_description= long_description, 12 | long_description_content_type='text/markdown', 13 | keywords=['mkdocs', 'pyscript'], 14 | url='https://github.com/jeffersglass/mkdocs-pyscript', 15 | author='Jeff Glass', 16 | author_email='mail@jeff.glass', 17 | license='APACHE', 18 | python_requires='>=3.8', 19 | install_requires=[ 20 | 'mkdocs>=1.4.0', 21 | 'beautifulsoup4>=4.1', 22 | ], 23 | classifiers=[ 24 | 'Development Status :: 4 - Beta', 25 | 'Intended Audience :: Developers', 26 | 'Intended Audience :: Information Technology', 27 | 'License :: OSI Approved :: MIT License', 28 | 'Programming Language :: Python', 29 | 'Programming Language :: Python :: 3 :: Only', 30 | 'Programming Language :: Python :: 3.8', 31 | 'Programming Language :: Python :: 3.9', 32 | 'Programming Language :: Python :: 3.10', 33 | 'Programming Language :: Python :: 3.11', 34 | ], 35 | packages=find_packages(), 36 | entry_points={ 37 | 'mkdocs.plugins': [ 38 | 'mkdocs-pyscript = mkdocs_pyscript.plugin:Plugin' 39 | ] 40 | }, 41 | include_package_data=True, 42 | ) -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffersGlass/mkdocs-pyscript/abc580c30e68cad1d78aaf95c8a0dcc6caf9224a/tests/__init__.py -------------------------------------------------------------------------------- /tests/basic/docs/index.md: -------------------------------------------------------------------------------- 1 | This is some basic content 2 | 3 | # And a header 4 | 5 | ```py 6 | # This is a 'py' block 7 | print("hello_py") 8 | ``` 9 | 10 | ```python 11 | # This is a a 'python block 12 | print("hello_python") 13 | ``` 14 | 15 | ```{.py .pyscript} 16 | print("hello_pyscript") 17 | ``` -------------------------------------------------------------------------------- /tests/basic/mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: basic 2 | plugins: 3 | - mkdocs-pyscript -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | from http.server import HTTPServer as SuperHTTPServer 2 | from http.server import SimpleHTTPRequestHandler 3 | 4 | import threading 5 | from pathlib import Path 6 | import pytest 7 | import os 8 | 9 | import pdb 10 | 11 | from mkdocs.commands.build import build 12 | from mkdocs.config.defaults import MkDocsConfig 13 | 14 | EMIT_FILES = True 15 | 16 | # Based on https://github.com/mkdocs/mkdocs/blob/b5250bf9e2a58fae1dc7742d06318aae051a6303/mkdocs/tests/base.py#L26 17 | def load_config(site_root: str | None = None, **cfg) -> MkDocsConfig: 18 | """Helper to build a simple config for testing.""" 19 | path_base = Path(os.path.join(os.path.abspath(os.path.dirname(__file__)))) 20 | print(f"{path_base=}") 21 | config_file = path_base / site_root / 'mkdocs.yml' 22 | conf = MkDocsConfig(config_file_path=str(config_file)) 23 | 24 | with open(config_file) as f: 25 | conf.load_file(f) 26 | 27 | conf.load_dict(cfg) 28 | 29 | 30 | if 'site_name' not in conf or not conf['site_name']: 31 | conf['site_name'] = 'Example' 32 | if 'docs_dir' not in conf or not conf['docs_dir']: 33 | # Point to an actual dir to avoid a 'does not exist' error on validation. 34 | conf['docs_dir'] = path_base / site_root / 'docs' 35 | 36 | print(conf) 37 | 38 | errors_warnings = conf.validate() 39 | assert errors_warnings == ([], []), errors_warnings 40 | return conf 41 | 42 | 43 | ## ----- Servers and Support ------ 44 | 45 | def pytest_configure(config): 46 | if config.option.dev: 47 | config.option.headed = True 48 | 49 | def pytest_addoption(parser): 50 | parser.addoption( 51 | "--dev", 52 | action="store_true", 53 | help="Automatically open a devtools panel. Implies --headed and --no-fake-server", 54 | ) 55 | 56 | @pytest.fixture(scope="session") 57 | def browser_type_launch_args(request): 58 | """ 59 | Override the browser_type_launch_args defined by pytest-playwright to 60 | support --devtools. 61 | 62 | NOTE: this has been tested with pytest-playwright==0.3.0. It might break 63 | with newer versions of it. 64 | """ 65 | # this calls the "original" fixture defined by pytest_playwright.py 66 | launch_options = request.getfixturevalue("browser_type_launch_args") 67 | if request.config.option.dev: 68 | launch_options["devtools"] = True 69 | return launch_options 70 | 71 | class DevServer(SuperHTTPServer): 72 | """ 73 | Class for wrapper to run SimpleHTTPServer on Thread. 74 | Ctrl +Only Thread remains dead when terminated with C. 75 | Keyboard Interrupt passes. 76 | """ 77 | 78 | def __init__(self, base_url, *args, **kwargs): 79 | self.base_url = base_url 80 | super().__init__(*args, **kwargs) 81 | 82 | def run(self): 83 | try: 84 | self.serve_forever() 85 | except KeyboardInterrupt: 86 | pass 87 | finally: 88 | self.server_close() 89 | 90 | @pytest.fixture(scope="session") 91 | def dev_server(request): 92 | class MyHTTPRequestHandler(SimpleHTTPRequestHandler): 93 | enable_cors_headers = True 94 | 95 | @classmethod 96 | def my_headers(cls): 97 | if cls.enable_cors_headers: 98 | return { 99 | "Cross-Origin-Embedder-Policy": "require-corp", 100 | "Cross-Origin-Opener-Policy": "same-origin", 101 | } 102 | return {} 103 | 104 | def end_headers(self): 105 | self.send_my_headers() 106 | SimpleHTTPRequestHandler.end_headers(self) 107 | 108 | def send_my_headers(self): 109 | for k, v in self.my_headers().items(): 110 | self.send_header(k, v) 111 | 112 | def log_message(self, fmt, *args): 113 | print("http_server", fmt % args) 114 | #print("http_server", fmt % args, color="blue") 115 | 116 | host, port = "localhost", 8080 117 | base_url = f"http://{host}:{port}" 118 | 119 | # serve_Run forever under thread 120 | server = DevServer(base_url, (host, port), MyHTTPRequestHandler) 121 | 122 | thread = threading.Thread(None, server.run) 123 | thread.start() 124 | 125 | yield server # Transition to test here 126 | 127 | # End thread 128 | server.shutdown() 129 | thread.join() 130 | 131 | @pytest.fixture() 132 | def hold_at_end(request): 133 | if request.config.option.headed: 134 | pdb.Pdb.intro = ( 135 | "\n" 136 | "This (Pdb) was started automatically because you passed --headed:\n" 137 | "the execution of the test pauses here to give you the time to inspect\n" 138 | "the browser. When you are done, type one of the following commands:\n" 139 | " (Pdb) continue\n" 140 | " (Pdb) cont\n" 141 | " (Pdb) c\n" 142 | ) 143 | pdb.set_trace() 144 | yield -------------------------------------------------------------------------------- /tests/prepost/docs/index.md: -------------------------------------------------------------------------------- 1 | This is some basic content 2 | 3 | # And a header 4 | 5 | ```{.py .py-pre} 6 | print("This is some pre-code") 7 | ``` 8 | 9 | ```py 10 | print("This is the main tag") 11 | ``` 12 | 13 | ```{.py .py-post} 14 | print("This is some post code") 15 | ``` -------------------------------------------------------------------------------- /tests/prepost/mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: prepost 2 | plugins: 3 | - mkdocs-pyscript -------------------------------------------------------------------------------- /tests/support.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | from mkdocs.commands.build import build 4 | from mkdocs.config.defaults import MkDocsConfig 5 | 6 | from http.server import HTTPServer as SuperHTTPServer 7 | from http.server import SimpleHTTPRequestHandler 8 | 9 | from .conftest import hold_at_end 10 | 11 | import threading 12 | from pathlib import Path 13 | import pytest 14 | import os 15 | import pdb 16 | 17 | @pytest.mark.usefixtures("hold_at_end") 18 | class MkdocsPyscriptTest: 19 | EMIT_FILES = True #Build the test show to /_debug_site or a temp file 20 | 21 | def build_site(self, dir: str | Path, cfg: dict=None,) -> Path: 22 | """Build a simple site for testing 23 | 24 | Args: 25 | dir (str | Path, optional): A directory containing the site content. Must contain a 26 | mkdocs.yml and a /docs folder. 27 | """ 28 | if cfg is None: cfg = {} 29 | 30 | config = self._load_config(str(dir), **cfg) 31 | path = Path(f"_debug_site_{dir.replace('/', '_')}") if self.EMIT_FILES else pytest.TempPathFactory.mktemp() 32 | config.site_dir = path 33 | build(config) 34 | self._index_file = path / "index.html" 35 | return path 36 | 37 | 38 | # Based on https://github.com/mkdocs/mkdocs/blob/b5250bf9e2a58fae1dc7742d06318aae051a6303/mkdocs/tests/base.py#L26 39 | def _load_config(self, site_root: str | None = None, **cfg) -> MkDocsConfig: 40 | """Helper to build a simple config for testing.""" 41 | path_base = Path(os.path.join(os.path.abspath(os.path.dirname(__file__)))) 42 | print(f"{path_base=}") 43 | config_file = path_base / site_root / 'mkdocs.yml' 44 | conf = MkDocsConfig(config_file_path=str(config_file)) 45 | 46 | with open(config_file) as f: 47 | conf.load_file(f) 48 | 49 | conf.load_dict(cfg) 50 | 51 | if 'site_name' not in conf or not conf['site_name']: 52 | conf['site_name'] = 'Example' 53 | if 'docs_dir' not in conf or not conf['docs_dir']: 54 | # Point to an actual dir to avoid a 'does not exist' error on validation. 55 | conf['docs_dir'] = path_base / site_root / 'docs' 56 | 57 | print(conf) 58 | 59 | errors_warnings = conf.validate() 60 | assert errors_warnings == ([], []), errors_warnings 61 | return conf -------------------------------------------------------------------------------- /tests/test_dynamic.py: -------------------------------------------------------------------------------- 1 | from playwright.sync_api import Page, expect 2 | 3 | from pathlib import Path 4 | 5 | from .conftest import DevServer 6 | 7 | from .support import MkdocsPyscriptTest 8 | 9 | class TestDynamic(MkdocsPyscriptTest): 10 | def test_has_title(self, page: Page, dev_server: DevServer): 11 | # This mostly checks that the page build and config injection works 12 | filepath = self.build_site("basic") 13 | with open(self._index_file, "r") as f: 14 | page.goto(str(Path(dev_server.base_url) / filepath / "index.html")) 15 | 16 | expect(page).to_have_title("basic") 17 | 18 | #@pytest.mark.parametrize('dir', [('./basic')]) 19 | def test_codemirror_and_run(self, page: Page, dev_server): 20 | filepath = self.build_site("basic") 21 | with open(self._index_file, "r") as f: 22 | page.goto(str(Path(dev_server.base_url) / filepath / "index.html")) 23 | 24 | wrappers = page.query_selector_all('.py-wrapper') 25 | assert len(wrappers) == 3 26 | 27 | # Check that all buttons load 28 | button_selector = '[data-pyscript="button"]' 29 | page.wait_for_selector(button_selector) 30 | buttons = page.query_selector_all(button_selector) 31 | assert len(buttons) == 3 32 | # Check that button loads the code in a codemirror 33 | buttons[0].click() 34 | codemirror = page.locator("div .cm-editor") 35 | assert """# This is a 'py' blockprint("hello_py")""" in codemirror.text_content() 36 | 37 | # Check that py-repl actually runs and emits output 38 | page.locator(".py-repl-run-button").click() 39 | page.wait_for_selector(".py-repl-output") 40 | assert page.locator(".py-repl-output").text_content() == "hello_py" 41 | 42 | def test_pre_post(self, page: Page, dev_server): 43 | filepath = self.build_site("prepost") 44 | with open(self._index_file, "r") as f: 45 | page.goto(str(Path(dev_server.base_url) / filepath / "index.html")) 46 | 47 | wrappers = page.query_selector_all('.py-wrapper') 48 | assert len(wrappers) == 1 49 | 50 | button_selector = '[data-pyscript="button"]' 51 | page.wait_for_selector(button_selector) 52 | buttons = page.query_selector_all(button_selector) 53 | assert len(buttons) == 1 54 | 55 | buttons[0].click() 56 | codemirror = page.locator("div .cm-editor") 57 | assert """print("This is the main tag")""" in codemirror.text_content() 58 | 59 | # Check that py-repl actually runs and emits output 60 | page.locator(".py-repl-run-button").click() 61 | page.wait_for_selector(".py-repl-output") 62 | assert page.locator(".py-repl-output").text_content() == "This is some pre-codeThis is the main tagThis is some post code" 63 | 64 | 65 | -------------------------------------------------------------------------------- /tests/test_static.py: -------------------------------------------------------------------------------- 1 | import pytest 2 | import bs4 3 | 4 | from typing import Iterable 5 | 6 | from .support import MkdocsPyscriptTest 7 | 8 | class TestStatic(MkdocsPyscriptTest): 9 | def test_script_tags(self): 10 | self.build_site('basic') 11 | with open(self._index_file, "r") as f: 12 | soup = bs4.BeautifulSoup(f, features="html.parser") 13 | 14 | head = soup.find("head") 15 | scripts: Iterable[bs4.element.Tag] = soup.find_all("script") 16 | 17 | # check that importmap exists 18 | assert any(('type' in script.attrs and script['type'] == "importmap") for script in scripts) 19 | 20 | # check that additional script tags exist 21 | assert any(('src' in script.attrs and "makeblocks.js" in script['src']) for script in scripts) 22 | assert any(('src' in script.attrs and "mini-coi.js" in script['src']) for script in scripts) 23 | 24 | def test_code_blocks(self): 25 | self.build_site("basic") 26 | with open(self._index_file, "r") as f: 27 | soup = bs4.BeautifulSoup(f, features="html.parser") 28 | 29 | body = soup.find('body') 30 | wrappers: Iterable[bs4.element.Tag] = body.find_all(class_ = 'py-wrapper') 31 | 32 | # Make sure all three fences are convered to codeblocks 33 | assert len(wrappers) == 3 34 | for wrapper in wrappers: 35 | codeblock = wrapper.code 36 | 37 | #TODO Check contents of codeblocks 38 | 39 | def test_pre_post(self): 40 | self.build_site("prepost") 41 | with open(self._index_file, "r") as f: 42 | soup = bs4.BeautifulSoup(f, features="html.parser") 43 | 44 | body = soup.find('body') 45 | wrappers: Iterable[bs4.element.Tag] = body.find_all(class_ = 'py-wrapper') 46 | 47 | # Make sure all one one codeblock is emitted are convered to codeblocks 48 | assert len(wrappers) == 1 49 | for wrapper in wrappers: 50 | codeblock = wrapper.code 51 | 52 | pre_tags = soup.find_all('script', attrs={"type": "py-pre"}) 53 | assert len(pre_tags) == 1 54 | assert pre_tags[0].text.strip() == 'print("This is some pre-code")' 55 | 56 | post_tags = soup.find_all('script', attrs={"type": "py-post"}) 57 | assert len(post_tags) == 1 58 | assert post_tags[0].text.strip() == 'print("This is some post code")' 59 | 60 | #TODO check contents of code block, pre and post tags 61 | 62 | 63 | 64 | 65 | --------------------------------------------------------------------------------