gitextract_szc0bvdr/ ├── .gitignore ├── .gitmodules ├── .travis.yml ├── COPYING ├── Dockerfile ├── README.rst ├── data/ │ ├── public/ │ │ └── tall.h5 │ └── readme.txt ├── docs/ │ ├── AclOps/ │ │ ├── GET_ACL.rst │ │ ├── GET_ACLs.rst │ │ ├── PUT_ACL.rst │ │ └── index.rst │ ├── AdminTools.rst │ ├── AttrOps/ │ │ ├── DELETE_Attribute.rst │ │ ├── GET_Attribute.rst │ │ ├── GET_Attributes.rst │ │ ├── PUT_Attribute.rst │ │ └── index.rst │ ├── Authorization.rst │ ├── CommonErrorResponses.rst │ ├── CommonRequestHeaders.rst │ ├── CommonResponseHeaders.rst │ ├── DatasetOps/ │ │ ├── DELETE_Dataset.rst │ │ ├── GET_Dataset.rst │ │ ├── GET_DatasetShape.rst │ │ ├── GET_DatasetType.rst │ │ ├── GET_Datasets.rst │ │ ├── GET_Value.rst │ │ ├── POST_Dataset.rst │ │ ├── POST_Value.rst │ │ ├── PUT_DatasetShape.rst │ │ ├── PUT_Value.rst │ │ └── index.rst │ ├── DatatypeOps/ │ │ ├── DELETE_Datatype.rst │ │ ├── GET_Datatype.rst │ │ ├── GET_Datatypes.rst │ │ ├── POST_Datatype.rst │ │ └── index.rst │ ├── Diagram.rst │ ├── DomainOps/ │ │ ├── DELETE_Domain.rst │ │ ├── GET_Domain.rst │ │ ├── PUT_Domain.rst │ │ └── index.rst │ ├── FAQ/ │ │ └── index.rst │ ├── GroupOps/ │ │ ├── DELETE_Group.rst │ │ ├── DELETE_Link.rst │ │ ├── GET_Group.rst │ │ ├── GET_Groups.rst │ │ ├── GET_Link.rst │ │ ├── GET_Links.rst │ │ ├── POST_Group.rst │ │ ├── PUT_Link.rst │ │ └── index.rst │ ├── Hypermedia.rst │ ├── Installation/ │ │ ├── ServerSetup.rst │ │ └── index.rst │ ├── Introduction/ │ │ └── index.rst │ ├── License/ │ │ └── index.rst │ ├── Makefile │ ├── Reference.rst │ ├── Resources.rst │ ├── Tutorials/ │ │ ├── IPython_samples.rst │ │ └── index.rst │ ├── Types/ │ │ └── index.rst │ ├── UsingIteration.rst │ ├── Utilities.rst │ ├── WhatsNew/ │ │ └── index.rst │ ├── _static/ │ │ └── README │ ├── build.sh │ ├── conf.py │ ├── index.rst │ └── make.bat ├── entrypoint.sh ├── examples/ │ ├── h5pyd_ex1.ipynb │ ├── h5pyd_ex2.ipynb │ ├── nodejs/ │ │ └── gettoc.js │ ├── pi_compute.ipynb │ └── rest_ex1.ipynb ├── h5serv/ │ ├── __init__.py │ ├── __main__.py │ ├── app.py │ ├── authFile.py │ ├── authMongo.py │ ├── config.py │ ├── fileUtil.py │ ├── h5watchdog.py │ ├── httpErrorUtil.py │ ├── passwordUtil.py │ ├── timeUtil.py │ └── tocUtil.py ├── setup.py ├── test/ │ ├── aws/ │ │ ├── config.py │ │ └── roottest.py │ ├── integ/ │ │ ├── acltest.py │ │ ├── attributetest.py │ │ ├── config.py │ │ ├── datasettest.py │ │ ├── datasettypetest.py │ │ ├── datatypetest.py │ │ ├── dirtest.py │ │ ├── grouptest.py │ │ ├── helper.py │ │ ├── linktest.py │ │ ├── makeattr.py │ │ ├── makegroups.py │ │ ├── roottest.py │ │ ├── setupdata.py │ │ ├── shapetest.py │ │ ├── spidertest.py │ │ └── valuetest.py │ ├── test_files/ │ │ ├── array_attr.h5 │ │ ├── array_dset.h5 │ │ ├── arraytype.h5 │ │ ├── attr1k.h5 │ │ ├── bitfield_attr.h5 │ │ ├── bitfield_dset.h5 │ │ ├── bool_attr.h5 │ │ ├── bool_dset.h5 │ │ ├── committed_type.h5 │ │ ├── comp_complex.h5 │ │ ├── compound.h5 │ │ ├── compound_array.h5 │ │ ├── compound_array_attr.h5 │ │ ├── compound_array_dset.h5 │ │ ├── compound_attr.h5 │ │ ├── compound_committed.h5 │ │ ├── dim_scale.h5 │ │ ├── dim_scale_data.h5 │ │ ├── dset1k.h5 │ │ ├── dset_creationprop.h5 │ │ ├── dset_gzip.h5 │ │ ├── empty.h5 │ │ ├── enum_attr.h5 │ │ ├── enum_dset.h5 │ │ ├── ex_image2.h5 │ │ ├── ex_image3.h5 │ │ ├── fillvalue.h5 │ │ ├── fixed_string_attr.h5 │ │ ├── fixed_string_dset.h5 │ │ ├── group100.h5 │ │ ├── group1k.h5 │ │ ├── h5ex_d_alloc.h5 │ │ ├── h5ex_d_checksum.h5 │ │ ├── h5ex_d_chunk.h5 │ │ ├── h5ex_d_compact.h5 │ │ ├── h5ex_d_extern.h5 │ │ ├── h5ex_d_fillval.h5 │ │ ├── h5ex_d_gzip.h5 │ │ ├── h5ex_d_hyper.h5 │ │ ├── h5ex_d_nbit.h5 │ │ ├── h5ex_d_rdwr.h5 │ │ ├── h5ex_d_shuffle.h5 │ │ ├── h5ex_d_sofloat.h5 │ │ ├── h5ex_d_soint.h5 │ │ ├── h5ex_d_transform.h5 │ │ ├── h5ex_d_unlimadd.h5 │ │ ├── h5ex_d_unlimgzip.h5 │ │ ├── h5ex_d_unlimmod.h5 │ │ ├── namedtype.h5 │ │ ├── notahdf5file.h5 │ │ ├── null_objref_dset.h5 │ │ ├── null_space_attr.h5 │ │ ├── null_space_dset.h5 │ │ ├── objref_attr.h5 │ │ ├── objref_dset.h5 │ │ ├── opaque_attr.h5 │ │ ├── opaque_dset.h5 │ │ ├── regionref_attr.h5 │ │ ├── regionref_dset.h5 │ │ ├── resizable.h5 │ │ ├── sample.h5 │ │ ├── scalar.h5 │ │ ├── scalar_attr.h5 │ │ ├── tall.h5 │ │ ├── tall_with_udlink.h5 │ │ ├── tallrw.h5 │ │ ├── tgroup.h5 │ │ ├── tref.h5 │ │ ├── tstr.h5 │ │ ├── type1k.h5 │ │ ├── types_attr.h5 │ │ ├── types_dset.h5 │ │ ├── vlen_attr.h5 │ │ ├── vlen_dset.h5 │ │ ├── vlen_string_attr.h5 │ │ ├── vlen_string_dset.h5 │ │ ├── vlen_string_dset_utc.h5 │ │ ├── vlen_string_nullterm_attr.h5 │ │ ├── vlen_string_nullterm_dset.h5 │ │ ├── vlen_unicode_attr.h5 │ │ └── zerodim.h5 │ ├── testall.py │ └── unit/ │ ├── config.py │ ├── fileUtilTest.py │ └── timeUtilTest.py └── util/ ├── admin/ │ ├── add_user.py │ ├── config.py │ ├── getacl.py │ ├── import_file.py │ ├── makepwd_file.py │ ├── remove_db.py │ ├── setacl.py │ └── update_pwd.py ├── dumpobjdb.py ├── dumptojson.sh ├── exporth5.py ├── exportjson.py └── rebuildIndex.py