h5io


Nameh5io JSON
Version 0.2.0 PyPI version JSON
download
home_pagehttp://h5io.github.io
SummaryPython Objects Onto HDF5
upload_time2024-01-02 19:53:04
maintainerEric Larson
docs_urlNone
author
requires_python>=3.7
licenseBSD (3-clause)
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            .. -*- mode: rst -*-

|Travis|_ |Appveyor|_ |Codecov|_

.. |Travis| image:: https://api.travis-ci.org/h5io/h5io.png?branch=main
.. _Travis: https://travis-ci.org/h5io/h5io

.. |Appveyor| image:: https://ci.appveyor.com/api/projects/status/puwaarmllxq5wfvm?svg=true
.. _Appveyor: https://ci.appveyor.com/project/larsoner/h5io/branch/main

.. |Codecov| image:: https://codecov.io/gh/h5io/h5io/branch/main/graph/badge.svg
.. _Codecov: https://codecov.io/gh/h5io/h5io

`h5io <http://h5io.github.io>`_
=======================================================

h5io is a package designed to facilitate saving some standard Python
objects into the forward-compatible HDF5 format. It is a higher-level
package than ``h5py``.

Get the latest code
^^^^^^^^^^^^^^^^^^^

To get the latest code using git, simply type::

    git clone git://github.com/h5io/h5io.git

If you don't have git installed, you can download a zip or tarball
of the latest code: https://github.com/h5io/h5io/archives/main

Install h5io
^^^^^^^^^^^^

As any Python packages, to install h5io, go in the source code directory
and do::

    python setup.py install

or if you don't have admin access to your python setup (permission denied
when install) use::

    python setup.py install --user

You can also install the latest release version with pip::

    pip install h5io --upgrade

or for the latest development version (the most up to date)::

    pip install -e git+https://github.com/h5io/h5io#egg=h5io-dev --user

Dependencies
^^^^^^^^^^^^

The required dependencies to build the software are ``h5py`` and ``numpy``.
``scipy`` is required for sparse matrix IO support.

Licensing
^^^^^^^^^

h5io is **BSD-licenced** (3 clause):

    This software is OSI Certified Open Source Software.
    OSI Certified is a certification mark of the Open Source Initiative.

    Copyright (c) 2011, authors of h5io
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.

    * Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.

    * Neither the names of h5io authors nor the names of any
      contributors may be used to endorse or promote products derived from
      this software without specific prior written permission.

    **This software is provided by the copyright holders and contributors
    "as is" and any express or implied warranties, including, but not
    limited to, the implied warranties of merchantability and fitness for
    a particular purpose are disclaimed. In no event shall the copyright
    owner or contributors be liable for any direct, indirect, incidental,
    special, exemplary, or consequential damages (including, but not
    limited to, procurement of substitute goods or services; loss of use,
    data, or profits; or business interruption) however caused and on any
    theory of liability, whether in contract, strict liability, or tort
    (including negligence or otherwise) arising in any way out of the use
    of this software, even if advised of the possibility of such
    damage.**

            

