Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 4 additions & 15 deletions .code-workspace
Original file line number Diff line number Diff line change
@@ -1,19 +1,8 @@
{
"folders": [
{
"path": "manual"
},
{
"path": "zarr_v2"
},
{
"path": "zarr_v3_hamt_v2"
},
{
"path": "zarr_v3-hamt_v3"
}
],
"settings": {
"python.venvFolders": [
".venv"
],
"python.terminal.activateEnvironment": true
}
}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ __pycache__/
.pytest_cache/
.ruff_cache/
.pdm-python

*.zarr
1 change: 1 addition & 0 deletions codecs/.python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.12
Empty file added codecs/README.md
Empty file.
6 changes: 6 additions & 0 deletions codecs/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
def main():
print("Hello from codecs!")


if __name__ == "__main__":
main()
19 changes: 19 additions & 0 deletions codecs/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[project]
dependencies = [
"xarray~=2025.3.0",
"zarr>=3",
"ipykernel>=6.29.5",
"multiformats>=0.3.1.post4",
"py-hamt @ git+https://github.com/dClimate/py-hamt.git@refactor-swap-requests-with-aiohttp",
"numcodecs[pcodec]>=0.16.1",
"pcodec>=0.3.3",
"humanize>=4.12.3",
"dask>=2025.5.1",
]
name = "zarr-comparison-v3"
version = "0.1.0"

authors = [{ name = "0xSwego - dClimate", email = "0xSwego@gmail.com" }]
requires-python = "==3.12.*"
readme = "README.md"
license = { text = "MIT" }
1,832 changes: 1,832 additions & 0 deletions codecs/zarr_v3.ipynb

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions zarr_v3-hamt_v3-async/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[project]
dependencies = [
"xarray~=2025.3.0",
"zarr>=3",
"ipykernel>=6.29.5",
"multiformats>=0.3.1.post4",
"py-hamt @ git+https://github.com/dClimate/py-hamt.git@refactor-swap-requests-with-aiohttp",
"numcodecs[pcodec]>=0.16.1",
"pcodec>=0.3.3",
"humanize>=4.12.3",
"dask>=2025.5.1",
]
name = "zarr-comparison-v3"
version = "0.1.0"

authors = [{ name = "0xSwego - dClimate", email = "0xSwego@gmail.com" }]
requires-python = "==3.12.*"
readme = "README.md"
license = { text = "MIT" }
1,163 changes: 1,163 additions & 0 deletions zarr_v3-hamt_v3-async/uv.lock

Large diffs are not rendered by default.

1,832 changes: 1,832 additions & 0 deletions zarr_v3-hamt_v3-async/zarr_v3.ipynb

Large diffs are not rendered by default.

14 changes: 0 additions & 14 deletions zarr_v3-hamt_v3/pyproject.toml

This file was deleted.

174 changes: 0 additions & 174 deletions zarr_v3-hamt_v3/zarr_v3.ipynb

This file was deleted.

Loading