pystack


Namepystack JSON
Version 1.4.1 PyPI version JSON
download
home_pagehttps://github.com/bloomberg/pystack
SummaryAnalysis of the stack of remote python processes
upload_time2024-10-07 18:50:44
maintainerNone
docs_urlNone
authorPablo Galindo Salgado
requires_python>=3.7.0
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
<img src="https://user-images.githubusercontent.com/11718525/226942590-de015c9a-4d5b-4960-9c42-8c1eac0845c1.png" width="70%">
</p>

______________________________________________________________________

![OS Linux](https://img.shields.io/badge/OS-Linux-blue)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pystack)
![PyPI - Implementation](https://img.shields.io/pypi/implementation/pystack)
![PyPI](https://img.shields.io/pypi/v/pystack)
![PyPI - Downloads](https://img.shields.io/pypi/dm/pystack)
[![Tests](https://github.com/bloomberg/pystack/actions/workflows/build_wheels.yml/badge.svg)](https://github.com/bloomberg/pystack/actions/workflows/build_wheels.yml)
![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)

# PyStack

> Print the stack trace of a running Python process, or of a Python core dump.

PyStack is a tool that uses forbidden magic to let you inspect the stack frames of a running Python
process or a Python core dump, helping you quickly and easily learn what it's doing (or what it was
doing when it crashed) without having to interpret nasty CPython internals.

# What PyStack can do

PyStack has the following amazing features:

- ๐Ÿ’ป Works with both running processes and core dump files.
- ๐Ÿงต Shows if each thread currently holds the Python GIL, is waiting to acquire it, or is currently
  dropping it.
- ๐Ÿ—‘๏ธ Shows if a thread is running a garbage collection cycle.
- ๐Ÿ Optionally shows native function calls, as well as Python ones. In this mode, PyStack prints
  the native stack trace (C/C++/Rust function calls), except that the calls to Python callables are
  replaced with frames showing the Python code being executed, instead of showing the internal C
  code the interpreter used to make the call.
- ๐Ÿ” Automatically demangles symbols shown in the native stack.
- ๐Ÿ“ˆ Includes calls to inlined functions in the native stack whenever enough debug information is
  available.
- ๐Ÿ” Optionally shows the values of local variables and function arguments in Python stack frames.
- ๐Ÿ”’ Safe to use on running processes. PyStack does not modify any memory or execute any code in a
  process that is running. It simply attaches just long enough to read some of the process's
  memory.
- โšก Optionally, it can perform a Python stack analysis without pausing the process at all. This
  minimizes impact to the debugged process, at the cost of potentially failing due to data races.
- ๐Ÿš€ Super fast! It can analyze core files 10x faster than general-purpose tools like GDB.
- ๐ŸŽฏ Even works with aggressively optimized Python interpreter binaries.
- ๐Ÿ” Even works with Python interpreters' binaries that do not have symbols or debug information
  (Python stack only).
- ๐Ÿ’ฅ Tolerates memory corruption well. Even if the process crashed due to memory corruption,
  PyStack can usually reconstruct the stack.
- ๐Ÿ’ผ Self-contained: it does not depend on external tools or programs other than the Python
  interpreter used to run PyStack itself.

## What platforms are supported?

At this time only Linux is supported.

## Building from source

If you wish to build PyStack from source, you need the following binary dependencies in your
system:

- libdw
- libelf

Note that sometimes both libraries are provided together as part of a distribution's `elfutils`
package.

Check your package manager on how to install these dependencies (e.g.,
`apt-get install libdw-dev libelf-dev` in Debian-based systems). Note that you may need to tell the
compiler where to find the header and library files of the dependencies for the build to succeed.
If `pkg-config` is available (e.g. `apt-get install pkg-config` on Debian-based systems), it will
automatically be used to locate the libraries and configure the correct build flags.
Check your distribution's documentation to determine the location of the header and library files
or for more detailed information. When building on Alpine Linux (or any other distribution that
doesn't use glibc) you'll need elfutils 0.188 or newer. You may need to build this from source if
your distribution's package manager doesn't have it.

Once you have these binary dependencies installed, you can clone the repository and follow the
typical build process for Python libraries:

```shell
git clone git@github.com:bloomberg/pystack.git pystack
cd pystack
python3 -m venv ../pystack-env/  # just an example, put this wherever you want
source ../pystack-env/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install -e .
python3 -m pip install -r requirements-test.txt -r requirements-extra.txt
```

This will install PyStack in the virtual environment in development mode (the `-e` of the last
`pip install` command), and then install the Python libraries needed to test it, lint it, and
generate its documentation.

If you plan to contribute back, you should install the pre-commit hooks:

```shell
pre-commit install
```

This will ensure that your contribution passes our linting checks.

# Documentation

You can find the full documentation [here](https://bloomberg.github.io/pystack/).

# Usage

PyStack uses distinct subcommands for analyzing running processes and core dump files.

```shell
usage: pystack [-h] [-v] [--no-color] {remote,core} ...

Get Python stack trace of a remote process

options:
  -h, --help     show this help message and exit
  -v, --verbose
  --no-color     Deactivate colored output

commands:
  {remote,core}  What should be analyzed by PyStack (use <command> --help for a command-specific help section).
    remote       Analyze a remote process given its PID
    core         Analyze a core dump file given its location and the executable
```

## Analyzing running processes

The `remote` command is used to analyze the status of a running (remote) process. The analysis is
always done in a safe and non-intrusive way, as no code is loaded in the memory space of the
process under analysis and no memory is modified in the remote process. This makes analysis using
PyStack a great option even for those services and applications that are running in environments
where the running process must not be impacted in any way (other than being temporarily paused,
though `--no-block` can avoid even that). There are several options available:

```shell
usage: pystack remote [-h] [-v] [--no-color] [--no-block] [--native] [--native-all] [--locals] [--exhaustive] pid

positional arguments:
  pid            The PID of the remote process

options:
  -h, --help     show this help message and exit
  -v, --verbose
  --no-color     Deactivate colored output
  --no-block     do not block the process when inspecting its memory
  --native       Include the native (C) frames in the resulting stack trace
  --native-all   Include native (C) frames from threads not registered with the interpreter (implies --native)
  --locals       Show local variables for each frame in the stack trace
  --exhaustive   Use all possible methods to obtain the Python stack info (may be slow)
```

To use PyStack, you just need to provide the PID of the process:

```shell
$ pystack remote 112
Traceback for thread 112 [] (most recent call last):
    (Python) File "/test.py", line 17, in <module>
        first_func()
    (Python) File "/test.py", line 6, in first_func
        second_func()
    (Python) File "/test.py", line 10, in second_func
        third_func()
    (Python) File "/test.py", line 14, in third_func
        time.sleep(1000)
```

## Analyzing core dumps

The `core` subcommand is used to analyze the status of a core dump file. Analyzing core files is
very similar to analyzing processes but there are some differences, as the core file does not
contain the totality of the memory that was valid when the program was live. In most cases, this
makes no difference, as PyStack will try to adapt automatically. However, in some cases, you will
need to specify extra command line options to help PyStack locate the information it needs. When
analyzing cores, there are several options available:

```shell
usage: pystack core [-h] [-v] [--no-color] [--native] [--native-all] [--locals] [--exhaustive] [--lib-search-path LIB_SEARCH_PATH | --lib-search-root LIB_SEARCH_ROOT] core [executable]

positional arguments:
  core                  The path to the core file
  executable            (Optional) The path to the executable of the core file

options:
  -h, --help            show this help message and exit
  -v, --verbose
  --no-color            Deactivate colored output
  --native              Include the native (C) frames in the resulting stack trace
  --native-all          Include native (C) frames from threads not registered with the interpreter (implies --native)
  --locals              Show local variables for each frame in the stack trace
  --exhaustive          Use all possible methods to obtain the Python stack info (may be slow)
  --lib-search-path LIB_SEARCH_PATH
                        List of paths to search for shared libraries loaded in the core. Paths must be separated by the ':' character
  --lib-search-root LIB_SEARCH_ROOT
                        Root directory to search recursively for shared libraries loaded into the core.
```

In most cases, you just need to provide the location of the core to use PyStack with core dump
files:

```shell
$ pystack core ./the_core_file
Using executable found in the core file: /usr/bin/python3.8

Core file information:
state: t zombie: True niceness: 0
pid: 570 ppid: 1 sid: 1
uid: 0 gid: 0 pgrp: 570
executable: python3.8 arguments: python3.8

The process died due receiving signal SIGSTOP
Traceback for thread 570 [] (most recent call last):
    (Python) File "/test.py", line 19, in <module>
        first_func({1: None}, [1,2,3])
    (Python) File "/test.py", line 7, in first_func
        second_func(x, y)
    (Python) File "/test.py", line 12, in second_func
        third_func(x, y)
    (Python) File "/test.py", line 16, in third_func
        time.sleep(1000)
```

# License

PyStack is Apache-2.0 licensed, as found in the [LICENSE](LICENSE) file.

# Code of Conduct

- [Code of Conduct](https://github.com/bloomberg/.github/blob/main/CODE_OF_CONDUCT.md)

This project has adopted a Code of Conduct. If you have any concerns about the Code, or behavior
that you have experienced in the project, please contact us at opensource@bloomberg.net.

# Security Policy

- [Security Policy](https://github.com/bloomberg/pystack/security/policy)

If you believe you have identified a security vulnerability in this project, please send an email
to the project team at opensource@bloomberg.net, detailing the suspected issue and any methods
you've found to reproduce it.

Please do NOT open an issue in the GitHub repository, as we'd prefer to keep vulnerability reports
private until we've had an opportunity to review and address them.

# Contributing

We welcome your contributions to help us improve and extend this project!

Below you will find some basic steps required to be able to contribute to the project. If you have
any questions about this process or any other aspect of contributing to a Bloomberg open source
project, feel free to send an email to opensource@bloomberg.net and we'll get your questions
answered as quickly as we can.

## Contribution Licensing

Since this project is distributed under the terms of an [open source license](LICENSE),
contributions that you make are licensed under the same terms. For us to be able to accept your
contributions, we will need explicit confirmation from you that you are able and willing to provide
them under these terms, and the mechanism we use to do this is called a Developer's Certificate of
Origin [(DCO)](https://github.com/bloomberg/.github/blob/main/DCO.md). This is similar to the
process used by the Linux kernel, Samba, and many other major open source projects.

To participate under these terms, all that you must do is include a line like the following as the
last line of the commit message for each commit in your contribution:

```
Signed-Off-By: Random J. Developer <random@developer.example.org>
```

The simplest way to accomplish this is to add `-s` or `--signoff` to your `git commit` command.

You must use your real name (sorry, no pseudonyms, and no anonymous contributions).

## Steps

- Create an Issue, select 'Feature Request', and explain the proposed change.
- Follow the guidelines in the issue template presented to you.
- Submit the Issue.
- Submit a Pull Request and link it to the Issue by including "#<issue number>" in the Pull Request
  summary.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/bloomberg/pystack",
    "name": "pystack",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7.0",
    "maintainer_email": null,
    "keywords": null,
    "author": "Pablo Galindo Salgado",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/90/79/acbbaa978d3d0acd5faf17cc73a8915216d40a7d206479976be56013f484/pystack-1.4.1.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n<img src=\"https://user-images.githubusercontent.com/11718525/226942590-de015c9a-4d5b-4960-9c42-8c1eac0845c1.png\" width=\"70%\">\n</p>\n\n______________________________________________________________________\n\n![OS Linux](https://img.shields.io/badge/OS-Linux-blue)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pystack)\n![PyPI - Implementation](https://img.shields.io/pypi/implementation/pystack)\n![PyPI](https://img.shields.io/pypi/v/pystack)\n![PyPI - Downloads](https://img.shields.io/pypi/dm/pystack)\n[![Tests](https://github.com/bloomberg/pystack/actions/workflows/build_wheels.yml/badge.svg)](https://github.com/bloomberg/pystack/actions/workflows/build_wheels.yml)\n![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)\n\n# PyStack\n\n> Print the stack trace of a running Python process, or of a Python core dump.\n\nPyStack is a tool that uses forbidden magic to let you inspect the stack frames of a running Python\nprocess or a Python core dump, helping you quickly and easily learn what it's doing (or what it was\ndoing when it crashed) without having to interpret nasty CPython internals.\n\n# What PyStack can do\n\nPyStack has the following amazing features:\n\n- \ud83d\udcbb Works with both running processes and core dump files.\n- \ud83e\uddf5 Shows if each thread currently holds the Python GIL, is waiting to acquire it, or is currently\n  dropping it.\n- \ud83d\uddd1\ufe0f Shows if a thread is running a garbage collection cycle.\n- \ud83d\udc0d Optionally shows native function calls, as well as Python ones. In this mode, PyStack prints\n  the native stack trace (C/C++/Rust function calls), except that the calls to Python callables are\n  replaced with frames showing the Python code being executed, instead of showing the internal C\n  code the interpreter used to make the call.\n- \ud83d\udd0d Automatically demangles symbols shown in the native stack.\n- \ud83d\udcc8 Includes calls to inlined functions in the native stack whenever enough debug information is\n  available.\n- \ud83d\udd0d Optionally shows the values of local variables and function arguments in Python stack frames.\n- \ud83d\udd12 Safe to use on running processes. PyStack does not modify any memory or execute any code in a\n  process that is running. It simply attaches just long enough to read some of the process's\n  memory.\n- \u26a1 Optionally, it can perform a Python stack analysis without pausing the process at all. This\n  minimizes impact to the debugged process, at the cost of potentially failing due to data races.\n- \ud83d\ude80 Super fast! It can analyze core files 10x faster than general-purpose tools like GDB.\n- \ud83c\udfaf Even works with aggressively optimized Python interpreter binaries.\n- \ud83d\udd0d Even works with Python interpreters' binaries that do not have symbols or debug information\n  (Python stack only).\n- \ud83d\udca5 Tolerates memory corruption well. Even if the process crashed due to memory corruption,\n  PyStack can usually reconstruct the stack.\n- \ud83d\udcbc Self-contained: it does not depend on external tools or programs other than the Python\n  interpreter used to run PyStack itself.\n\n## What platforms are supported?\n\nAt this time only Linux is supported.\n\n## Building from source\n\nIf you wish to build PyStack from source, you need the following binary dependencies in your\nsystem:\n\n- libdw\n- libelf\n\nNote that sometimes both libraries are provided together as part of a distribution's `elfutils`\npackage.\n\nCheck your package manager on how to install these dependencies (e.g.,\n`apt-get install libdw-dev libelf-dev` in Debian-based systems). Note that you may need to tell the\ncompiler where to find the header and library files of the dependencies for the build to succeed.\nIf `pkg-config` is available (e.g. `apt-get install pkg-config` on Debian-based systems), it will\nautomatically be used to locate the libraries and configure the correct build flags.\nCheck your distribution's documentation to determine the location of the header and library files\nor for more detailed information. When building on Alpine Linux (or any other distribution that\ndoesn't use glibc) you'll need elfutils 0.188 or newer. You may need to build this from source if\nyour distribution's package manager doesn't have it.\n\nOnce you have these binary dependencies installed, you can clone the repository and follow the\ntypical build process for Python libraries:\n\n```shell\ngit clone git@github.com:bloomberg/pystack.git pystack\ncd pystack\npython3 -m venv ../pystack-env/  # just an example, put this wherever you want\nsource ../pystack-env/bin/activate\npython3 -m pip install --upgrade pip\npython3 -m pip install -e .\npython3 -m pip install -r requirements-test.txt -r requirements-extra.txt\n```\n\nThis will install PyStack in the virtual environment in development mode (the `-e` of the last\n`pip install` command), and then install the Python libraries needed to test it, lint it, and\ngenerate its documentation.\n\nIf you plan to contribute back, you should install the pre-commit hooks:\n\n```shell\npre-commit install\n```\n\nThis will ensure that your contribution passes our linting checks.\n\n# Documentation\n\nYou can find the full documentation [here](https://bloomberg.github.io/pystack/).\n\n# Usage\n\nPyStack uses distinct subcommands for analyzing running processes and core dump files.\n\n```shell\nusage: pystack [-h] [-v] [--no-color] {remote,core} ...\n\nGet Python stack trace of a remote process\n\noptions:\n  -h, --help     show this help message and exit\n  -v, --verbose\n  --no-color     Deactivate colored output\n\ncommands:\n  {remote,core}  What should be analyzed by PyStack (use <command> --help for a command-specific help section).\n    remote       Analyze a remote process given its PID\n    core         Analyze a core dump file given its location and the executable\n```\n\n## Analyzing running processes\n\nThe `remote` command is used to analyze the status of a running (remote) process. The analysis is\nalways done in a safe and non-intrusive way, as no code is loaded in the memory space of the\nprocess under analysis and no memory is modified in the remote process. This makes analysis using\nPyStack a great option even for those services and applications that are running in environments\nwhere the running process must not be impacted in any way (other than being temporarily paused,\nthough `--no-block` can avoid even that). There are several options available:\n\n```shell\nusage: pystack remote [-h] [-v] [--no-color] [--no-block] [--native] [--native-all] [--locals] [--exhaustive] pid\n\npositional arguments:\n  pid            The PID of the remote process\n\noptions:\n  -h, --help     show this help message and exit\n  -v, --verbose\n  --no-color     Deactivate colored output\n  --no-block     do not block the process when inspecting its memory\n  --native       Include the native (C) frames in the resulting stack trace\n  --native-all   Include native (C) frames from threads not registered with the interpreter (implies --native)\n  --locals       Show local variables for each frame in the stack trace\n  --exhaustive   Use all possible methods to obtain the Python stack info (may be slow)\n```\n\nTo use PyStack, you just need to provide the PID of the process:\n\n```shell\n$ pystack remote 112\nTraceback for thread 112 [] (most recent call last):\n    (Python) File \"/test.py\", line 17, in <module>\n        first_func()\n    (Python) File \"/test.py\", line 6, in first_func\n        second_func()\n    (Python) File \"/test.py\", line 10, in second_func\n        third_func()\n    (Python) File \"/test.py\", line 14, in third_func\n        time.sleep(1000)\n```\n\n## Analyzing core dumps\n\nThe `core` subcommand is used to analyze the status of a core dump file. Analyzing core files is\nvery similar to analyzing processes but there are some differences, as the core file does not\ncontain the totality of the memory that was valid when the program was live. In most cases, this\nmakes no difference, as PyStack will try to adapt automatically. However, in some cases, you will\nneed to specify extra command line options to help PyStack locate the information it needs. When\nanalyzing cores, there are several options available:\n\n```shell\nusage: pystack core [-h] [-v] [--no-color] [--native] [--native-all] [--locals] [--exhaustive] [--lib-search-path LIB_SEARCH_PATH | --lib-search-root LIB_SEARCH_ROOT] core [executable]\n\npositional arguments:\n  core                  The path to the core file\n  executable            (Optional) The path to the executable of the core file\n\noptions:\n  -h, --help            show this help message and exit\n  -v, --verbose\n  --no-color            Deactivate colored output\n  --native              Include the native (C) frames in the resulting stack trace\n  --native-all          Include native (C) frames from threads not registered with the interpreter (implies --native)\n  --locals              Show local variables for each frame in the stack trace\n  --exhaustive          Use all possible methods to obtain the Python stack info (may be slow)\n  --lib-search-path LIB_SEARCH_PATH\n                        List of paths to search for shared libraries loaded in the core. Paths must be separated by the ':' character\n  --lib-search-root LIB_SEARCH_ROOT\n                        Root directory to search recursively for shared libraries loaded into the core.\n```\n\nIn most cases, you just need to provide the location of the core to use PyStack with core dump\nfiles:\n\n```shell\n$ pystack core ./the_core_file\nUsing executable found in the core file: /usr/bin/python3.8\n\nCore file information:\nstate: t zombie: True niceness: 0\npid: 570 ppid: 1 sid: 1\nuid: 0 gid: 0 pgrp: 570\nexecutable: python3.8 arguments: python3.8\n\nThe process died due receiving signal SIGSTOP\nTraceback for thread 570 [] (most recent call last):\n    (Python) File \"/test.py\", line 19, in <module>\n        first_func({1: None}, [1,2,3])\n    (Python) File \"/test.py\", line 7, in first_func\n        second_func(x, y)\n    (Python) File \"/test.py\", line 12, in second_func\n        third_func(x, y)\n    (Python) File \"/test.py\", line 16, in third_func\n        time.sleep(1000)\n```\n\n# License\n\nPyStack is Apache-2.0 licensed, as found in the [LICENSE](LICENSE) file.\n\n# Code of Conduct\n\n- [Code of Conduct](https://github.com/bloomberg/.github/blob/main/CODE_OF_CONDUCT.md)\n\nThis project has adopted a Code of Conduct. If you have any concerns about the Code, or behavior\nthat you have experienced in the project, please contact us at opensource@bloomberg.net.\n\n# Security Policy\n\n- [Security Policy](https://github.com/bloomberg/pystack/security/policy)\n\nIf you believe you have identified a security vulnerability in this project, please send an email\nto the project team at opensource@bloomberg.net, detailing the suspected issue and any methods\nyou've found to reproduce it.\n\nPlease do NOT open an issue in the GitHub repository, as we'd prefer to keep vulnerability reports\nprivate until we've had an opportunity to review and address them.\n\n# Contributing\n\nWe welcome your contributions to help us improve and extend this project!\n\nBelow you will find some basic steps required to be able to contribute to the project. If you have\nany questions about this process or any other aspect of contributing to a Bloomberg open source\nproject, feel free to send an email to opensource@bloomberg.net and we'll get your questions\nanswered as quickly as we can.\n\n## Contribution Licensing\n\nSince this project is distributed under the terms of an [open source license](LICENSE),\ncontributions that you make are licensed under the same terms. For us to be able to accept your\ncontributions, we will need explicit confirmation from you that you are able and willing to provide\nthem under these terms, and the mechanism we use to do this is called a Developer's Certificate of\nOrigin [(DCO)](https://github.com/bloomberg/.github/blob/main/DCO.md). This is similar to the\nprocess used by the Linux kernel, Samba, and many other major open source projects.\n\nTo participate under these terms, all that you must do is include a line like the following as the\nlast line of the commit message for each commit in your contribution:\n\n```\nSigned-Off-By: Random J. Developer <random@developer.example.org>\n```\n\nThe simplest way to accomplish this is to add `-s` or `--signoff` to your `git commit` command.\n\nYou must use your real name (sorry, no pseudonyms, and no anonymous contributions).\n\n## Steps\n\n- Create an Issue, select 'Feature Request', and explain the proposed change.\n- Follow the guidelines in the issue template presented to you.\n- Submit the Issue.\n- Submit a Pull Request and link it to the Issue by including \"#<issue number>\" in the Pull Request\n  summary.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Analysis of the stack of remote python processes",
    "version": "1.4.1",
    "project_urls": {
        "Homepage": "https://github.com/bloomberg/pystack"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b23837e264ef0f152a026c707364a98ba3fd7c02105e3e9a0dee7bc1fee1ddf9",
                "md5": "b7699c7a48d289836b349db1608d77e6",
                "sha256": "47a44beb5a406e5dadc8397b845ff17975753e9e298787784aa40b996604940b"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b7699c7a48d289836b349db1608d77e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0",
            "size": 4854002,
            "upload_time": "2024-10-07T18:50:06",
            "upload_time_iso_8601": "2024-10-07T18:50:06.584561Z",
            "url": "https://files.pythonhosted.org/packages/b2/38/37e264ef0f152a026c707364a98ba3fd7c02105e3e9a0dee7bc1fee1ddf9/pystack-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11ad89fc0a4271515e35c5081b6282af9f8abc1e6dd0583005da8ea8cef28f1d",
                "md5": "4f9c9559276a82651fd2cdf6a4cf56c9",
                "sha256": "9449ea39dcf24b9460d09f7d9c95974d92aace5d23fb168eecd6c91843c34b63"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f9c9559276a82651fd2cdf6a4cf56c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0",
            "size": 4922448,
            "upload_time": "2024-10-07T18:50:08",
            "upload_time_iso_8601": "2024-10-07T18:50:08.978871Z",
            "url": "https://files.pythonhosted.org/packages/11/ad/89fc0a4271515e35c5081b6282af9f8abc1e6dd0583005da8ea8cef28f1d/pystack-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cd0d16d8cdb7aa9740219922213ba3924c9c816a9e2b103678f71e13df5bc4d",
                "md5": "e17167d4ad17b9140cb15a2fd328495e",
                "sha256": "fb7a002d2f2bdcca25b3cb442c6fbb120190308379c7255cd57aa4749bf51797"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e17167d4ad17b9140cb15a2fd328495e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0",
            "size": 6016841,
            "upload_time": "2024-10-07T18:50:11",
            "upload_time_iso_8601": "2024-10-07T18:50:11.158960Z",
            "url": "https://files.pythonhosted.org/packages/6c/d0/d16d8cdb7aa9740219922213ba3924c9c816a9e2b103678f71e13df5bc4d/pystack-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0936481daa6efc741f3674b006fae1604a702a77e5ce0a56f090bc9990ccda2",
                "md5": "dfa04b0fdce04d6804ed971243130b9c",
                "sha256": "4c28fac1be8598f0035431648f54348866a643b3b1721d0bf5ac393cbb64d2fa"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dfa04b0fdce04d6804ed971243130b9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0",
            "size": 4897819,
            "upload_time": "2024-10-07T18:50:12",
            "upload_time_iso_8601": "2024-10-07T18:50:12.643728Z",
            "url": "https://files.pythonhosted.org/packages/d0/93/6481daa6efc741f3674b006fae1604a702a77e5ce0a56f090bc9990ccda2/pystack-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc17a35ce925629b108e975ba12ffd4a16a3b3b7666421f6af5cec2f750b447a",
                "md5": "f1df8428b26be6eb83effce13587114c",
                "sha256": "a2ab4d140ed7e066170f0089019ad729a241be80d2fbceccc89fd295212d7751"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f1df8428b26be6eb83effce13587114c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0",
            "size": 4960637,
            "upload_time": "2024-10-07T18:50:14",
            "upload_time_iso_8601": "2024-10-07T18:50:14.701741Z",
            "url": "https://files.pythonhosted.org/packages/bc/17/a35ce925629b108e975ba12ffd4a16a3b3b7666421f6af5cec2f750b447a/pystack-1.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46f3093168e040c5182250886aa7c53729111b0d278e66112bde51146882355c",
                "md5": "cc0ddad8ec1387d3c28bcaee641aca5f",
                "sha256": "2d1248cefef1bb288825775f7070e745eb358d0da0ab62de4ccdcec18054b6af"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc0ddad8ec1387d3c28bcaee641aca5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0",
            "size": 6056429,
            "upload_time": "2024-10-07T18:50:16",
            "upload_time_iso_8601": "2024-10-07T18:50:16.287957Z",
            "url": "https://files.pythonhosted.org/packages/46/f3/093168e040c5182250886aa7c53729111b0d278e66112bde51146882355c/pystack-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "469f95c5d8a58fbdea7125244fac09844660f8f1a3982515e930bdcc882f47ad",
                "md5": "f0f3fc3be36a64e5ca50746d7e6932bd",
                "sha256": "38298acd75abdf6f36c3b390ac097e0d7e0d35b2f4dd92af6ce4f71b498ee825"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f0f3fc3be36a64e5ca50746d7e6932bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7.0",
            "size": 4826450,
            "upload_time": "2024-10-07T18:50:18",
            "upload_time_iso_8601": "2024-10-07T18:50:18.332217Z",
            "url": "https://files.pythonhosted.org/packages/46/9f/95c5d8a58fbdea7125244fac09844660f8f1a3982515e930bdcc882f47ad/pystack-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4be7954e3d0341d0a55c09a86e4d44c627e6c4e449b5376a68e2cca8e8ee7341",
                "md5": "750f984bc0f8c4534130a60c477c15fb",
                "sha256": "efe075491b268db79465ba1459ff484810325db46de8effaf1fa1b204b1c9013"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "750f984bc0f8c4534130a60c477c15fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7.0",
            "size": 4903289,
            "upload_time": "2024-10-07T18:50:20",
            "upload_time_iso_8601": "2024-10-07T18:50:20.402233Z",
            "url": "https://files.pythonhosted.org/packages/4b/e7/954e3d0341d0a55c09a86e4d44c627e6c4e449b5376a68e2cca8e8ee7341/pystack-1.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7b02b5a058386e18a73d486cbc9f5cde7fe40b35d9b0d24b0d91dfdd908088c",
                "md5": "e4ed5dc7739b4059296e692f98f2f03d",
                "sha256": "985ed3c9bd39ee545b7cada0e027cfa589f326c894c26a8fe11acd9b63cc931e"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4ed5dc7739b4059296e692f98f2f03d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7.0",
            "size": 6019421,
            "upload_time": "2024-10-07T18:50:22",
            "upload_time_iso_8601": "2024-10-07T18:50:22.078192Z",
            "url": "https://files.pythonhosted.org/packages/b7/b0/2b5a058386e18a73d486cbc9f5cde7fe40b35d9b0d24b0d91dfdd908088c/pystack-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e84545b70e10d6d447e67321e2dbff303b68d38fa2fee4c9495d3ba964d9ec9",
                "md5": "3707fd8b8da3def50398d5b94e7502a7",
                "sha256": "80b5333213f3d0ba200fa81f1651c3d5dfc38345c95b4f4f1427b833d19a4fb5"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3707fd8b8da3def50398d5b94e7502a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7.0",
            "size": 4826643,
            "upload_time": "2024-10-07T18:50:23",
            "upload_time_iso_8601": "2024-10-07T18:50:23.840364Z",
            "url": "https://files.pythonhosted.org/packages/5e/84/545b70e10d6d447e67321e2dbff303b68d38fa2fee4c9495d3ba964d9ec9/pystack-1.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5273f8a644db3723c3fa52b0f50a6dacfebf6173fbd949e719d63c13cdd3d412",
                "md5": "0eed91d37e4098fd30e0c2938bf2bd0f",
                "sha256": "d101fc34766fc1ea3e622b7bf85eb334a324e080bf349e3da50338a07009d1b7"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0eed91d37e4098fd30e0c2938bf2bd0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7.0",
            "size": 4902945,
            "upload_time": "2024-10-07T18:50:25",
            "upload_time_iso_8601": "2024-10-07T18:50:25.528134Z",
            "url": "https://files.pythonhosted.org/packages/52/73/f8a644db3723c3fa52b0f50a6dacfebf6173fbd949e719d63c13cdd3d412/pystack-1.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6509b5384a79fcbd5a371e6f9f0458d7a91aa4fd19b130a58f2fbc8056d5d40c",
                "md5": "f340097fd1860a91338f8159341973fd",
                "sha256": "8c3e06780af96ef3861da0848dbb8e25cd15153485e29969b9fde4112362e7f4"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp313-cp313-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f340097fd1860a91338f8159341973fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7.0",
            "size": 6017034,
            "upload_time": "2024-10-07T18:50:27",
            "upload_time_iso_8601": "2024-10-07T18:50:27.195021Z",
            "url": "https://files.pythonhosted.org/packages/65/09/b5384a79fcbd5a371e6f9f0458d7a91aa4fd19b130a58f2fbc8056d5d40c/pystack-1.4.1-cp313-cp313-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b6f3160106781331dc9f8565c0f83d050949798e531956139d6752f9bf676d4",
                "md5": "982b50a6587c538aae074818a88914ae",
                "sha256": "a8db21d05f461ef3a31c7bb2e8e67f424b18fc30ad2fbbff9061c6c1ae569e47"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "982b50a6587c538aae074818a88914ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0",
            "size": 4806531,
            "upload_time": "2024-10-07T18:50:28",
            "upload_time_iso_8601": "2024-10-07T18:50:28.773246Z",
            "url": "https://files.pythonhosted.org/packages/4b/6f/3160106781331dc9f8565c0f83d050949798e531956139d6752f9bf676d4/pystack-1.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91080f6753e40b0ce0a1925a80e42104dbe106b6ae8d8bbf363a067b68ed3705",
                "md5": "74864a05afb40422fd60259a25c8d045",
                "sha256": "524cf12292d7eb713881a91adaf65cce13b710c25fec06c178f43632f05085f7"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74864a05afb40422fd60259a25c8d045",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0",
            "size": 4877474,
            "upload_time": "2024-10-07T18:50:30",
            "upload_time_iso_8601": "2024-10-07T18:50:30.379831Z",
            "url": "https://files.pythonhosted.org/packages/91/08/0f6753e40b0ce0a1925a80e42104dbe106b6ae8d8bbf363a067b68ed3705/pystack-1.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fafd933ee1bda1e46a76a6d27cd0ffdf5adec6db6af04ed11e4ecbaec8fc7714",
                "md5": "cfe16c6f02425a8e85273b512e3d70ca",
                "sha256": "fd0bc75e85e76273d5f94530d2f95406645854e7106d39c9bf8b12118667cd3f"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cfe16c6f02425a8e85273b512e3d70ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0",
            "size": 5970805,
            "upload_time": "2024-10-07T18:50:31",
            "upload_time_iso_8601": "2024-10-07T18:50:31.976831Z",
            "url": "https://files.pythonhosted.org/packages/fa/fd/933ee1bda1e46a76a6d27cd0ffdf5adec6db6af04ed11e4ecbaec8fc7714/pystack-1.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04911f7863923027a0f4391d186ef50e95434f383d249e92aeac21e28caec965",
                "md5": "658f1d94ab2dad047560426fab8e31ea",
                "sha256": "7f3d2e1fb8413a3c8d8f3ceeab41abf8dd118eb30092ebc543a1dd0d17af8248"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "658f1d94ab2dad047560426fab8e31ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0",
            "size": 4880958,
            "upload_time": "2024-10-07T18:50:33",
            "upload_time_iso_8601": "2024-10-07T18:50:33.514754Z",
            "url": "https://files.pythonhosted.org/packages/04/91/1f7863923027a0f4391d186ef50e95434f383d249e92aeac21e28caec965/pystack-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd3687f4588812b682b7f33ac1cdf0c75e6a04d103835b4bf4de9d64e15ebd62",
                "md5": "1024340794375c694bbd33fcd17d7279",
                "sha256": "fae1fd1b2f27779b2a1cd005eec61fb30561f4eec38f4e4a83b9e0181e96a587"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1024340794375c694bbd33fcd17d7279",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0",
            "size": 4947785,
            "upload_time": "2024-10-07T18:50:35",
            "upload_time_iso_8601": "2024-10-07T18:50:35.099173Z",
            "url": "https://files.pythonhosted.org/packages/cd/36/87f4588812b682b7f33ac1cdf0c75e6a04d103835b4bf4de9d64e15ebd62/pystack-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0cc107257bd063432c3b658352bd2261aa9a8598f6a2440fcf3c138d7f034d36",
                "md5": "84c0ecf2475187e1db01e9bed3d78179",
                "sha256": "25b80e6127ae551a91899198292d70356fbb325a28617eae0f7ed290743e4e6d"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "84c0ecf2475187e1db01e9bed3d78179",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0",
            "size": 6141506,
            "upload_time": "2024-10-07T18:50:37",
            "upload_time_iso_8601": "2024-10-07T18:50:37.025246Z",
            "url": "https://files.pythonhosted.org/packages/0c/c1/07257bd063432c3b658352bd2261aa9a8598f6a2440fcf3c138d7f034d36/pystack-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c56c5287192c3a6e7a713cff23506c440bcf745b60425544722240414011167c",
                "md5": "e85812549443edabe2d4a91fe0f1e464",
                "sha256": "fa520ca8fdb0edc2bc0b0e9fcc02cc4c685e4bcb6dd43dff10e4e0bbf1ea01b4"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e85812549443edabe2d4a91fe0f1e464",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0",
            "size": 4856218,
            "upload_time": "2024-10-07T18:50:38",
            "upload_time_iso_8601": "2024-10-07T18:50:38.932767Z",
            "url": "https://files.pythonhosted.org/packages/c5/6c/5287192c3a6e7a713cff23506c440bcf745b60425544722240414011167c/pystack-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d8526cac9cb60adae0e328dd47b1136f33d392133873b9b55a3213520f3c3a6",
                "md5": "fbbc889461766963db2b9accec5ffdc8",
                "sha256": "3ae3c48f3bbc80879be307c7f29f6198423c8afc03a8c32607657cb2add9aaea"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fbbc889461766963db2b9accec5ffdc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0",
            "size": 4922707,
            "upload_time": "2024-10-07T18:50:40",
            "upload_time_iso_8601": "2024-10-07T18:50:40.829416Z",
            "url": "https://files.pythonhosted.org/packages/3d/85/26cac9cb60adae0e328dd47b1136f33d392133873b9b55a3213520f3c3a6/pystack-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5755965d73c86bd60d46ea712c327586df567b17ba0236e5d4b4954610cebbb7",
                "md5": "ccfb443213e3fdaa37ee05f03fba1097",
                "sha256": "0c6ed38276bb17c6775199b9fa9747891f2939571485e6849a43dbe9fae1c90f"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ccfb443213e3fdaa37ee05f03fba1097",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0",
            "size": 6019504,
            "upload_time": "2024-10-07T18:50:42",
            "upload_time_iso_8601": "2024-10-07T18:50:42.575081Z",
            "url": "https://files.pythonhosted.org/packages/57/55/965d73c86bd60d46ea712c327586df567b17ba0236e5d4b4954610cebbb7/pystack-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9079acbbaa978d3d0acd5faf17cc73a8915216d40a7d206479976be56013f484",
                "md5": "fbbe7fdc6f496a676c81705ec0f5f71a",
                "sha256": "d0be5de225ed55bffa23e3f69bc2d562a13284fbc4c4e941b9313334c57c90cb"
            },
            "downloads": -1,
            "filename": "pystack-1.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "fbbe7fdc6f496a676c81705ec0f5f71a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7.0",
            "size": 100377,
            "upload_time": "2024-10-07T18:50:44",
            "upload_time_iso_8601": "2024-10-07T18:50:44.451595Z",
            "url": "https://files.pythonhosted.org/packages/90/79/acbbaa978d3d0acd5faf17cc73a8915216d40a7d206479976be56013f484/pystack-1.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-07 18:50:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "bloomberg",
    "github_project": "pystack",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pystack"
}
        
Elapsed time: 1.21348s