kalasiris


Namekalasiris JSON
Version 1.9.1 PyPI version JSON
download
home_pagehttps://github.com/rbeyer/kalasiris
SummaryA Python library to wrap functions and functionality for the Integrated Software for Imagers and Spectrometers (ISIS).
upload_time2021-07-05 23:26:58
maintainer
docs_urlNone
authorRoss A. Beyer
requires_python
licenseBSD-3-Clause License
keywords kalasiris
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            =========
kalasiris
=========

*Calling ISIS programs from Python*

---------------------------------

.. image:: https://img.shields.io/pypi/v/kalasiris.svg
        :target: https://pypi.python.org/pypi/kalasiris

.. image:: https://img.shields.io/conda/vn/conda-forge/kalasiris.svg
        :target: https://anaconda.org/conda-forge/kalasiris

.. image:: https://github.com/rbeyer/kalasiris/workflows/Python%20Testing/badge.svg
        :target: https://github.com/rbeyer/kalasiris/actions

.. image:: https://img.shields.io/circleci/project/github/conda-forge/kalasiris-feedstock/master.svg?label=noarch
        :target: https://circleci.com/gh/conda-forge/kalasiris-feedstock

.. image:: https://readthedocs.org/projects/kalasiris/badge/?version=latest
        :target: https://kalasiris.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status


.. image:: https://codecov.io/gh/rbeyer/kalasiris/branch/main/graph/badge.svg?token=TL5UZUQHRC
        :target: https://codecov.io/gh/rbeyer/kalasiris
        :alt: Codecov Status



The *kalasiris* library is a Python library to wrap functions and
functionality for the `Integrated Software for Imagers and Spectrometers
(ISIS) <https://isis.astrogeology.usgs.gov>`_.


* Free software: BSD-3-Clause License
* Documentation: https://kalasiris.readthedocs.io.


Features
--------

* Primarily a very lightweight wrapper around Python's subprocess
  module to allow easy calling of ISIS programs in the shell from
  within Python.
* Calling compatibility with pysis_ (and emulation of return types)
* Guaranteed to work with ISIS 3.6.0+, probably works with ISIS 3+
* Only guaranteed to work with Python 3.6.0+


ISIS
----

This library really only works if you already have ISIS_ installed and
working properly.  Quirks of working with where and how ISIS is loaded
in your environment and how to use kalasiris with it, can be found
in the documentation.


Citing in your work
-------------------

Beyer, R. A. 2020. Kalasiris, a Python Library for Calling ISIS
Programs. 51st Lunar and Planetary Science Conference, not held due
to COVID-19, Abstract #2441. `ADS URL
<https://ui.adsabs.harvard.edu/abs/2020LPI....51.2441B>`_


Quickstart
----------

Are you new to Python? Do you just want to write something 'real quick'
in Python and need to call some ISIS programs **now**?

We've got you covered.

Need to run an ISIS program like ``cam2map``::

    from kalasiris import cam2map

    fromcube = 'something.cub'
    tocube = 'something_mapped.cub'
    cam2map(fromcube, to=mapfile)

Easy! Assuming you have a ``something.cub`` file that can be
map-projected.  The first positional argument will be assumed to be
the "from" parameter, but you could also explicitly use ``from=fromcube``
here.

In addition to just calling *all* ISIS programs this way, you can do
other fun things like this::

    import kalasiris as isis

    img      = 'PSP_010502_2090_RED5_0.IMG'
    hicube   = 'PSP_010502_2090_RED5_0.cub'
    histfile = 'PSP_010502_2090_RED5_0.hist'

    isis.hi2isis(img, to=hicube)

    InsID = isis.getkey_k(hicub, 'Instrument', 'InstrumentId')
    print(InsID)
    # prints HIRISE

    isis.hist(hicube, to=histfile)

    h = isis.Histogram(histfile)

    print(h)
    # prints the hist file header info

    print(h['Std Deviation'])
    # prints 166.739

    print(h[1])
    # prints the second row of the histogram:
    # HistRow(DN=3924.0, Pixels=1.0, CumulativePixels=2.0, Percent=4.88281e-05, CumulativePercent=9.76563e-05)

    print(h[1][3])
    print(h[1].Percent)
    # both of the above print 4.88281e-05


