memwal-checkpoint 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- memwal_checkpoint-0.1.1/.env.example +37 -0
- memwal_checkpoint-0.1.1/.gitattributes +9 -0
- memwal_checkpoint-0.1.1/.github/workflows/ci.yml +107 -0
- memwal_checkpoint-0.1.1/.gitignore +52 -0
- memwal_checkpoint-0.1.1/.vercelignore +14 -0
- memwal_checkpoint-0.1.1/LICENSE +21 -0
- memwal_checkpoint-0.1.1/PKG-INFO +355 -0
- memwal_checkpoint-0.1.1/README.md +326 -0
- memwal_checkpoint-0.1.1/agents/demo.py +1242 -0
- memwal_checkpoint-0.1.1/agents.md +51 -0
- memwal_checkpoint-0.1.1/api/index.py +10 -0
- memwal_checkpoint-0.1.1/contracts/Move.toml +9 -0
- memwal_checkpoint-0.1.1/contracts/sources/registry.move +262 -0
- memwal_checkpoint-0.1.1/memwal/__init__.py +9 -0
- memwal_checkpoint-0.1.1/memwal/checkpoint.py +1178 -0
- memwal_checkpoint-0.1.1/memwal/config.py +79 -0
- memwal_checkpoint-0.1.1/memwal/sui.py +527 -0
- memwal_checkpoint-0.1.1/memwal/walrus.py +153 -0
- memwal_checkpoint-0.1.1/playground/__init__.py +1 -0
- memwal_checkpoint-0.1.1/playground/server.py +849 -0
- memwal_checkpoint-0.1.1/playground/static/css/base.css +623 -0
- memwal_checkpoint-0.1.1/playground/static/css/dashboard.css +992 -0
- memwal_checkpoint-0.1.1/playground/static/css/landing.css +595 -0
- memwal_checkpoint-0.1.1/playground/static/css/tokens.css +134 -0
- memwal_checkpoint-0.1.1/playground/static/index.html +553 -0
- memwal_checkpoint-0.1.1/playground/static/js/api-tester.js +257 -0
- memwal_checkpoint-0.1.1/playground/static/js/api.js +319 -0
- memwal_checkpoint-0.1.1/playground/static/js/dashboard.js +248 -0
- memwal_checkpoint-0.1.1/playground/static/js/file-explorer.js +129 -0
- memwal_checkpoint-0.1.1/playground/static/js/landing.js +153 -0
- memwal_checkpoint-0.1.1/playground/static/js/memory-explorer.js +131 -0
- memwal_checkpoint-0.1.1/playground/static/js/templates.js +158 -0
- memwal_checkpoint-0.1.1/playground/static/playground.html +595 -0
- memwal_checkpoint-0.1.1/playground/svg/aiagent.svg +31 -0
- memwal_checkpoint-0.1.1/playground/svg/books-supplies-svgrepo-com.svg +2 -0
- memwal_checkpoint-0.1.1/playground/svg/brain-illustration-12-svgrepo-com.svg +107 -0
- memwal_checkpoint-0.1.1/playground/svg/chat-round-line-svgrepo-com.svg +6 -0
- memwal_checkpoint-0.1.1/playground/svg/link-svgrepo-com.svg +5 -0
- memwal_checkpoint-0.1.1/playground/svg/research-left-svgrepo-com.svg +2 -0
- memwal_checkpoint-0.1.1/playground/svg/robot-svgrepo-com.svg +8 -0
- memwal_checkpoint-0.1.1/pyproject.toml +45 -0
- memwal_checkpoint-0.1.1/requirements.txt +12 -0
- memwal_checkpoint-0.1.1/runtime.txt +1 -0
- memwal_checkpoint-0.1.1/skills.md +47 -0
- memwal_checkpoint-0.1.1/tests/__init__.py +1 -0
- memwal_checkpoint-0.1.1/tests/conftest.py +9 -0
- memwal_checkpoint-0.1.1/tests/test_memwal.py +164 -0
- memwal_checkpoint-0.1.1/vercel.json +16 -0
- memwal_checkpoint-0.1.1/verify-env/.gitignore +2 -0
- memwal_checkpoint-0.1.1/verify-env/bin/Activate.ps1 +248 -0
- memwal_checkpoint-0.1.1/verify-env/bin/activate +76 -0
- memwal_checkpoint-0.1.1/verify-env/bin/activate.csh +27 -0
- memwal_checkpoint-0.1.1/verify-env/bin/activate.fish +69 -0
- memwal_checkpoint-0.1.1/verify-env/bin/httpx +7 -0
- memwal_checkpoint-0.1.1/verify-env/bin/idna +7 -0
- memwal_checkpoint-0.1.1/verify-env/bin/pip +7 -0
- memwal_checkpoint-0.1.1/verify-env/bin/pip3 +7 -0
- memwal_checkpoint-0.1.1/verify-env/bin/pip3.14 +7 -0
- memwal_checkpoint-0.1.1/verify-env/bin/python +1 -0
- memwal_checkpoint-0.1.1/verify-env/bin/python3 +1 -0
- memwal_checkpoint-0.1.1/verify-env/bin/python3.14 +1 -0
- memwal_checkpoint-0.1.1/verify-env/bin//360/235/234/213thon +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/_cffi_backend.cpython-314-darwin.so +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/__init__.py +115 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_backends/__init__.py +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_backends/_asyncio.py +3073 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_backends/_trio.py +1456 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/__init__.py +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_asyncio_selector_thread.py +167 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_contextmanagers.py +200 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_eventloop.py +240 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_exceptions.py +177 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_fileio.py +960 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_resources.py +18 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_signals.py +29 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_sockets.py +1011 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_streams.py +52 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_subprocesses.py +196 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_synchronization.py +772 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_tasks.py +415 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_tempfile.py +613 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_testing.py +82 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/_core/_typedattr.py +81 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/abc/__init__.py +58 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/abc/_eventloop.py +410 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/abc/_resources.py +33 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/abc/_sockets.py +399 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/abc/_streams.py +233 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/abc/_subprocesses.py +79 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/abc/_tasks.py +209 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/abc/_testing.py +73 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/from_thread.py +582 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/functools.py +400 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/itertools.py +626 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/lowlevel.py +226 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/pytest_plugin.py +375 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/streams/__init__.py +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/streams/buffered.py +198 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/streams/file.py +154 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/streams/memory.py +325 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/streams/stapled.py +147 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/streams/text.py +176 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/streams/tls.py +421 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/to_interpreter.py +246 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/to_process.py +268 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio/to_thread.py +78 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio-4.14.0.dist-info/INSTALLER +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio-4.14.0.dist-info/METADATA +107 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio-4.14.0.dist-info/RECORD +94 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio-4.14.0.dist-info/WHEEL +5 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio-4.14.0.dist-info/entry_points.txt +2 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio-4.14.0.dist-info/licenses/LICENSE +20 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/anyio-4.14.0.dist-info/top_level.txt +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/certifi/__init__.py +4 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/certifi/__main__.py +12 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/certifi/cacert.pem +3863 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/certifi/core.py +83 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/certifi/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/certifi-2026.6.17.dist-info/INSTALLER +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/certifi-2026.6.17.dist-info/METADATA +78 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/certifi-2026.6.17.dist-info/RECORD +14 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/certifi-2026.6.17.dist-info/WHEEL +5 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/certifi-2026.6.17.dist-info/licenses/LICENSE +20 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/certifi-2026.6.17.dist-info/top_level.txt +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/__init__.py +14 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/_cffi_errors.h +149 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/_cffi_include.h +389 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/_embedding.h +550 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/_imp_emulation.py +83 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/_shimmed_dist_utils.py +45 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/api.py +967 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/backend_ctypes.py +1121 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/cffi_opcode.py +187 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/commontypes.py +82 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/cparser.py +1015 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/error.py +31 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/ffiplatform.py +113 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/lock.py +30 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/model.py +618 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/parse_c_type.h +181 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/pkgconfig.py +121 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/recompiler.py +1598 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/setuptools_ext.py +229 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/vengine_cpy.py +1087 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/vengine_gen.py +679 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi/verifier.py +306 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi-2.0.0.dist-info/INSTALLER +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi-2.0.0.dist-info/METADATA +68 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi-2.0.0.dist-info/RECORD +49 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi-2.0.0.dist-info/WHEEL +6 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi-2.0.0.dist-info/entry_points.txt +2 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi-2.0.0.dist-info/licenses/AUTHORS +8 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi-2.0.0.dist-info/licenses/LICENSE +23 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/cffi-2.0.0.dist-info/top_level.txt +2 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11/__init__.py +62 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11/_abnf.py +132 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11/_connection.py +659 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11/_events.py +369 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11/_headers.py +282 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11/_readers.py +250 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11/_receivebuffer.py +153 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11/_state.py +365 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11/_util.py +135 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11/_version.py +16 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11/_writers.py +145 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11/py.typed +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11-0.16.0.dist-info/INSTALLER +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11-0.16.0.dist-info/METADATA +202 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11-0.16.0.dist-info/RECORD +29 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11-0.16.0.dist-info/WHEEL +5 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11-0.16.0.dist-info/licenses/LICENSE.txt +22 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/h11-0.16.0.dist-info/top_level.txt +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/__init__.py +141 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_api.py +94 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_async/__init__.py +39 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_async/connection.py +222 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_async/connection_pool.py +420 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_async/http11.py +379 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_async/http2.py +592 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_async/http_proxy.py +367 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_async/interfaces.py +137 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_async/socks_proxy.py +341 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_backends/__init__.py +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_backends/anyio.py +146 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_backends/auto.py +52 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_backends/base.py +101 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_backends/mock.py +143 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_backends/sync.py +241 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_backends/trio.py +159 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_exceptions.py +81 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_models.py +516 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_ssl.py +9 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_sync/__init__.py +39 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_sync/connection.py +222 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_sync/connection_pool.py +420 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_sync/http11.py +379 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_sync/http2.py +592 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_sync/http_proxy.py +367 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_sync/interfaces.py +137 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_sync/socks_proxy.py +341 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_synchronization.py +318 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_trace.py +107 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/_utils.py +37 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore-1.0.9.dist-info/INSTALLER +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore-1.0.9.dist-info/METADATA +625 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore-1.0.9.dist-info/RECORD +68 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore-1.0.9.dist-info/WHEEL +4 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpcore-1.0.9.dist-info/licenses/LICENSE.md +27 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/__init__.py +105 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/__version__.py +3 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_api.py +438 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_auth.py +348 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_client.py +2019 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_config.py +248 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_content.py +240 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_decoders.py +393 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_exceptions.py +379 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_main.py +506 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_models.py +1277 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_multipart.py +300 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_status_codes.py +162 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_transports/__init__.py +15 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_transports/asgi.py +187 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_transports/base.py +86 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_transports/default.py +406 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_transports/mock.py +43 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_transports/wsgi.py +149 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_types.py +114 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_urlparse.py +527 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_urls.py +641 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/_utils.py +242 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx-0.28.1.dist-info/INSTALLER +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx-0.28.1.dist-info/METADATA +203 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx-0.28.1.dist-info/RECORD +54 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx-0.28.1.dist-info/WHEEL +4 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx-0.28.1.dist-info/entry_points.txt +2 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/httpx-0.28.1.dist-info/licenses/LICENSE.md +12 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna/__init__.py +45 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna/__main__.py +6 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna/cli.py +128 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna/codec.py +159 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna/compat.py +41 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna/core.py +648 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna/idnadata.py +1897 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna/intranges.py +55 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna/package_data.py +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna/uts46data.py +16896 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna-3.18.dist-info/INSTALLER +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna-3.18.dist-info/METADATA +155 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna-3.18.dist-info/RECORD +28 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna-3.18.dist-info/WHEEL +4 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna-3.18.dist-info/entry_points.txt +3 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/idna-3.18.dist-info/licenses/LICENSE.md +31 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/memwal/__init__.py +113 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/memwal/client.py +1158 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/memwal/middleware.py +484 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/memwal/types.py +374 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/memwal/utils.py +290 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/memwal-0.1.0.dist-info/INSTALLER +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/memwal-0.1.0.dist-info/METADATA +237 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/memwal-0.1.0.dist-info/RECORD +15 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/memwal-0.1.0.dist-info/REQUESTED +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/memwal-0.1.0.dist-info/WHEEL +4 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/__init__.py +25 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/_sodium.abi3.so +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/__init__.py +508 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/crypto_aead.py +1069 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/crypto_box.py +475 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/crypto_core.py +449 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/crypto_generichash.py +281 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/crypto_hash.py +63 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/crypto_kx.py +200 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/crypto_pwhash.py +599 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/crypto_scalarmult.py +240 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/crypto_secretbox.py +159 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/crypto_secretstream.py +358 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/crypto_shorthash.py +81 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/crypto_sign.py +327 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/randombytes.py +51 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/sodium_core.py +33 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/bindings/utils.py +141 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/encoding.py +105 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/exceptions.py +88 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/hash.py +181 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/hashlib.py +143 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/public.py +421 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/pwhash/__init__.py +75 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/pwhash/_argon2.py +49 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/pwhash/argon2i.py +132 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/pwhash/argon2id.py +135 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/pwhash/scrypt.py +211 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/secret.py +305 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/signing.py +250 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/nacl/utils.py +88 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/__init__.py +13 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/__main__.py +24 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/__pip-runner__.py +50 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/__init__.py +18 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/build_env.py +417 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/cache.py +291 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/cli/__init__.py +3 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/cli/autocompletion.py +184 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/cli/base_command.py +244 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/cli/cmdoptions.py +1110 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/cli/command_context.py +28 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/cli/index_command.py +175 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/cli/main.py +80 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/cli/main_parser.py +134 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/cli/parser.py +298 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/cli/progress_bars.py +151 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/cli/req_command.py +371 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/cli/spinners.py +235 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/cli/status_codes.py +6 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/__init__.py +139 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/cache.py +231 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/check.py +66 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/completion.py +135 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/configuration.py +288 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/debug.py +203 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/download.py +142 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/freeze.py +107 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/hash.py +58 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/help.py +40 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/index.py +159 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/inspect.py +92 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/install.py +803 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/list.py +400 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/lock.py +167 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/search.py +178 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/show.py +231 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/uninstall.py +113 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/commands/wheel.py +176 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/configuration.py +396 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/distributions/__init__.py +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/distributions/base.py +55 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/distributions/installed.py +33 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/distributions/sdist.py +164 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/distributions/wheel.py +44 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/exceptions.py +898 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/index/__init__.py +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/index/collector.py +489 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/index/package_finder.py +1059 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/index/sources.py +287 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/locations/__init__.py +441 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/locations/_distutils.py +173 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/locations/_sysconfig.py +215 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/locations/base.py +82 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/main.py +12 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/metadata/__init__.py +169 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/metadata/_json.py +87 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/metadata/base.py +685 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/metadata/importlib/_dists.py +229 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/models/__init__.py +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/models/candidate.py +25 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/models/direct_url.py +227 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/models/format_control.py +78 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/models/index.py +28 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/models/installation_report.py +57 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/models/link.py +613 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/models/pylock.py +188 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/models/scheme.py +25 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/models/search_scope.py +126 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/models/selection_prefs.py +53 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/models/target_python.py +122 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/models/wheel.py +80 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/network/__init__.py +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/network/auth.py +564 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/network/cache.py +128 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/network/download.py +342 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/network/session.py +528 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/network/utils.py +98 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/network/xmlrpc.py +61 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/operations/__init__.py +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/operations/check.py +175 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/operations/freeze.py +259 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/operations/install/__init__.py +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/operations/install/wheel.py +746 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/operations/prepare.py +748 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/pyproject.py +123 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/req/__init__.py +103 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/req/constructors.py +566 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/req/req_dependency_group.py +75 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/req/req_file.py +619 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/req/req_install.py +828 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/req/req_set.py +81 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/req/req_uninstall.py +639 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/resolution/__init__.py +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/resolution/base.py +20 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/base.py +142 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/candidates.py +591 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/factory.py +845 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/provider.py +285 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/requirements.py +247 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/self_outdated_check.py +262 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/__init__.py +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/_log.py +38 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/appdirs.py +52 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/compat.py +85 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/datetime.py +10 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/deprecation.py +126 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/egg_link.py +81 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/entrypoints.py +88 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/filesystem.py +164 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/filetypes.py +24 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/glibc.py +102 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/hashes.py +150 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/logging.py +364 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/misc.py +765 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/packaging.py +44 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/retry.py +45 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/subprocess.py +248 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/temp_dir.py +294 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/unpacking.py +362 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/urls.py +55 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/virtualenv.py +105 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/utils/wheel.py +132 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/vcs/__init__.py +15 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/vcs/bazaar.py +130 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/vcs/git.py +571 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/vcs/mercurial.py +186 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/vcs/subversion.py +335 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/vcs/versioncontrol.py +693 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_internal/wheel_builder.py +261 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/README.rst +180 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/__init__.py +117 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/cachecontrol/__init__.py +29 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/cachecontrol/adapter.py +168 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/cachecontrol/filewrapper.py +119 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/certifi/LICENSE +20 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/certifi/__init__.py +4 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/certifi/cacert.pem +4800 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/certifi/core.py +83 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/certifi/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/dependency_groups/__init__.py +13 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/dependency_groups/__main__.py +65 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/dependency_groups/_implementation.py +209 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/dependency_groups/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distlib/__init__.py +33 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distlib/compat.py +1137 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distlib/resources.py +358 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distlib/scripts.py +447 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distlib/util.py +1984 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distro/LICENSE +202 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distro/__init__.py +54 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distro/__main__.py +4 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distro/distro.py +1403 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/distro/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/idna/__init__.py +45 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/idna/codec.py +122 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/idna/compat.py +15 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/idna/core.py +437 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/idna/idnadata.py +4243 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/idna/intranges.py +57 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/idna/package_data.py +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/idna/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/idna/uts46data.py +8681 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/msgpack/COPYING +14 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/msgpack/ext.py +170 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/LICENSE +3 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/__init__.py +15 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/_elffile.py +109 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/_parser.py +353 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/_structures.py +61 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/_tokenizer.py +195 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/licenses/__init__.py +145 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/licenses/_spdx.py +759 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/markers.py +362 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/metadata.py +862 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/requirements.py +91 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/specifiers.py +1019 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/tags.py +656 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/utils.py +163 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/packaging/version.py +582 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/platformdirs/android.py +249 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/platformdirs/api.py +299 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/platformdirs/version.py +34 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/platformdirs/windows.py +272 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/LICENSE +25 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/__init__.py +82 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/console.py +70 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/filter.py +70 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/formatter.py +129 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/lexer.py +963 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/plugin.py +72 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/style.py +203 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/token.py +214 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pygments/util.py +324 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/LICENSE +175 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/__init__.py +179 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/__version__.py +14 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/adapters.py +696 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/api.py +157 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/auth.py +314 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/certs.py +17 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/compat.py +90 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/cookies.py +561 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/exceptions.py +151 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/help.py +127 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/hooks.py +33 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/models.py +1039 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/packages.py +25 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/sessions.py +831 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/status_codes.py +128 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/structures.py +99 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/requests/utils.py +1086 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/LICENSE +19 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/__init__.py +177 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/__main__.py +245 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_export_format.py +76 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_extension.py +10 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_fileno.py +24 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_inspect.py +268 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_loop.py +43 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_null_file.py +69 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_pick.py +17 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_ratio.py +153 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_spinners.py +482 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_stack.py +16 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_timer.py +19 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_windows.py +71 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/_wrap.py +93 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/abc.py +33 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/align.py +306 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/ansi.py +241 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/bar.py +93 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/box.py +474 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/cells.py +174 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/color.py +621 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/columns.py +187 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/console.py +2680 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/constrain.py +37 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/containers.py +167 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/control.py +219 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/default_styles.py +193 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/diagnose.py +39 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/emoji.py +91 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/errors.py +34 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/filesize.py +88 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/highlighter.py +232 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/json.py +139 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/jupyter.py +101 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/layout.py +442 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/live.py +400 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/live_render.py +106 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/logging.py +297 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/markup.py +251 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/measure.py +151 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/padding.py +141 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/pager.py +34 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/palette.py +100 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/panel.py +317 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/pretty.py +1016 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/progress.py +1715 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/prompt.py +400 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/protocol.py +42 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/region.py +10 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/repr.py +149 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/rule.py +130 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/scope.py +86 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/screen.py +54 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/segment.py +752 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/spinner.py +132 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/status.py +131 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/style.py +792 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/styled.py +42 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/syntax.py +985 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/table.py +1006 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/text.py +1361 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/theme.py +115 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/themes.py +5 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/traceback.py +899 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/rich/tree.py +257 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/tomli/LICENSE +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/tomli/__init__.py +8 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/tomli/_parser.py +777 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/tomli/_re.py +115 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/tomli/_types.py +10 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/tomli/py.typed +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/truststore/LICENSE +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/truststore/__init__.py +36 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/truststore/_api.py +341 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/truststore/_macos.py +571 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/truststore/_windows.py +567 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/truststore/py.typed +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/connection.py +572 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/request.py +191 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/response.py +879 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/_vendor/vendor.txt +19 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip/py.typed +4 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/INSTALLER +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/METADATA +111 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/RECORD +872 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/REQUESTED +0 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/WHEEL +4 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/entry_points.txt +4 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/AUTHORS.txt +842 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/LICENSE.txt +20 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pip-25.3.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pycparser/__init__.py +99 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pycparser/_ast_gen.py +355 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pycparser/_c_ast.cfg +195 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pycparser/ast_transforms.py +174 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pycparser/c_ast.py +1341 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pycparser/c_generator.py +573 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pycparser/c_lexer.py +706 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pycparser/c_parser.py +2376 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pycparser-3.0.dist-info/INSTALLER +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pycparser-3.0.dist-info/METADATA +244 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pycparser-3.0.dist-info/RECORD +21 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pycparser-3.0.dist-info/WHEEL +5 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pycparser-3.0.dist-info/licenses/LICENSE +27 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pycparser-3.0.dist-info/top_level.txt +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pynacl-1.6.2.dist-info/INSTALLER +1 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pynacl-1.6.2.dist-info/METADATA +275 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pynacl-1.6.2.dist-info/RECORD +69 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pynacl-1.6.2.dist-info/WHEEL +5 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pynacl-1.6.2.dist-info/licenses/LICENSE +174 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pynacl-1.6.2.dist-info/licenses/licenses/LICENSE.libsodium.txt +18 -0
- memwal_checkpoint-0.1.1/verify-env/lib/python3.14/site-packages/pynacl-1.6.2.dist-info/top_level.txt +2 -0
- memwal_checkpoint-0.1.1/verify-env/pyvenv.cfg +5 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Your Sui wallet private key (base64 or hex-encoded Ed25519 key).
|
|
2
|
+
SUI_PRIVATE_KEY=your_base64_or_hex_private_key_here
|
|
3
|
+
|
|
4
|
+
# Sui Move package ID for the MemWal registry contract.
|
|
5
|
+
# Set this after deploying the contract.
|
|
6
|
+
REGISTRY_PACKAGE_ID=0x0000000000000000000000000000000000000000000000000000000000000000
|
|
7
|
+
|
|
8
|
+
# Shared object ID of the deployed CheckpointRegistry.
|
|
9
|
+
# Set this after deploying the contract.
|
|
10
|
+
REGISTRY_OBJECT_ID=0x0000000000000000000000000000000000000000000000000000000000000000
|
|
11
|
+
|
|
12
|
+
# Optional (defaults target Sui / Walrus testnet)
|
|
13
|
+
|
|
14
|
+
# Sui full-node JSON-RPC endpoint.
|
|
15
|
+
# SUI_RPC_URL=https://fullnode.testnet.sui.io:443
|
|
16
|
+
|
|
17
|
+
# Walrus publisher (blob store) endpoint.
|
|
18
|
+
# WALRUS_PUBLISHER=https://publisher.walrus-testnet.walrus.space
|
|
19
|
+
|
|
20
|
+
# Walrus aggregator (blob read) endpoint.
|
|
21
|
+
# WALRUS_AGGREGATOR=https://aggregator.walrus-testnet.walrus.space
|
|
22
|
+
|
|
23
|
+
# Number of Walrus storage epochs to request when storing a blob.
|
|
24
|
+
# STORAGE_EPOCHS=5
|
|
25
|
+
|
|
26
|
+
# Set to 1 for verbose Sui RPC debug output.
|
|
27
|
+
MEMWAL_DEBUG=0
|
|
28
|
+
|
|
29
|
+
# Checkpoint storage strategy: snapshot or delta.
|
|
30
|
+
# CHECKPOINT_STRATEGY=snapshot
|
|
31
|
+
|
|
32
|
+
# Snapshot frequency for snapshot mode.
|
|
33
|
+
# SNAPSHOT_EVERY_N=5
|
|
34
|
+
|
|
35
|
+
# Optional LLM Provider
|
|
36
|
+
|
|
37
|
+
# OPENAI_API_KEY=your_openai_api_key_here
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
pull_request:
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
verify:
|
|
9
|
+
name: Verify
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
|
|
12
|
+
steps:
|
|
13
|
+
- name: Checkout repo
|
|
14
|
+
uses: actions/checkout@v4
|
|
15
|
+
|
|
16
|
+
- name: Setup Python 3.12
|
|
17
|
+
uses: actions/setup-python@v5
|
|
18
|
+
with:
|
|
19
|
+
python-version: "3.12"
|
|
20
|
+
|
|
21
|
+
- name: Install dependencies
|
|
22
|
+
shell: bash
|
|
23
|
+
run: |
|
|
24
|
+
set -euo pipefail
|
|
25
|
+
python -m pip install --upgrade pip
|
|
26
|
+
if [ -f requirements.txt ]; then
|
|
27
|
+
pip install -r requirements.txt
|
|
28
|
+
fi
|
|
29
|
+
if [ -f requirements-dev.txt ]; then
|
|
30
|
+
pip install -r requirements-dev.txt
|
|
31
|
+
fi
|
|
32
|
+
if [ -f pyproject.toml ] && grep -q "pytest" pyproject.toml; then
|
|
33
|
+
pip install ".[dev]"
|
|
34
|
+
fi
|
|
35
|
+
|
|
36
|
+
- name: Python compile check
|
|
37
|
+
shell: bash
|
|
38
|
+
run: |
|
|
39
|
+
set -euo pipefail
|
|
40
|
+
files=()
|
|
41
|
+
for file in memwal/*.py agents/demo.py api/index.py playground/server.py; do
|
|
42
|
+
if [ -e "$file" ]; then
|
|
43
|
+
files+=("$file")
|
|
44
|
+
fi
|
|
45
|
+
done
|
|
46
|
+
if [ "${#files[@]}" -eq 0 ]; then
|
|
47
|
+
echo "No Python files found for compile check."
|
|
48
|
+
echo "✓ Python compile check"
|
|
49
|
+
else
|
|
50
|
+
if python -m py_compile "${files[@]}"; then
|
|
51
|
+
echo "✓ Python compile check"
|
|
52
|
+
else
|
|
53
|
+
echo "✗ Compile failed"
|
|
54
|
+
echo "CI FAILED"
|
|
55
|
+
exit 1
|
|
56
|
+
fi
|
|
57
|
+
fi
|
|
58
|
+
|
|
59
|
+
- name: Smoke test
|
|
60
|
+
shell: bash
|
|
61
|
+
run: |
|
|
62
|
+
set -euo pipefail
|
|
63
|
+
if python - <<'PY'
|
|
64
|
+
from memwal.checkpoint import WalrusCheckpointer
|
|
65
|
+
from memwal.walrus import WalrusClient
|
|
66
|
+
from memwal.sui import SuiRegistry
|
|
67
|
+
|
|
68
|
+
print("MemWal smoke test passed")
|
|
69
|
+
PY
|
|
70
|
+
then
|
|
71
|
+
echo "✓ Smoke test"
|
|
72
|
+
else
|
|
73
|
+
echo "✗ Smoke test failed"
|
|
74
|
+
echo "CI FAILED"
|
|
75
|
+
exit 1
|
|
76
|
+
fi
|
|
77
|
+
|
|
78
|
+
- name: Pytest
|
|
79
|
+
shell: bash
|
|
80
|
+
run: |
|
|
81
|
+
set -euo pipefail
|
|
82
|
+
if [ ! -d tests ]; then
|
|
83
|
+
echo "No tests directory found."
|
|
84
|
+
echo "Skipping pytest."
|
|
85
|
+
echo "✓ Pytest"
|
|
86
|
+
exit 0
|
|
87
|
+
fi
|
|
88
|
+
|
|
89
|
+
if [ "${MEMWAL_RUN_LIVE_TESTS:-0}" != "1" ]; then
|
|
90
|
+
echo "Live integration tests are present, but MEMWAL_RUN_LIVE_TESTS is not set to 1."
|
|
91
|
+
echo "Skipping pytest to avoid live Walrus/Sui network calls and writes."
|
|
92
|
+
echo "✓ Pytest"
|
|
93
|
+
exit 0
|
|
94
|
+
fi
|
|
95
|
+
|
|
96
|
+
if pytest tests/ -v; then
|
|
97
|
+
echo "✓ Pytest"
|
|
98
|
+
else
|
|
99
|
+
echo "✗ Pytest failed"
|
|
100
|
+
echo "CI FAILED"
|
|
101
|
+
exit 1
|
|
102
|
+
fi
|
|
103
|
+
|
|
104
|
+
- name: CI result
|
|
105
|
+
shell: bash
|
|
106
|
+
run: |
|
|
107
|
+
echo "CI PASSED"
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.pyo
|
|
5
|
+
*.pyd
|
|
6
|
+
.pytest_cache/
|
|
7
|
+
.mypy_cache/
|
|
8
|
+
.ruff_cache/
|
|
9
|
+
.coverage
|
|
10
|
+
htmlcov/
|
|
11
|
+
dist/
|
|
12
|
+
build/
|
|
13
|
+
*.egg-info/
|
|
14
|
+
*.sqlite3
|
|
15
|
+
|
|
16
|
+
# Virtual environments
|
|
17
|
+
.venv/
|
|
18
|
+
venv/
|
|
19
|
+
env/
|
|
20
|
+
audit-env/
|
|
21
|
+
|
|
22
|
+
# Environment and secrets
|
|
23
|
+
.env
|
|
24
|
+
.env.*
|
|
25
|
+
!.env.example
|
|
26
|
+
|
|
27
|
+
# Node.js
|
|
28
|
+
node_modules/
|
|
29
|
+
package-lock.json
|
|
30
|
+
yarn.lock
|
|
31
|
+
|
|
32
|
+
# Local editor/OS files
|
|
33
|
+
.DS_Store
|
|
34
|
+
Thumbs.db
|
|
35
|
+
.idea/
|
|
36
|
+
.vscode/
|
|
37
|
+
*.swp
|
|
38
|
+
*.swo
|
|
39
|
+
*~
|
|
40
|
+
|
|
41
|
+
# Vercel local state
|
|
42
|
+
.vercel/
|
|
43
|
+
|
|
44
|
+
# Sui Move build output
|
|
45
|
+
contracts/build/
|
|
46
|
+
|
|
47
|
+
# Sui keystore / wallet (never commit private keys)
|
|
48
|
+
*.keystore
|
|
49
|
+
sui.keystore
|
|
50
|
+
|
|
51
|
+
# Logs
|
|
52
|
+
*.log
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Surojit Guha
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: memwal-checkpoint
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Portable memory for AI agents using Walrus and Sui.
|
|
5
|
+
Project-URL: Homepage, https://github.com/Surojit012/memwal
|
|
6
|
+
Project-URL: Repository, https://github.com/Surojit012/memwal
|
|
7
|
+
Author: Surojit Guha
|
|
8
|
+
License: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Requires-Dist: httpx>=0.27
|
|
12
|
+
Requires-Dist: langchain-core>=0.2.38
|
|
13
|
+
Requires-Dist: langgraph-checkpoint>=2.0
|
|
14
|
+
Requires-Dist: langgraph>=0.2
|
|
15
|
+
Requires-Dist: msgpack>=1.0
|
|
16
|
+
Requires-Dist: nest-asyncio>=1.6
|
|
17
|
+
Requires-Dist: pynacl>=1.5
|
|
18
|
+
Requires-Dist: python-dotenv>=1.0
|
|
19
|
+
Provides-Extra: dev
|
|
20
|
+
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
|
|
21
|
+
Requires-Dist: pytest>=8.0; extra == 'dev'
|
|
22
|
+
Provides-Extra: llm
|
|
23
|
+
Requires-Dist: langchain-anthropic>=0.3; extra == 'llm'
|
|
24
|
+
Provides-Extra: playground
|
|
25
|
+
Requires-Dist: fastapi>=0.115; extra == 'playground'
|
|
26
|
+
Requires-Dist: python-multipart>=0.0.9; extra == 'playground'
|
|
27
|
+
Requires-Dist: uvicorn>=0.30; extra == 'playground'
|
|
28
|
+
Description-Content-Type: text/markdown
|
|
29
|
+
|
|
30
|
+
# 🧠 MemWal
|
|
31
|
+
|
|
32
|
+
> Portable memory for AI agents.
|
|
33
|
+
|
|
34
|
+
A decentralized LangGraph checkpoint backend powered by Walrus and Sui.
|
|
35
|
+
|
|
36
|
+
**Kill the machine. Start another one. The agent continues.**
|
|
37
|
+
|
|
38
|
+

|
|
39
|
+

|
|
40
|
+

|
|
41
|
+
|
|
42
|
+
## 🚀 TL;DR
|
|
43
|
+
|
|
44
|
+
```text
|
|
45
|
+
Today:
|
|
46
|
+
|
|
47
|
+
AI Agent
|
|
48
|
+
|
|
49
|
+
↓
|
|
50
|
+
|
|
51
|
+
Local RAM
|
|
52
|
+
|
|
53
|
+
↓
|
|
54
|
+
|
|
55
|
+
Process dies
|
|
56
|
+
|
|
57
|
+
↓
|
|
58
|
+
|
|
59
|
+
Memory lost
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
With MemWal:
|
|
63
|
+
|
|
64
|
+
AI Agent
|
|
65
|
+
|
|
66
|
+
↓
|
|
67
|
+
|
|
68
|
+
Walrus
|
|
69
|
+
|
|
70
|
+
↓
|
|
71
|
+
|
|
72
|
+
Sui
|
|
73
|
+
|
|
74
|
+
↓
|
|
75
|
+
|
|
76
|
+
Resume anywhere
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
MemWal lets LangGraph agents survive machine restarts without relying on SQLite, Redis, or local files.
|
|
80
|
+
|
|
81
|
+
## Why MemWal?
|
|
82
|
+
|
|
83
|
+
Most AI agent memory is tied to the machine where the agent is running. If the process exits, the container restarts, or the developer switches machines, the agent's state often disappears with it unless a local database or custom persistence layer has been wired in.
|
|
84
|
+
|
|
85
|
+
Without MemWal:
|
|
86
|
+
|
|
87
|
+
```text
|
|
88
|
+
AI Agent
|
|
89
|
+
|
|
90
|
+
↓
|
|
91
|
+
|
|
92
|
+
Local RAM
|
|
93
|
+
|
|
94
|
+
↓
|
|
95
|
+
|
|
96
|
+
Machine dies
|
|
97
|
+
|
|
98
|
+
↓
|
|
99
|
+
|
|
100
|
+
Memory lost
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
With MemWal:
|
|
104
|
+
|
|
105
|
+
```text
|
|
106
|
+
AI Agent
|
|
107
|
+
|
|
108
|
+
↓
|
|
109
|
+
|
|
110
|
+
Walrus
|
|
111
|
+
|
|
112
|
+
↓
|
|
113
|
+
|
|
114
|
+
Sui
|
|
115
|
+
|
|
116
|
+
↓
|
|
117
|
+
|
|
118
|
+
Memory survives
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
MemWal replaces local-only checkpoint storage with decentralized persistence while keeping the LangGraph developer experience familiar.
|
|
122
|
+
|
|
123
|
+
## Architecture
|
|
124
|
+
|
|
125
|
+
```text
|
|
126
|
+
LangGraph Agent
|
|
127
|
+
|
|
128
|
+
↓
|
|
129
|
+
|
|
130
|
+
WalrusCheckpointer
|
|
131
|
+
|
|
132
|
+
↓
|
|
133
|
+
|
|
134
|
+
Walrus (blob storage)
|
|
135
|
+
|
|
136
|
+
↓
|
|
137
|
+
|
|
138
|
+
Sui (thread_id → blob_id registry)
|
|
139
|
+
|
|
140
|
+
↓
|
|
141
|
+
|
|
142
|
+
Resume anywhere
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
At a high level, MemWal stores checkpoint bytes in Walrus and records the latest blob ID for each `thread_id` in a Sui registry object.
|
|
146
|
+
|
|
147
|
+
## ✅ What We Verified
|
|
148
|
+
|
|
149
|
+
| Capability | Status |
|
|
150
|
+
| ---------------------- | ------ |
|
|
151
|
+
| Snapshot checkpoints | ✅ |
|
|
152
|
+
| Delta checkpoints | ✅ |
|
|
153
|
+
| Cross-machine recovery | ✅ |
|
|
154
|
+
| Multi-thread isolation | ✅ |
|
|
155
|
+
| Storage benchmarks | ✅ |
|
|
156
|
+
| Walrus integration | ✅ |
|
|
157
|
+
| Sui integration | ✅ |
|
|
158
|
+
| GitHub CI | ✅ |
|
|
159
|
+
|
|
160
|
+
## 🌍 Why this matters
|
|
161
|
+
|
|
162
|
+
Today's agent memory is usually tied to:
|
|
163
|
+
|
|
164
|
+
* RAM
|
|
165
|
+
* SQLite
|
|
166
|
+
* Redis
|
|
167
|
+
* Local files
|
|
168
|
+
|
|
169
|
+
If the machine disappears, the memory disappears.
|
|
170
|
+
|
|
171
|
+
MemWal decouples memory from compute.
|
|
172
|
+
|
|
173
|
+
An agent can stop running on one machine and continue running on another by restoring its state from Walrus and Sui.
|
|
174
|
+
|
|
175
|
+
## Features
|
|
176
|
+
|
|
177
|
+
* Snapshot checkpoints
|
|
178
|
+
* Delta checkpoints
|
|
179
|
+
* Cross-machine recovery
|
|
180
|
+
* Multi-thread isolation
|
|
181
|
+
* On-chain thread registry
|
|
182
|
+
* Storage benchmarks
|
|
183
|
+
* GitHub CI
|
|
184
|
+
|
|
185
|
+
## Installation
|
|
186
|
+
|
|
187
|
+
```bash
|
|
188
|
+
pip install memwal-checkpoint
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
Or install directly from GitHub:
|
|
192
|
+
|
|
193
|
+
```bash
|
|
194
|
+
pip install git+https://github.com/Surojit012/memwal.git
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
> **Note**
|
|
198
|
+
>
|
|
199
|
+
> MemWal is the product name.
|
|
200
|
+
>
|
|
201
|
+
> `memwal-checkpoint` is the Python package distribution name.
|
|
202
|
+
>
|
|
203
|
+
> Imports remain:
|
|
204
|
+
>
|
|
205
|
+
> ```python
|
|
206
|
+
> from memwal import WalrusCheckpointer
|
|
207
|
+
> ```
|
|
208
|
+
|
|
209
|
+
## 🛠️ Development
|
|
210
|
+
|
|
211
|
+
Install local development dependencies:
|
|
212
|
+
|
|
213
|
+
```bash
|
|
214
|
+
pip install -r requirements.txt
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
Install the package:
|
|
218
|
+
|
|
219
|
+
```bash
|
|
220
|
+
pip install -e .
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
## ⚡ One-line integration
|
|
224
|
+
|
|
225
|
+
Replace:
|
|
226
|
+
|
|
227
|
+
```python
|
|
228
|
+
checkpointer = MemorySaver()
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
with:
|
|
232
|
+
|
|
233
|
+
```python
|
|
234
|
+
checkpointer = WalrusCheckpointer.from_env()
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
That's it.
|
|
238
|
+
|
|
239
|
+
Your LangGraph agent now stores memory on Walrus and uses Sui as a decentralized thread registry.
|
|
240
|
+
|
|
241
|
+
## Quickstart
|
|
242
|
+
|
|
243
|
+
```python
|
|
244
|
+
from memwal import WalrusCheckpointer
|
|
245
|
+
|
|
246
|
+
checkpointer = WalrusCheckpointer.from_env()
|
|
247
|
+
|
|
248
|
+
graph = builder.compile(
|
|
249
|
+
checkpointer=checkpointer
|
|
250
|
+
)
|
|
251
|
+
```
|
|
252
|
+
|
|
253
|
+
## Live Demo Results
|
|
254
|
+
|
|
255
|
+
The demo runner verifies MemWal against live Walrus and Sui testnet infrastructure.
|
|
256
|
+
|
|
257
|
+
5 steps:
|
|
258
|
+
|
|
259
|
+
| strategy | savings |
|
|
260
|
+
| -------- | ------- |
|
|
261
|
+
| snapshot | 60.87% |
|
|
262
|
+
| delta | 53.75% |
|
|
263
|
+
|
|
264
|
+
20 steps:
|
|
265
|
+
|
|
266
|
+
| strategy | savings |
|
|
267
|
+
| -------- | ------- |
|
|
268
|
+
| snapshot | 75.66% |
|
|
269
|
+
| delta | 81.01% |
|
|
270
|
+
|
|
271
|
+
Delta mode becomes more efficient as conversations grow because it stores incremental changes instead of repeatedly uploading the full growing checkpoint.
|
|
272
|
+
|
|
273
|
+
## Cross-machine verification
|
|
274
|
+
|
|
275
|
+
MemWal has been verified with a cross-machine recovery flow:
|
|
276
|
+
|
|
277
|
+
```text
|
|
278
|
+
Machine A
|
|
279
|
+
|
|
280
|
+
↓
|
|
281
|
+
|
|
282
|
+
Store memory
|
|
283
|
+
|
|
284
|
+
↓
|
|
285
|
+
|
|
286
|
+
Destroy machine
|
|
287
|
+
|
|
288
|
+
↓
|
|
289
|
+
|
|
290
|
+
Machine B
|
|
291
|
+
|
|
292
|
+
↓
|
|
293
|
+
|
|
294
|
+
Restore memory
|
|
295
|
+
```
|
|
296
|
+
|
|
297
|
+
The restored agent state comes from Walrus and Sui, not from local files, local RAM, or a local database.
|
|
298
|
+
|
|
299
|
+
## Multi-thread isolation
|
|
300
|
+
|
|
301
|
+
MemWal has also been verified with independent thread recovery:
|
|
302
|
+
|
|
303
|
+
```text
|
|
304
|
+
Thread A -> Pizza
|
|
305
|
+
|
|
306
|
+
Thread B -> Football
|
|
307
|
+
|
|
308
|
+
Thread C -> Python
|
|
309
|
+
```
|
|
310
|
+
|
|
311
|
+
Each thread restores only its own memory. No cross-thread contamination was observed.
|
|
312
|
+
|
|
313
|
+
## How it works
|
|
314
|
+
|
|
315
|
+
1. Serialize the LangGraph checkpoint.
|
|
316
|
+
2. Upload the checkpoint bytes to Walrus.
|
|
317
|
+
3. Register the returned Walrus blob ID on Sui under the LangGraph `thread_id`.
|
|
318
|
+
4. Restore by looking up the `thread_id` on Sui, fetching the blob from Walrus, and reconstructing the checkpoint.
|
|
319
|
+
|
|
320
|
+
This gives each LangGraph thread a decentralized memory pointer:
|
|
321
|
+
|
|
322
|
+
```text
|
|
323
|
+
thread_id -> Sui registry -> Walrus blob -> LangGraph checkpoint
|
|
324
|
+
```
|
|
325
|
+
|
|
326
|
+
## 🎯 Demo Proof
|
|
327
|
+
|
|
328
|
+
MemWal has been validated end-to-end on live Walrus and Sui testnet infrastructure.
|
|
329
|
+
|
|
330
|
+
Verified scenarios:
|
|
331
|
+
|
|
332
|
+
- ✅ Agent persistence
|
|
333
|
+
- ✅ Cross-machine recovery
|
|
334
|
+
- ✅ Multi-thread isolation
|
|
335
|
+
- ✅ Snapshot checkpoints
|
|
336
|
+
- ✅ Delta checkpoints
|
|
337
|
+
- ✅ GitHub CI
|
|
338
|
+
|
|
339
|
+
No local database was used.
|
|
340
|
+
|
|
341
|
+
No local files were used.
|
|
342
|
+
|
|
343
|
+
No in-memory state was reused.
|
|
344
|
+
|
|
345
|
+
## Roadmap
|
|
346
|
+
|
|
347
|
+
* Delta compaction
|
|
348
|
+
* PyPI release
|
|
349
|
+
* Monitoring dashboard
|
|
350
|
+
|
|
351
|
+
## License
|
|
352
|
+
|
|
353
|
+
MIT
|
|
354
|
+
|
|
355
|
+
Kill the machine. Start another one. The agent continues.
|