human-friendly-pedantic-timedelta


Namehuman-friendly-pedantic-timedelta JSON
Version 2.0.14 PyPI version JSON
download
home_page
SummaryHuman-friendly Pedantic `timedelta`
upload_time2023-12-28 05:02:24
maintainerTally Bark LLC
docs_urlNone
authorLandon Bouma
requires_python>=3.8.1,<4.0.0
licenseMIT
keywords timedelta elapsed time duration human friendly string formatter
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            #####################################
Human-Friendly Pedantic ``timedelta``
#####################################

.. CXREF:
   https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/adding-a-workflow-status-badge

.. image:: https://github.com/doblabs/human-friendly_pedantic-timedelta/actions/workflows/checks-unspecial.yml/badge.svg?branch=release
  :target: https://github.com/doblabs/human-friendly_pedantic-timedelta/actions/workflows/checks-unspecial.yml/badge.svg?branch=release
  :alt: Build Status

.. CXREF: https://app.codecov.io/gh/doblabs/human-friendly_pedantic-timedelta/settings/badge

.. image:: https://codecov.io/gh/doblabs/human-friendly_pedantic-timedelta/graph/badge.svg?token=NKL19HdM5o
  :target: https://codecov.io/gh/doblabs/human-friendly_pedantic-timedelta
  :alt: Coverage Status

.. image:: https://readthedocs.org/projects/human-friendly_pedantic-timedelta/badge/?version=latest
  :target: https://human-friendly_pedantic-timedelta.readthedocs.io/en/latest/
  :alt: Documentation Status

.. image:: https://img.shields.io/github/v/release/doblabs/human-friendly_pedantic-timedelta.svg?style=flat
  :target: https://github.com/doblabs/human-friendly_pedantic-timedelta/releases
  :alt: GitHub Release Status

.. image:: https://img.shields.io/pypi/v/human-friendly_pedantic-timedelta.svg
  :target: https://pypi.org/project/human-friendly_pedantic-timedelta/
  :alt: PyPI Release Status

.. image:: https://img.shields.io/pypi/pyversions/human-friendly_pedantic-timedelta.svg
  :target: https://pypi.org/project/human-friendly_pedantic-timedelta/
  :alt: PyPI Supported Python Versions

.. image:: https://img.shields.io/github/license/doblabs/human-friendly_pedantic-timedelta.svg?style=flat
  :target: https://github.com/doblabs/human-friendly_pedantic-timedelta/blob/release/LICENSE
  :alt: License Status

A Python ``timedelta`` wrapper which provides pedantic string formatting.

Install with ``pip``::

    pip3 install human-friendly_pedantic-timedelta

For more options, read the
`installation guide
<https://human-friendly-pedantic-timedelta.readthedocs.io/en/latest/installation.html>`__.

Simple example::

    $ python3
    >>> from pedantic_timedelta import PedanticTimedelta
    >>> PedanticTimedelta(days=0.33).time_format_scaled()
    # OUTPUT
    # ('7.92 hours', 3600.0, 'hour')

|