Raw data

            {
    "_id": null,
    "home_page": "http://h5io.github.io",
    "name": "h5io",
    "maintainer": "Eric Larson",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "larson.eric.d@gmail.com",
    "keywords": "",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/02/59/8db92e99d55fbafbcfd84d5429700d592fdf7df1d535345a9082dbf364d5/h5io-0.2.0.tar.gz",
    "platform": "any",
    "description": ".. -*- mode: rst -*-\n\n|Travis|_ |Appveyor|_ |Codecov|_\n\n.. |Travis| image:: https://api.travis-ci.org/h5io/h5io.png?branch=main\n.. _Travis: https://travis-ci.org/h5io/h5io\n\n.. |Appveyor| image:: https://ci.appveyor.com/api/projects/status/puwaarmllxq5wfvm?svg=true\n.. _Appveyor: https://ci.appveyor.com/project/larsoner/h5io/branch/main\n\n.. |Codecov| image:: https://codecov.io/gh/h5io/h5io/branch/main/graph/badge.svg\n.. _Codecov: https://codecov.io/gh/h5io/h5io\n\n`h5io <http://h5io.github.io>`_\n=======================================================\n\nh5io is a package designed to facilitate saving some standard Python\nobjects into the forward-compatible HDF5 format. It is a higher-level\npackage than ``h5py``.\n\nGet the latest code\n^^^^^^^^^^^^^^^^^^^\n\nTo get the latest code using git, simply type::\n\n    git clone git://github.com/h5io/h5io.git\n\nIf you don't have git installed, you can download a zip or tarball\nof the latest code: https://github.com/h5io/h5io/archives/main\n\nInstall h5io\n^^^^^^^^^^^^\n\nAs any Python packages, to install h5io, go in the source code directory\nand do::\n\n    python setup.py install\n\nor if you don't have admin access to your python setup (permission denied\nwhen install) use::\n\n    python setup.py install --user\n\nYou can also install the latest release version with pip::\n\n    pip install h5io --upgrade\n\nor for the latest development version (the most up to date)::\n\n    pip install -e git+https://github.com/h5io/h5io#egg=h5io-dev --user\n\nDependencies\n^^^^^^^^^^^^\n\nThe required dependencies to build the software are ``h5py`` and ``numpy``.\n``scipy`` is required for sparse matrix IO support.\n\nLicensing\n^^^^^^^^^\n\nh5io is **BSD-licenced** (3 clause):\n\n    This software is OSI Certified Open Source Software.\n    OSI Certified is a certification mark of the Open Source Initiative.\n\n    Copyright (c) 2011, authors of h5io\n    All rights reserved.\n\n    Redistribution and use in source and binary forms, with or without\n    modification, are permitted provided that the following conditions are met:\n\n    * Redistributions of source code must retain the above copyright notice,\n      this list of conditions and the following disclaimer.\n\n    * Redistributions in binary form must reproduce the above copyright notice,\n      this list of conditions and the following disclaimer in the documentation\n      and/or other materials provided with the distribution.\n\n    * Neither the names of h5io authors nor the names of any\n      contributors may be used to endorse or promote products derived from\n      this software without specific prior written permission.\n\n    **This software is provided by the copyright holders and contributors\n    \"as is\" and any express or implied warranties, including, but not\n    limited to, the implied warranties of merchantability and fitness for\n    a particular purpose are disclaimed. In no event shall the copyright\n    owner or contributors be liable for any direct, indirect, incidental,\n    special, exemplary, or consequential damages (including, but not\n    limited to, procurement of substitute goods or services; loss of use,\n    data, or profits; or business interruption) however caused and on any\n    theory of liability, whether in contract, strict liability, or tort\n    (including negligence or otherwise) arising in any way out of the use\n    of this software, even if advised of the possibility of such\n    damage.**\n",
    "bugtrack_url": null,
    "license": "BSD (3-clause)",
    "summary": "Python Objects Onto HDF5",
    "version": "0.2.0",
    "project_urls": {
        "Download": "http://github.com/h5io/h5io",
        "Homepage": "http://h5io.github.io"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "967bcbd98caca25bb9d5c2510cc5df8f8fa3d69d2e8ccc040c4a868a6d0d0127",
                "md5": "46c46fe0b83e522bc64c3b088908324b",
                "sha256": "4845b4d5455c8f79987b5783baede71b3a956f4884caf760065fcd9491eb86d0"
            },
            "downloads": -1,
            "filename": "h5io-0.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "46c46fe0b83e522bc64c3b088908324b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 14983,
            "upload_time": "2024-01-02T19:53:02",
            "upload_time_iso_8601": "2024-01-02T19:53:02.099333Z",
            "url": "https://files.pythonhosted.org/packages/96/7b/cbd98caca25bb9d5c2510cc5df8f8fa3d69d2e8ccc040c4a868a6d0d0127/h5io-0.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02598db92e99d55fbafbcfd84d5429700d592fdf7df1d535345a9082dbf364d5",
                "md5": "c43d26fdbf410f51e29edd4575f52d3c",
                "sha256": "a9f74483c51a6a97446bee0e6988def6cf17dfe1a382c3a254966a5328c27d9f"
            },
            "downloads": -1,
            "filename": "h5io-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "c43d26fdbf410f51e29edd4575f52d3c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 16319,
            "upload_time": "2024-01-02T19:53:04",
            "upload_time_iso_8601": "2024-01-02T19:53:04.076212Z",
            "url": "https://files.pythonhosted.org/packages/02/59/8db92e99d55fbafbcfd84d5429700d592fdf7df1d535345a9082dbf364d5/h5io-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-02 19:53:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "h5io",
    "github_project": "h5io",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "h5io"
}
        
Elapsed time: 0.29677s