├── .github ├── pull_request_template.md └── workflows │ ├── build-and-deploy-on-pypi.yml │ ├── joss-draft-pdf.yml │ └── pytest.yml ├── .gitignore ├── .readthedocs.yaml ├── Changelog.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── codecov.yml ├── doc ├── _sidebar.rst.inc ├── additional.rst ├── api_reference.rst ├── changelog.rst ├── conf.py ├── figures │ ├── Pyfive-logo.png │ ├── sequence.pu │ ├── software-view1.pu │ └── software-view1.svg ├── gensidebar.py ├── index.rst ├── introduction.rst ├── optimising.rst ├── p5dump.rst └── quickstart │ ├── enums.rst │ ├── index.rst │ ├── installation.rst │ ├── opaque.rst │ └── usage.rst ├── environment.yml ├── pyfive ├── __init__.py ├── btree.py ├── core.py ├── dataobjects.py ├── datatype_msg.py ├── h5d.py ├── h5py.py ├── h5t.py ├── high_level.py ├── indexing.py ├── inspect.py ├── misc_low_level.py ├── p5dump.py └── p5t.py ├── pyproject.toml └── tests ├── conftest.py ├── data ├── attr_datatypes.hdf5 ├── btreev2.hdf5 ├── chunked.hdf5 ├── compressed.hdf5 ├── compressed_v1.hdf5 ├── dataset_datatypes.hdf5 ├── dataset_multidim.hdf5 ├── dim_scales.hdf5 ├── earliest.hdf5 ├── enum_h5variable.hdf5 ├── enum_variable.hdf5 ├── enum_variable.nc ├── enums_from_netcdf.nc ├── fillvalue_earliest.hdf5 ├── fillvalue_latest.hdf5 ├── filter_pipeline_v2.hdf5 ├── fletcher32.hdf5 ├── groups.hdf5 ├── h5netcdf_test.hdf5 ├── issue23_A.nc ├── issue23_A_contiguous.nc ├── issue23_B.nc ├── latest.hdf5 ├── make_dataset_multidim_file.py ├── netcdf4_classic.nc ├── new_style_groups.hdf5 ├── references.hdf5 └── resizable.hdf5 ├── make_attr_datatypes_file.py ├── make_attr_datatypes_file_2.py ├── make_chunked.py ├── make_compressed.py ├── make_dataset_datatypes_file.py ├── make_dim_scales.py ├── make_earliest_file.py ├── make_enum_file.py ├── make_fillvalue.py ├── make_filter_pipeline_v2.py ├── make_fletcher32.py ├── make_groups_file.py ├── make_latest_file.py ├── make_netcdf4_classic_file.py ├── make_new_style_groups_file.py ├── make_references_file.py ├── make_resizable.py ├── test_attr_datatypes.py ├── test_buffer_issue.py ├── test_chunk_index_options.py ├── test_chunked.py ├── test_compact.py ├── test_compound.py ├── test_compressed.py ├── test_compressed_v1.py ├── test_consolidated_metadata.py ├── test_dataset_datatypes.py ├── test_dataset_multidim.py ├── test_dim_scales.py ├── test_dump.py ├── test_earliest.py ├── test_enum_var.py ├── test_file_like.py ├── test_fillvalue.py ├── test_filter_pipeline_v2.py ├── test_fletcher32.py ├── test_groups.py ├── test_h5d.py ├── test_h5netcdf.py ├── test_high_level.py ├── test_issue23_nc_attrs.py ├── test_latest.py ├── test_lazy_variables.py ├── test_mock_s3fs.py ├── test_netcd4_classic.py ├── test_new_style_groups.py ├── test_opaque.py ├── test_p5ncdump.py ├── test_pseudochunking.py ├── test_reference_list.py ├── test_references.py ├── test_repr.py ├── test_resizable.py ├── test_threadsafe_data_access.py ├── test_version.py ├── test_visit.py └── test_vlen_str.py /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-and-deploy-on-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/.github/workflows/build-and-deploy-on-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/joss-draft-pdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/.github/workflows/joss-draft-pdf.yml -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /Changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/Changelog.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/_sidebar.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/_sidebar.rst.inc -------------------------------------------------------------------------------- /doc/additional.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/additional.rst -------------------------------------------------------------------------------- /doc/api_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/api_reference.rst -------------------------------------------------------------------------------- /doc/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/changelog.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/figures/Pyfive-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/figures/Pyfive-logo.png -------------------------------------------------------------------------------- /doc/figures/sequence.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/figures/sequence.pu -------------------------------------------------------------------------------- /doc/figures/software-view1.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/figures/software-view1.pu -------------------------------------------------------------------------------- /doc/figures/software-view1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/figures/software-view1.svg -------------------------------------------------------------------------------- /doc/gensidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/gensidebar.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/introduction.rst -------------------------------------------------------------------------------- /doc/optimising.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/optimising.rst -------------------------------------------------------------------------------- /doc/p5dump.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/p5dump.rst -------------------------------------------------------------------------------- /doc/quickstart/enums.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/quickstart/enums.rst -------------------------------------------------------------------------------- /doc/quickstart/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/quickstart/index.rst -------------------------------------------------------------------------------- /doc/quickstart/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/quickstart/installation.rst -------------------------------------------------------------------------------- /doc/quickstart/opaque.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/quickstart/opaque.rst -------------------------------------------------------------------------------- /doc/quickstart/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/doc/quickstart/usage.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/environment.yml -------------------------------------------------------------------------------- /pyfive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyfive/__init__.py -------------------------------------------------------------------------------- /pyfive/btree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyfive/btree.py -------------------------------------------------------------------------------- /pyfive/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyfive/core.py -------------------------------------------------------------------------------- /pyfive/dataobjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyfive/dataobjects.py -------------------------------------------------------------------------------- /pyfive/datatype_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyfive/datatype_msg.py -------------------------------------------------------------------------------- /pyfive/h5d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyfive/h5d.py -------------------------------------------------------------------------------- /pyfive/h5py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyfive/h5py.py -------------------------------------------------------------------------------- /pyfive/h5t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyfive/h5t.py -------------------------------------------------------------------------------- /pyfive/high_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyfive/high_level.py -------------------------------------------------------------------------------- /pyfive/indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyfive/indexing.py -------------------------------------------------------------------------------- /pyfive/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyfive/inspect.py -------------------------------------------------------------------------------- /pyfive/misc_low_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyfive/misc_low_level.py -------------------------------------------------------------------------------- /pyfive/p5dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyfive/p5dump.py -------------------------------------------------------------------------------- /pyfive/p5t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyfive/p5t.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/attr_datatypes.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/attr_datatypes.hdf5 -------------------------------------------------------------------------------- /tests/data/btreev2.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/btreev2.hdf5 -------------------------------------------------------------------------------- /tests/data/chunked.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/chunked.hdf5 -------------------------------------------------------------------------------- /tests/data/compressed.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/compressed.hdf5 -------------------------------------------------------------------------------- /tests/data/compressed_v1.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/compressed_v1.hdf5 -------------------------------------------------------------------------------- /tests/data/dataset_datatypes.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/dataset_datatypes.hdf5 -------------------------------------------------------------------------------- /tests/data/dataset_multidim.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/dataset_multidim.hdf5 -------------------------------------------------------------------------------- /tests/data/dim_scales.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/dim_scales.hdf5 -------------------------------------------------------------------------------- /tests/data/earliest.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/earliest.hdf5 -------------------------------------------------------------------------------- /tests/data/enum_h5variable.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/enum_h5variable.hdf5 -------------------------------------------------------------------------------- /tests/data/enum_variable.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/enum_variable.hdf5 -------------------------------------------------------------------------------- /tests/data/enum_variable.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/enum_variable.nc -------------------------------------------------------------------------------- /tests/data/enums_from_netcdf.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/enums_from_netcdf.nc -------------------------------------------------------------------------------- /tests/data/fillvalue_earliest.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/fillvalue_earliest.hdf5 -------------------------------------------------------------------------------- /tests/data/fillvalue_latest.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/fillvalue_latest.hdf5 -------------------------------------------------------------------------------- /tests/data/filter_pipeline_v2.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/filter_pipeline_v2.hdf5 -------------------------------------------------------------------------------- /tests/data/fletcher32.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/fletcher32.hdf5 -------------------------------------------------------------------------------- /tests/data/groups.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/groups.hdf5 -------------------------------------------------------------------------------- /tests/data/h5netcdf_test.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/h5netcdf_test.hdf5 -------------------------------------------------------------------------------- /tests/data/issue23_A.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/issue23_A.nc -------------------------------------------------------------------------------- /tests/data/issue23_A_contiguous.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/issue23_A_contiguous.nc -------------------------------------------------------------------------------- /tests/data/issue23_B.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/issue23_B.nc -------------------------------------------------------------------------------- /tests/data/latest.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/latest.hdf5 -------------------------------------------------------------------------------- /tests/data/make_dataset_multidim_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/make_dataset_multidim_file.py -------------------------------------------------------------------------------- /tests/data/netcdf4_classic.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/netcdf4_classic.nc -------------------------------------------------------------------------------- /tests/data/new_style_groups.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/new_style_groups.hdf5 -------------------------------------------------------------------------------- /tests/data/references.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/references.hdf5 -------------------------------------------------------------------------------- /tests/data/resizable.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/data/resizable.hdf5 -------------------------------------------------------------------------------- /tests/make_attr_datatypes_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_attr_datatypes_file.py -------------------------------------------------------------------------------- /tests/make_attr_datatypes_file_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_attr_datatypes_file_2.py -------------------------------------------------------------------------------- /tests/make_chunked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_chunked.py -------------------------------------------------------------------------------- /tests/make_compressed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_compressed.py -------------------------------------------------------------------------------- /tests/make_dataset_datatypes_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_dataset_datatypes_file.py -------------------------------------------------------------------------------- /tests/make_dim_scales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_dim_scales.py -------------------------------------------------------------------------------- /tests/make_earliest_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_earliest_file.py -------------------------------------------------------------------------------- /tests/make_enum_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_enum_file.py -------------------------------------------------------------------------------- /tests/make_fillvalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_fillvalue.py -------------------------------------------------------------------------------- /tests/make_filter_pipeline_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_filter_pipeline_v2.py -------------------------------------------------------------------------------- /tests/make_fletcher32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_fletcher32.py -------------------------------------------------------------------------------- /tests/make_groups_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_groups_file.py -------------------------------------------------------------------------------- /tests/make_latest_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_latest_file.py -------------------------------------------------------------------------------- /tests/make_netcdf4_classic_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_netcdf4_classic_file.py -------------------------------------------------------------------------------- /tests/make_new_style_groups_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_new_style_groups_file.py -------------------------------------------------------------------------------- /tests/make_references_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_references_file.py -------------------------------------------------------------------------------- /tests/make_resizable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/make_resizable.py -------------------------------------------------------------------------------- /tests/test_attr_datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_attr_datatypes.py -------------------------------------------------------------------------------- /tests/test_buffer_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_buffer_issue.py -------------------------------------------------------------------------------- /tests/test_chunk_index_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_chunk_index_options.py -------------------------------------------------------------------------------- /tests/test_chunked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_chunked.py -------------------------------------------------------------------------------- /tests/test_compact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_compact.py -------------------------------------------------------------------------------- /tests/test_compound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_compound.py -------------------------------------------------------------------------------- /tests/test_compressed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_compressed.py -------------------------------------------------------------------------------- /tests/test_compressed_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_compressed_v1.py -------------------------------------------------------------------------------- /tests/test_consolidated_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_consolidated_metadata.py -------------------------------------------------------------------------------- /tests/test_dataset_datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_dataset_datatypes.py -------------------------------------------------------------------------------- /tests/test_dataset_multidim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_dataset_multidim.py -------------------------------------------------------------------------------- /tests/test_dim_scales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_dim_scales.py -------------------------------------------------------------------------------- /tests/test_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_dump.py -------------------------------------------------------------------------------- /tests/test_earliest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_earliest.py -------------------------------------------------------------------------------- /tests/test_enum_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_enum_var.py -------------------------------------------------------------------------------- /tests/test_file_like.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_file_like.py -------------------------------------------------------------------------------- /tests/test_fillvalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_fillvalue.py -------------------------------------------------------------------------------- /tests/test_filter_pipeline_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_filter_pipeline_v2.py -------------------------------------------------------------------------------- /tests/test_fletcher32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_fletcher32.py -------------------------------------------------------------------------------- /tests/test_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_groups.py -------------------------------------------------------------------------------- /tests/test_h5d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_h5d.py -------------------------------------------------------------------------------- /tests/test_h5netcdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_h5netcdf.py -------------------------------------------------------------------------------- /tests/test_high_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_high_level.py -------------------------------------------------------------------------------- /tests/test_issue23_nc_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_issue23_nc_attrs.py -------------------------------------------------------------------------------- /tests/test_latest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_latest.py -------------------------------------------------------------------------------- /tests/test_lazy_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_lazy_variables.py -------------------------------------------------------------------------------- /tests/test_mock_s3fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_mock_s3fs.py -------------------------------------------------------------------------------- /tests/test_netcd4_classic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_netcd4_classic.py -------------------------------------------------------------------------------- /tests/test_new_style_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_new_style_groups.py -------------------------------------------------------------------------------- /tests/test_opaque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_opaque.py -------------------------------------------------------------------------------- /tests/test_p5ncdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_p5ncdump.py -------------------------------------------------------------------------------- /tests/test_pseudochunking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_pseudochunking.py -------------------------------------------------------------------------------- /tests/test_reference_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_reference_list.py -------------------------------------------------------------------------------- /tests/test_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_references.py -------------------------------------------------------------------------------- /tests/test_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_repr.py -------------------------------------------------------------------------------- /tests/test_resizable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_resizable.py -------------------------------------------------------------------------------- /tests/test_threadsafe_data_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_threadsafe_data_access.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_version.py -------------------------------------------------------------------------------- /tests/test_visit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_visit.py -------------------------------------------------------------------------------- /tests/test_vlen_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAS-CMS/pyfive/HEAD/tests/test_vlen_str.py --------------------------------------------------------------------------------