.. image:: https://raw.githubusercontent.com/hotoffthehamster/human-friendly_pedantic-timedelta/release/docs/assets/hfpt-logo-lrg.png
   :target: https://human-friendly-pedantic-timedelta.readthedocs.io/en/latest/authors.html#graphics-shout-out
   :align: center
   :alt: "Penrose Hourglass"



            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "human-friendly-pedantic-timedelta",
    "maintainer": "Tally Bark LLC",
    "docs_url": null,
    "requires_python": ">=3.8.1,<4.0.0",
    "maintainer_email": "doblabs@tallybark.com",
    "keywords": "timedelta,elapsed,time,duration,human,friendly,string,formatter",
    "author": "Landon Bouma",
    "author_email": "doblabs@tallybark.com",
    "download_url": "https://files.pythonhosted.org/packages/18/60/b6ea2236eef52327d47af0470a83517630ef97b41972c1b5639eb3ddd383/human_friendly_pedantic_timedelta-2.0.14.tar.gz",
    "platform": null,
    "description": "#####################################\nHuman-Friendly Pedantic ``timedelta``\n#####################################\n\n.. CXREF:\n   https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/adding-a-workflow-status-badge\n\n.. image:: https://github.com/doblabs/human-friendly_pedantic-timedelta/actions/workflows/checks-unspecial.yml/badge.svg?branch=release\n  :target: https://github.com/doblabs/human-friendly_pedantic-timedelta/actions/workflows/checks-unspecial.yml/badge.svg?branch=release\n  :alt: Build Status\n\n.. CXREF: https://app.codecov.io/gh/doblabs/human-friendly_pedantic-timedelta/settings/badge\n\n.. image:: https://codecov.io/gh/doblabs/human-friendly_pedantic-timedelta/graph/badge.svg?token=NKL19HdM5o\n  :target: https://codecov.io/gh/doblabs/human-friendly_pedantic-timedelta\n  :alt: Coverage Status\n\n.. image:: https://readthedocs.org/projects/human-friendly_pedantic-timedelta/badge/?version=latest\n  :target: https://human-friendly_pedantic-timedelta.readthedocs.io/en/latest/\n  :alt: Documentation Status\n\n.. image:: https://img.shields.io/github/v/release/doblabs/human-friendly_pedantic-timedelta.svg?style=flat\n  :target: https://github.com/doblabs/human-friendly_pedantic-timedelta/releases\n  :alt: GitHub Release Status\n\n.. image:: https://img.shields.io/pypi/v/human-friendly_pedantic-timedelta.svg\n  :target: https://pypi.org/project/human-friendly_pedantic-timedelta/\n  :alt: PyPI Release Status\n\n.. image:: https://img.shields.io/pypi/pyversions/human-friendly_pedantic-timedelta.svg\n  :target: https://pypi.org/project/human-friendly_pedantic-timedelta/\n  :alt: PyPI Supported Python Versions\n\n.. image:: https://img.shields.io/github/license/doblabs/human-friendly_pedantic-timedelta.svg?style=flat\n  :target: https://github.com/doblabs/human-friendly_pedantic-timedelta/blob/release/LICENSE\n  :alt: License Status\n\nA Python ``timedelta`` wrapper which provides pedantic string formatting.\n\nInstall with ``pip``::\n\n    pip3 install human-friendly_pedantic-timedelta\n\nFor more options, read the\n`installation guide\n<https://human-friendly-pedantic-timedelta.readthedocs.io/en/latest/installation.html>`__.\n\nSimple example::\n\n    $ python3\n    >>> from pedantic_timedelta import PedanticTimedelta\n    >>> PedanticTimedelta(days=0.33).time_format_scaled()\n    # OUTPUT\n    # ('7.92 hours', 3600.0, 'hour')\n\n|\n\n.. image:: https://raw.githubusercontent.com/hotoffthehamster/human-friendly_pedantic-timedelta/release/docs/assets/hfpt-logo-lrg.png\n   :target: https://human-friendly-pedantic-timedelta.readthedocs.io/en/latest/authors.html#graphics-shout-out\n   :align: center\n   :alt: \"Penrose Hourglass\"\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Human-friendly Pedantic `timedelta`",
    "version": "2.0.14",
    "project_urls": {
        "documentation": "https://human-friendly_pedantic-timedelta.readthedocs.io/en/latest",
        "download": "https://pypi.org/project/human-friendly_pedantic-timedelta/#files",
        "history": "https://github.com/doblabs/human-friendly_pedantic-timedelta/blob/release/HISTORY.rst",
        "homepage": "https://github.com/doblabs/human-friendly_pedantic-timedelta",
        "issues": "https://github.com/doblabs/human-friendly_pedantic-timedelta/issues"
    },
    "split_keywords": [
        "timedelta",
        "elapsed",
        "time",
        "duration",
        "human",
        "friendly",
        "string",
        "formatter"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01c2231a5ce70cd98f6357ac45d6c6c12d282578ee8da07a9e8f5a30c4ee1d89",
                "md5": "a30018e8446da41e6670505e88eca572",
                "sha256": "5119aef4775c6b57995feaf37d326e262ae767171afd2f4e29d38b2abe369c0f"
            },
            "downloads": -1,
            "filename": "human_friendly_pedantic_timedelta-2.0.14-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a30018e8446da41e6670505e88eca572",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1,<4.0.0",
            "size": 8472,
            "upload_time": "2023-12-28T05:02:22",
            "upload_time_iso_8601": "2023-12-28T05:02:22.530219Z",
            "url": "https://files.pythonhosted.org/packages/01/c2/231a5ce70cd98f6357ac45d6c6c12d282578ee8da07a9e8f5a30c4ee1d89/human_friendly_pedantic_timedelta-2.0.14-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1860b6ea2236eef52327d47af0470a83517630ef97b41972c1b5639eb3ddd383",
                "md5": "eb2d05a7ed04e9844c32618c68ac2d2b",
                "sha256": "11f88881f9b7497152681d0e01dfd8ed96a7905c8221e81a3166111b8b99df62"
            },
            "downloads": -1,
            "filename": "human_friendly_pedantic_timedelta-2.0.14.tar.gz",
            "has_sig": false,
            "md5_digest": "eb2d05a7ed04e9844c32618c68ac2d2b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8.1,<4.0.0",
            "size": 30646,
            "upload_time": "2023-12-28T05:02:24",
            "upload_time_iso_8601": "2023-12-28T05:02:24.227798Z",
            "url": "https://files.pythonhosted.org/packages/18/60/b6ea2236eef52327d47af0470a83517630ef97b41972c1b5639eb3ddd383/human_friendly_pedantic_timedelta-2.0.14.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-28 05:02:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "doblabs",
    "github_project": "human-friendly_pedantic-timedelta",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "human-friendly-pedantic-timedelta"
}
        
Elapsed time: 0.16534s