{"id":15569445,"url":"https://github.com/johnthagen/exitstatus","last_synced_at":"2025-05-08T20:48:56.187Z","repository":{"id":46209199,"uuid":"60876298","full_name":"johnthagen/exitstatus","owner":"johnthagen","description":":door: POSIX exit status definitions for Python","archived":false,"fork":false,"pushed_at":"2024-10-26T19:04:35.000Z","size":39,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-21T20:17:08.820Z","etag":null,"topics":["exit","posix","python","python3"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/exitstatus/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/johnthagen.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-06-10T20:53:39.000Z","updated_at":"2024-10-26T19:02:57.000Z","dependencies_parsed_at":"2023-01-21T05:17:35.364Z","dependency_job_id":"32299d1f-957f-479c-9b06-65f25534e3df","html_url":"https://github.com/johnthagen/exitstatus","commit_stats":{"total_commits":46,"total_committers":2,"mean_commits":23.0,"dds":"0.28260869565217395","last_synced_commit":"dbf3bb1b2abd624d2519f4d38559380fc157105d"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnthagen%2Fexitstatus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnthagen%2Fexitstatus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnthagen%2Fexitstatus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnthagen%2Fexitstatus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/johnthagen","download_url":"https://codeload.github.com/johnthagen/exitstatus/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253149321,"owners_count":21861716,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["exit","posix","python","python3"],"created_at":"2024-10-02T17:29:03.039Z","updated_at":"2025-05-08T20:48:56.157Z","avatar_url":"https://github.com/johnthagen.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"``exitstatus`` - POSIX exit status definitions\n==============================================\n\n.. image:: https://github.com/johnthagen/exitstatus/workflows/python/badge.svg\n    :target: https://github.com/johnthagen/exitstatus/actions\n\n.. image:: https://codeclimate.com/github/johnthagen/exitstatus/badges/gpa.svg\n   :target: https://codeclimate.com/github/johnthagen/exitstatus/\n\n.. image:: https://codeclimate.com/github/johnthagen/exitstatus/badges/issue_count.svg\n   :target: https://codeclimate.com/github/johnthagen/exitstatus/\n\n.. image:: https://codecov.io/github/johnthagen/exitstatus/coverage.svg\n    :target: https://codecov.io/github/johnthagen/exitstatus/\n\n.. image:: https://img.shields.io/pypi/v/exitstatus.svg\n    :target: https://pypi.python.org/pypi/exitstatus/\n\n.. image:: https://img.shields.io/pypi/status/exitstatus.svg\n    :target: https://pypi.python.org/pypi/exitstatus/\n\n.. image:: https://img.shields.io/pypi/pyversions/exitstatus.svg\n    :target: https://pypi.python.org/pypi/exitstatus/\n\n``exitstatus`` provides expressive, portable definitions for the\n`standard POSIX exit codes \u003chttps://www.gnu.org/software/libc/manual/html_node/Exit-Status.html\u003e`__.\nWhile Python does provide some Unix-specific exit status codes in the\n`os module \u003chttps://docs.python.org/3/library/os.html#os._exit\u003e`__, they are not portable to\nall platforms and are missing the generic failure case.\n\n\nInstallation\n------------\n\nYou can install, upgrade, and uninstall ``exitstatus`` with these commands:\n\n.. code:: shell-session\n\n    $ pip install exitstatus\n    $ pip install --upgrade exitstatus\n    $ pip uninstall exitstatus\n\nUsage\n-----\n\nExit status codes are defined in a simple to use\n`IntEnum \u003chttps://docs.python.org/3/library/enum.html#enum.IntEnum\u003e`__.\n\n.. code:: python\n\n    import sys\n    from exitstatus import ExitStatus\n\n    sys.exit(ExitStatus.success)\n\nReleases\n--------\n\n2.6.0 (2024-10-26)\n^^^^^^^^^^^^^^^^^^\n\n- Drop support for Python 3.8\n- Add support for Python 3.13\n\n2.5.0 (2024-01-13)\n^^^^^^^^^^^^^^^^^^\n\n- Add support for Python 3.12\n\n2.4.0 (2023-04-30)\n^^^^^^^^^^^^^^^^^^\n\n- Add support for Python 3.11\n\n2.3.0 2022-11-02\n^^^^^^^^^^^^^^^^\n\n- Add ``py.typed`` file to package to support Mypy type checking.\n- Refactor the project into an installable package rather than an installable module.\n- Drop support for Python 3.7\n\n2.2.0 2021-11-06\n^^^^^^^^^^^^^^^^\n\n- Support Python 3.10 and drop 3.6.\n\n2.1.0 2020-12-27\n^^^^^^^^^^^^^^^^\n\n- Drop Python 3.5 and support Python 3.9.\n- Switch to GitHub Actions for CI.\n\n2.0.1 2020-04-26\n^^^^^^^^^^^^^^^^\n\n- Update LICENSE file.\n\n2.0.0 2020-03-29\n^^^^^^^^^^^^^^^^\n\n- Drop Python 2.7 support.\n\n1.4.1 2020-03-29\n^^^^^^^^^^^^^^^^\n\n- Add ``python_requires`` field to ``setup.py``.\n\n1.4.0 2019-12-14\n^^^^^^^^^^^^^^^^\n\n- Drop Python 3.4 and support Python 3.8.\n- Include license file.\n\n1.3.0 - 2018-07-09\n^^^^^^^^^^^^^^^^^^\n\nDrop Python 3.3 and support Python 3.7.\n\n1.2.0 - 2016-12-31\n^^^^^^^^^^^^^^^^^^\n\nSupport Python 3.6.\n\n1.1.0 - 2016-10-11\n^^^^^^^^^^^^^^^^^^\n\nAdd docstrings and simplify checking for ``enum34`` dependency need.\n\n1.0.0 - 2016-06-10\n^^^^^^^^^^^^^^^^^^\n\nInitial release.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnthagen%2Fexitstatus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjohnthagen%2Fexitstatus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnthagen%2Fexitstatus/lists"}