Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CosemDataset object-oriented api #42

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
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
4 changes: 2 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
name: PyTest
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

jobs:
test:
Expand Down
1,174 changes: 1,172 additions & 2 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ dask = "^2023.3.2"
textual = "^0.16.0"
aiohttp = "^3.8.4"
httpx = {extras = ["http2"], version = "^0.23.3"}
supabase = "^1.0.3"
matplotlib = "^3.7.1"
imageio = "^2.28.0"
xarray-datatree = "^0.0.12"


[tool.poetry.group.dev.dependencies]
Expand Down
10 changes: 10 additions & 0 deletions src/fibsem_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,13 @@

# ruff: noqa
from fibsem_tools.io.core import read, read_dask, read_xarray, access, create_group
from fibsem_tools._dataset import CosemDataset

__all__ = [
"access",
"create_group",
"read",
"read_dask",
"read_xarray",
"CosemDataset",
]
Loading