You can see that there are things like the Histogram class,
the ``getkey_k()`` *_k function*, and much more.

Read the documentation for more: https://kalasiris.readthedocs.io


Installation
------------

You can install ``kalasiris`` via ``pip`` or ``conda-forge``:

To install ``kalasiris`` via ``pip``, run this command in your terminal:

.. code-block:: console

    $ pip install kalasiris

Installing ``kalasiris`` from the ``conda-forge`` channel can be
achieved by adding ``conda-forge`` to your channels with:

.. code-block:: console

    conda config --add channels conda-forge

Once the ``conda-forge`` channel has been enabled, ``kalasiris`` can be installed with:

.. code-block:: console

    conda install kalasiris

It is possible to list all of the versions of ``kalasiris`` available on your platform with:

.. code-block:: console

    conda search kalasiris --channel conda-forge


If for some reason you don't want to use conda or pip, you could do one of these
two things (but really, just use conda or pip):

The core functionality is contained in a single file.  Just go into the
``kalasiris`` directory, and copy the ``kalasiris.py``
file into the same directory where your own program is.  It doesn't
depend on anything that isn't already part of Python, so you can
just use it.

Just grabbing this one file gets you the ability to call ISIS
programs from your Python programs.  There are other parts of this
package that provide helper functions (like ``cubenormfile.writer``),
classes (like ``Histogram``), and syntactic sugar (the *_k functions*).
You don't get them by just grabbing ``kalasiris.py`` as described
above.

If you want *all* of the kalasiris library, but still don't want to
go through some formal installation process, you can clone this repo,
and then move (or copy) the whole ``kalasiris/`` directory (instead
of just the ``kalasiris.py`` file inside of it) to your project, and
then do the same thing as above, but now you can do more fun things.

However, installation via pip or conda is so easy, and you're installing
ISIS via conda already.

-------

This repository layout was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _ISIS: https://isis.astrogeology.usgs.gov
.. _pysis: https://github.com/wtolson/pysis
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage


=======
History
=======

All notable changes to this project will be documented in this file.

The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_,
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.

When updating this file, please add an entry for your change under
Unreleased_ and one of the following headings:

- Added - for new features.
- Changed - for changes in existing functionality.
- Deprecated - for soon-to-be removed features.
- Removed - for now removed features.
- Fixed - for any bug fixes.
- Security - in case of vulnerabilities.

If the heading does not yet exist under Unreleased_, then add it
as a 3rd level heading, underlined with pluses (see examples below).

When preparing for a public release add a new 2nd level heading,
underlined with dashes under Unreleased_ with the version number
and the release date, in year-month-day format (see examples below).

Unreleased
----------


1.9.1 (2021-07-04)
------------------

Changed
+++++++
* Testing now defaults to only running on mocks.
* Consolidated boolean that controls testing on "real files" to single place.
* Enabled GitHub Workflows for testing.

Fixed
+++++
* Bug in reserved parameter handling, such that only some reserved parameters
  that were given with two trailing underbars (_) would be converted to their
  appropriate "-key=value" form for ISIS.  This was true for "restore" for example,
  which was embarrassingly given in the documentation, but not tested!
* PathSet module documentation was missing the first letters of several words.


1.9.0 (2020-10-13)
------------------

Added
+++++
* Now supports the new ISISDATA environment variable, in addition to ISIS3DATA.

