├── .gitignore ├── .gitmodules ├── LICENSE ├── README.rst ├── czi_memory_mapped_quickstart.ipynb ├── czifile ├── __init__.py ├── _czifile.pyx └── czifile.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCellModeling/czifile/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCellModeling/czifile/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCellModeling/czifile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCellModeling/czifile/HEAD/README.rst -------------------------------------------------------------------------------- /czi_memory_mapped_quickstart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCellModeling/czifile/HEAD/czi_memory_mapped_quickstart.ipynb -------------------------------------------------------------------------------- /czifile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCellModeling/czifile/HEAD/czifile/__init__.py -------------------------------------------------------------------------------- /czifile/_czifile.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCellModeling/czifile/HEAD/czifile/_czifile.pyx -------------------------------------------------------------------------------- /czifile/czifile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCellModeling/czifile/HEAD/czifile/czifile.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCellModeling/czifile/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenCellModeling/czifile/HEAD/setup.py --------------------------------------------------------------------------------