Metadata-Version: 2.0
Name: pyhdfview
Version: 0.1
Summary: A viewer for HDF5 files
Home-page: https://bitbucket.org/ssc/pyhdfview
Author: Stefan Scherfke
Author-email: stefan at sofa-rockers.org
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Scientific/Engineering
Requires-Dist: docopt (>=0.6.2)
Requires-Dist: h5py (>=2.3.1)
Requires-Dist: numpy (>=1.8.1)

PyHdfView
=========

A simple command line viewer for HDF5 files.

*NOTE:* This is still an early protype.


Usage
=====

List groups of a database:

.. code-block:: bash

   $ hv ../mosaik-hdf5/tests/data/testdb.hdf5
   List ../mosaik-hdf5/tests/data/testdb.hdf5:/
   • Relations

List sub-groups of a group:

.. code-block:: bash

   $ hv ../mosaik-hdf5/tests/data/testdb.hdf5:/Relations
   List ../mosaik-hdf5/tests/data/testdb.hdf5:/Relations
   • DB-0.hdf5db
   • Sim-0.0.0
   • Sim-1.0.0
   • Sim-1.0.1

Print dataset:

.. code-block:: bash

   $ hv ../mosaik-hdf5/tests/data/testdb.hdf5:/Relations/Sim-0.0.0
   Dataset ../mosaik-hdf5/tests/data/testdb.hdf5:/Relations/Sim-0.0.0
   [b'DB-0.hdf5db' b'Sim-1.0.0' b'Sim-1.0.1']

Print attributes:

.. code-block:: bash

   $ hv attrs ../mosaik-hdf5/tests/data/testdb.hdf5:/Relations/Sim-0.0.0
   Attributes of ../mosaik-hdf5/tests/data/testdb.hdf5:/Relations/Sim-0.0.0
   • spam: eggs
   •  foo: bar


ChangeLog for PyHdfView
=======================


0.1 – 2014-07-24
----------------

- Initial release. Currently it can:

  - list sub-groups of a file / group
  - print a dataset
  - print attributes


Authors
=======

PyHdfView has been developed by Stefan Scherfke.