1.8.0 (2020-06-01)
------------------
* Added the ability to pass arguments to ``subprocess.run()`` for each ISIS program.
* The ISIS functions now automatically log with a level of INFO.
* Adopted Conventional Commits pattern (https://www.conventionalcommits.org/en/v1.0.0) for commit messages.
* Adopted Black formatting.
* Minor spelling and formatting improvements.

1.7.1 (2020-05-05)
------------------
* Corrected a readthedocs failure.

1.7.0 (2020-05-05)
------------------
* Added some functions to read table data from cube files.
* Added special pixel values via specialpixels.py (implemented
  as namedtuples instead of as dictionaries, as in pysis).
* Enabled Python 3.7 and 3.8 tests for tox.

1.6.0 (2020-04-12)
------------------
* Provided pysis return type and exception emulation.
* Switched from Apache 2 to the BSD-3-Clause license.


1.5.0 (2019-11-16)
------------------
* Did some documentation formatting.
* Streamlined the fromlist module.
* Put in a protection from accidentally adding a Path to a PathSet twice.


1.4.0 (2019-10-08)
------------------
* Added the fromlist module.


1.3.0 (2019-10-06)
------------------
* Added the cubeit_k() k_function.
* Added TravisCI tests for ISIS 3.8.1 and 3.9.0
* Separated tests into those that can run in-memory with mocking, and those that
  need the filesystem, and ISIS, etc.


1.2.0 (2019-10-04)
------------------
* Added a documentation section to help guide a user to choose between pysis and kalasiris.
* Improved the documentation for the version module a little.
* Added the stats_k() k_function.


1.1.0 (2019-06-19)
------------------

* Added the version module in order to query and retrieve ISIS version
  information from the ISIS system.
* Added TravisCI tests for ISIS 3.7.1


1.0.0 (2019-04-24)
------------------

* Removed cubenormDialect, and moved it to cubenormfile.Dialect
* Implemented cubenormfile.writer and cubenormfile.DictWriter, to
  write the fixed-width file format that ISIS cubenorm will actually read.

0.2.0 (2019-03-23)
------------------

* Implemented a new feature: the PathSet Class.
* Enabled installation via ``conda-forge``
* Updated some documentation.
* Fixed it so that the module documentation appears in readthedocs

0.1.2 (2019-03-04)
------------------

* Discovered a bug that made us platform-dependent.  Fixed.
* Made a variety of documentation improvements.
* Enabled and tested install via ``pip install``
* Enabled testing via tox
* Enabled testing via Travis CI

0.1.1 (2019-02-22)
------------------

* Jesse discovered that the code was incorrectly testing for
  executability of the ``$ISISROOT/bin/xml/*xml`` files instead of
  the ``$ISISROOT/bin/*`` program files, and issued a PR that
  fixed it.


0.1.0 (2019-02-20)
------------------

* Initial creation finished. Time to share.

0.0.0 (2019-02-12)
------------------

* Started project.


Version Numbering
-----------------

The kalasiris library follows the `Semantic Versioning 2.0.0
specification <https://semver.org>`_, such that released kalasiris
version numbers follow this pattern: ``{major}.{minor}.{patch}``.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/rbeyer/kalasiris",
    "name": "kalasiris",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "kalasiris",
    "author": "Ross A. Beyer",
    "author_email": "rbeyer@seti.org",
    "download_url": "https://files.pythonhosted.org/packages/c0/f0/6b2e8fc50c933ae0ba38abd03a8bc5fe05a04c1e81a9d4e3ea5b6e96a3a8/kalasiris-1.9.1.tar.gz",
    "platform": "",
    "description": "=========\nkalasiris\n=========\n\n*Calling ISIS programs from Python*\n\n---------------------------------\n\n.. image:: https://img.shields.io/pypi/v/kalasiris.svg\n        :target: https://pypi.python.org/pypi/kalasiris\n\n.. image:: https://img.shields.io/conda/vn/conda-forge/kalasiris.svg\n        :target: https://anaconda.org/conda-forge/kalasiris\n\n.. image:: https://github.com/rbeyer/kalasiris/workflows/Python%20Testing/badge.svg\n        :target: https://github.com/rbeyer/kalasiris/actions\n\n.. image:: https://img.shields.io/circleci/project/github/conda-forge/kalasiris-feedstock/master.svg?label=noarch\n        :target: https://circleci.com/gh/conda-forge/kalasiris-feedstock\n\n.. image:: https://readthedocs.org/projects/kalasiris/badge/?version=latest\n        :target: https://kalasiris.readthedocs.io/en/latest/?badge=latest\n        :alt: Documentation Status\n\n\n.. image:: https://codecov.io/gh/rbeyer/kalasiris/branch/main/graph/badge.svg?token=TL5UZUQHRC\n        :target: https://codecov.io/gh/rbeyer/kalasiris\n        :alt: Codecov Status\n\n\n\nThe *kalasiris* library is a Python library to wrap functions and\nfunctionality for the `Integrated Software for Imagers and Spectrometers\n(ISIS) <https://isis.astrogeology.usgs.gov>`_.\n\n\n* Free software: BSD-3-Clause License\n* Documentation: https://kalasiris.readthedocs.io.\n\n\nFeatures\n--------\n\n* Primarily a very lightweight wrapper around Python's subprocess\n  module to allow easy calling of ISIS programs in the shell from\n  within Python.\n* Calling compatibility with pysis_ (and emulation of return types)\n* Guaranteed to work with ISIS 3.6.0+, probably works with ISIS 3+\n* Only guaranteed to work with Python 3.6.0+\n\n\nISIS\n----\n\nThis library really only works if you already have ISIS_ installed and\nworking properly.  Quirks of working with where and how ISIS is loaded\nin your environment and how to use kalasiris with it, can be found\nin the documentation.\n\n\nCiting in your work\n-------------------\n\nBeyer, R. A. 2020. Kalasiris, a Python Library for Calling ISIS\nPrograms. 51st Lunar and Planetary Science Conference, not held due\nto COVID-19, Abstract #2441. `ADS URL\n<https://ui.adsabs.harvard.edu/abs/2020LPI....51.2441B>`_\n\n\nQuickstart\n----------\n\nAre you new to Python? Do you just want to write something 'real quick'\nin Python and need to call some ISIS programs **now**?\n\nWe've got you covered.\n\nNeed to run an ISIS program like ``cam2map``::\n\n    from kalasiris import cam2map\n\n    fromcube = 'something.cub'\n    tocube = 'something_mapped.cub'\n    cam2map(fromcube, to=mapfile)\n\nEasy! Assuming you have a ``something.cub`` file that can be\nmap-projected.  The first positional argument will be assumed to be\nthe \"from\" parameter, but you could also explicitly use ``from=fromcube``\nhere.\n\nIn addition to just calling *all* ISIS programs this way, you can do\nother fun things like this::\n\n    import kalasiris as isis\n\n    img      = 'PSP_010502_2090_RED5_0.IMG'\n    hicube   = 'PSP_010502_2090_RED5_0.cub'\n    histfile = 'PSP_010502_2090_RED5_0.hist'\n\n    isis.hi2isis(img, to=hicube)\n\n    InsID = isis.getkey_k(hicub, 'Instrument', 'InstrumentId')\n    print(InsID)\n    # prints HIRISE\n\n    isis.hist(hicube, to=histfile)\n\n    h = isis.Histogram(histfile)\n\n    print(h)\n    # prints the hist file header info\n\n    print(h['Std Deviation'])\n    # prints 166.739\n\n    print(h[1])\n    # prints the second row of the histogram:\n    # HistRow(DN=3924.0, Pixels=1.0, CumulativePixels=2.0, Percent=4.88281e-05, CumulativePercent=9.76563e-05)\n\n    print(h[1][3])\n    print(h[1].Percent)\n    # both of the above print 4.88281e-05\n\n\nYou can see that there are things like the Histogram class,\nthe ``getkey_k()`` *_k function*, and much more.\n\nRead the documentation for more: https://kalasiris.readthedocs.io\n\n\nInstallation\n------------\n\nYou can install ``kalasiris`` via ``pip`` or ``conda-forge``:\n\nTo install ``kalasiris`` via ``pip``, run this command in your terminal:\n\n.. code-block:: console\n\n    $ pip install kalasiris\n\nInstalling ``kalasiris`` from the ``conda-forge`` channel can be\nachieved by adding ``conda-forge`` to your channels with:\n\n.. code-block:: console\n\n    conda config --add channels conda-forge\n\nOnce the ``conda-forge`` channel has been enabled, ``kalasiris`` can be installed with:\n\n.. code-block:: console\n\n    conda install kalasiris\n\nIt is possible to list all of the versions of ``kalasiris`` available on your platform with:\n\n.. code-block:: console\n\n    conda search kalasiris --channel conda-forge\n\n\nIf for some reason you don't want to use conda or pip, you could do one of these\ntwo things (but really, just use conda or pip):\n\nThe core functionality is contained in a single file.  Just go into the\n``kalasiris`` directory, and copy the ``kalasiris.py``\nfile into the same directory where your own program is.  It doesn't\ndepend on anything that isn't already part of Python, so you can\njust use it.\n\nJust grabbing this one file gets you the ability to call ISIS\nprograms from your Python programs.  There are other parts of this\npackage that provide helper functions (like ``cubenormfile.writer``),\nclasses (like ``Histogram``), and syntactic sugar (the *_k functions*).\nYou don't get them by just grabbing ``kalasiris.py`` as described\nabove.\n\nIf you want *all* of the kalasiris library, but still don't want to\ngo through some formal installation process, you can clone this repo,\nand then move (or copy) the whole ``kalasiris/`` directory (instead\nof just the ``kalasiris.py`` file inside of it) to your project, and\nthen do the same thing as above, but now you can do more fun things.\n\nHowever, installation via pip or conda is so easy, and you're installing\nISIS via conda already.\n\n-------\n\nThis repository layout was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.\n\n.. _ISIS: https://isis.astrogeology.usgs.gov\n.. _pysis: https://github.com/wtolson/pysis\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n\n\n=======\nHistory\n=======\n\nAll notable changes to this project will be documented in this file.\n\nThe format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_,\nand this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.\n\nWhen updating this file, please add an entry for your change under\nUnreleased_ and one of the following headings:\n\n- Added - for new features.\n- Changed - for changes in existing functionality.\n- Deprecated - for soon-to-be removed features.\n- Removed - for now removed features.\n- Fixed - for any bug fixes.\n- Security - in case of vulnerabilities.\n\nIf the heading does not yet exist under Unreleased_, then add it\nas a 3rd level heading, underlined with pluses (see examples below).\n\nWhen preparing for a public release add a new 2nd level heading,\nunderlined with dashes under Unreleased_ with the version number\nand the release date, in year-month-day format (see examples below).\n\nUnreleased\n----------\n\n\n1.9.1 (2021-07-04)\n------------------\n\nChanged\n+++++++\n* Testing now defaults to only running on mocks.\n* Consolidated boolean that controls testing on \"real files\" to single place.\n* Enabled GitHub Workflows for testing.\n\nFixed\n+++++\n* Bug in reserved parameter handling, such that only some reserved parameters\n  that were given with two trailing underbars (_) would be converted to their\n  appropriate \"-key=value\" form for ISIS.  This was true for \"restore\" for example,\n  which was embarrassingly given in the documentation, but not tested!\n* PathSet module documentation was missing the first letters of several words.\n\n\n1.9.0 (2020-10-13)\n------------------\n\nAdded\n+++++\n* Now supports the new ISISDATA environment variable, in addition to ISIS3DATA.\n\n1.8.0 (2020-06-01)\n------------------\n* Added the ability to pass arguments to ``subprocess.run()`` for each ISIS program.\n* The ISIS functions now automatically log with a level of INFO.\n* Adopted Conventional Commits pattern (https://www.conventionalcommits.org/en/v1.0.0) for commit messages.\n* Adopted Black formatting.\n* Minor spelling and formatting improvements.\n\n1.7.1 (2020-05-05)\n------------------\n* Corrected a readthedocs failure.\n\n1.7.0 (2020-05-05)\n------------------\n* Added some functions to read table data from cube files.\n* Added special pixel values via specialpixels.py (implemented\n  as namedtuples instead of as dictionaries, as in pysis).\n* Enabled Python 3.7 and 3.8 tests for tox.\n\n1.6.0 (2020-04-12)\n------------------\n* Provided pysis return type and exception emulation.\n* Switched from Apache 2 to the BSD-3-Clause license.\n\n\n1.5.0 (2019-11-16)\n------------------\n* Did some documentation formatting.\n* Streamlined the fromlist module.\n* Put in a protection from accidentally adding a Path to a PathSet twice.\n\n\n1.4.0 (2019-10-08)\n------------------\n* Added the fromlist module.\n\n\n1.3.0 (2019-10-06)\n------------------\n* Added the cubeit_k() k_function.\n* Added TravisCI tests for ISIS 3.8.1 and 3.9.0\n* Separated tests into those that can run in-memory with mocking, and those that\n  need the filesystem, and ISIS, etc.\n\n\n1.2.0 (2019-10-04)\n------------------\n* Added a documentation section to help guide a user to choose between pysis and kalasiris.\n* Improved the documentation for the version module a little.\n* Added the stats_k() k_function.\n\n\n1.1.0 (2019-06-19)\n------------------\n\n* Added the version module in order to query and retrieve ISIS version\n  information from the ISIS system.\n* Added TravisCI tests for ISIS 3.7.1\n\n\n1.0.0 (2019-04-24)\n------------------\n\n* Removed cubenormDialect, and moved it to cubenormfile.Dialect\n* Implemented cubenormfile.writer and cubenormfile.DictWriter, to\n  write the fixed-width file format that ISIS cubenorm will actually read.\n\n0.2.0 (2019-03-23)\n------------------\n\n* Implemented a new feature: the PathSet Class.\n* Enabled installation via ``conda-forge``\n* Updated some documentation.\n* Fixed it so that the module documentation appears in readthedocs\n\n0.1.2 (2019-03-04)\n------------------\n\n* Discovered a bug that made us platform-dependent.  Fixed.\n* Made a variety of documentation improvements.\n* Enabled and tested install via ``pip install``\n* Enabled testing via tox\n* Enabled testing via Travis CI\n\n0.1.1 (2019-02-22)\n------------------\n\n* Jesse discovered that the code was incorrectly testing for\n  executability of the ``$ISISROOT/bin/xml/*xml`` files instead of\n  the ``$ISISROOT/bin/*`` program files, and issued a PR that\n  fixed it.\n\n\n0.1.0 (2019-02-20)\n------------------\n\n* Initial creation finished. Time to share.\n\n0.0.0 (2019-02-12)\n------------------\n\n* Started project.\n\n\nVersion Numbering\n-----------------\n\nThe kalasiris library follows the `Semantic Versioning 2.0.0\nspecification <https://semver.org>`_, such that released kalasiris\nversion numbers follow this pattern: ``{major}.{minor}.{patch}``.\n\n\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause License",
    "summary": "A Python library to wrap functions and functionality for the Integrated Software for Imagers and Spectrometers (ISIS).",
    "version": "1.9.1",
    "project_urls": {
        "Homepage": "https://github.com/rbeyer/kalasiris"
    },
    "split_keywords": [
        "kalasiris"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b4e00518e6b2b13f8ac3316b11cb4a80e3c239f4ad27c862cdbdf142ecb95bf",
                "md5": "ac828293a7102a18ee4cf6e5c4175c57",
                "sha256": "2c0bb29c2add4c24cfb2b27c7dbea713f23f94843fd1fa3c0697895f14f52361"
            },
            "downloads": -1,
            "filename": "kalasiris-1.9.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ac828293a7102a18ee4cf6e5c4175c57",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 28203,
            "upload_time": "2021-07-05T23:26:57",
            "upload_time_iso_8601": "2021-07-05T23:26:57.254798Z",
            "url": "https://files.pythonhosted.org/packages/7b/4e/00518e6b2b13f8ac3316b11cb4a80e3c239f4ad27c862cdbdf142ecb95bf/kalasiris-1.9.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0f06b2e8fc50c933ae0ba38abd03a8bc5fe05a04c1e81a9d4e3ea5b6e96a3a8",
                "md5": "9cc78db939b4a4a177c28760f0dcf8ee",
                "sha256": "afb6374f2d46ecb90a37d597fd2bbdbd9956a935f858d835ac75f3cb6462651d"
            },
            "downloads": -1,
            "filename": "kalasiris-1.9.1.tar.gz",
            "has_sig": false,
            "md5_digest": "9cc78db939b4a4a177c28760f0dcf8ee",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 53598,
            "upload_time": "2021-07-05T23:26:58",
            "upload_time_iso_8601": "2021-07-05T23:26:58.916462Z",
            "url": "https://files.pythonhosted.org/packages/c0/f0/6b2e8fc50c933ae0ba38abd03a8bc5fe05a04c1e81a9d4e3ea5b6e96a3a8/kalasiris-1.9.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2021-07-05 23:26:58",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rbeyer",
    "github_project": "kalasiris",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "kalasiris"
}
        
Elapsed time: 0.20193s