Metadata-Version: 2.1
Name: drb-impl-zarr
Version: 1.0b1
Summary: DRB Zarr implementation
Home-page: https://gitlab.com/drb-python/impl/zarr
Author: GAEL Systems
Author-email: drb-python@gael.fr
License: UNKNOWN
Description: # ZarrNode Implementation
        This drb-impl-zarr module implements access to zarr containers with DRB data model. It is able to navigates among the zarr contents.
        ## Zar Factory and Zarr Node
        The module implements the basic factory model defined in DRB in its node resolver. Based on the python entry point mechanism, this module can be dynamically imported into applications.
        
        The entry point group reference is `drb.impl`.<br/>
        The implementation name is `zarr`.<br/>
        The factory class is decribed with implementation `drb_impl_zarr.drb_impl_signature`.<br/>
        
        The zarr factory creates a ZarrNode from an existing zarr content. It uses a base node to access the content data using a streamed implementation from the base node.
        
        The base node can be a DrbFileNode, DrbHttpNode, DrbTarNode or any other nodes able to provide streamed (`BufferedIOBase`, `RawIOBase`, `IO`) zarr content.
        ## limitations
        The current version does not manage child modification and insertion. ZarrNode is currently read only.
        ## Using this module
        To include this module into your project, the `drb-impl-zarr` module shall be referenced into `requirements.txt` file, or the following pip line can be run:
        ```commandline
        pip install drb-impl-zarr
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
