echion


Nameechion JSON
Version 0.3.2 PyPI version JSON
download
home_pageNone
SummaryIn-process CPython frame stack sampler
upload_time2024-09-10 10:18:37
maintainerNone
docs_urlNone
authorGabriele N. Tornetta
requires_python>=3.8
licenseNone
keywords performance profiling testing development
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <img align="center" src="art/logo.png" height="320px" />
</p>

<h1 align="center">Echion</h1>

<p align="center">
Near-zero-overhead, in-process CPython frame stack sampler with async support
</p>


## Synopsis

Echion is an in-process CPython frame stack sampler. It can achieve
near-zero-overhead, similar to [Austin][austin], by sampling the frame stack of
each thread without holding the GIL. Native stacks can be sampled too, but the
overhead is higher.

Echion is also the first example of a high-performance sampling async profiler
for CPython.


## Installation

Currently Echion is available to install from PyPI with

```console
pip install echion
```

Alternativey, if a wheel is not available for your combination of platform and
architecture, it can be installed from sources with

```console
pip install git+https://github.com/p403n1x87/echion
```

Compilation requires a C++ compiler and static versions of the `libunwind` and
`lzma` libraries.


## Usage

The following is the output of the `echion --help` command.

```
usage: echion [-h] [-i INTERVAL] [-c] [-n] [-o OUTPUT] [-s] [-w] [-v] [-V] ...

In-process CPython frame stack sampler

positional arguments:
  command               Command string to execute.

options:
  -h, --help            show this help message and exit
  -i INTERVAL, --interval INTERVAL
                        sampling interval in microseconds
  -c, --cpu             sample on-CPU stacks only
  -x EXPOSURE, --exposure EXPOSURE
                        exposure time, in seconds
  -m, --memory          Collect memory allocation events
  -n, --native          sample native stacks
  -o OUTPUT, --output OUTPUT
                        output location (can use %(pid) to insert the process ID)
  -p PID, --pid PID     Attach to the process with the given PID
  -s, --stealth         stealth mode (sampler thread is not accounted for)
  -w WHERE, --where WHERE
                        where mode: display thread stacks of the given process
  -v, --verbose         verbose logging
  -V, --version         show program's version number and exit
```
The output is written to a file specified with the `--output` option. Curretly, this is in
the format of the normal [Austin][austin] format, that is collapsed stacks with
metadata at the top. This makes it easy to re-use existing visualisation tools,
like the [Austin VS Code][austin-vscode] extension.


## Compatibility

Supported platforms: Linux (amd64, i686), Darwin (amd64, aarch64)

Supported interpreters: CPython 3.8-3.11

### Notes

Attaching to a process (including in where mode) requires extra permissions. On
Unix, you can attach to a running process with `sudo`. On Linux, one may also
set the ptrace scope to `0` with `sudo sysctl kernel.yama.ptrace_scope=0` to
allow attaching to any process. However, this is not recommended for security
reasons.


## Where mode

The where mode is similar to [Austin][austin]'s where mode, that is Echion will
dump the stacks of all running threads to standard error. This is useful for
debugging deadlocks and other issues that may occur in a running process.

When running or attaching to a process, you can also send a `SIGQUIT` signal to
dump the stacks of all running threads. The result is similar to the where mode.
You can normally send a `SIGQUIT` signal with the <kbd>CTRL</kbd>+<kbd>\\</kbd>
key combination.


## Memory mode

Besides wall time and CPU time, Echion can be used to profile memory
allocations. In this mode, Echion tracks the Python memory domain allocators and
accounts for each single event. Because of the tracing nature, this mode
introduces considerable overhead, but gives pretty accurate results that can be
used to investigate potential memory leaks. To fully understand that data that
is collected in this mode, one should be aware of how Echion tracks allocations
and deallocations. When an allocation is made, Echion records the frame stack
that was involved and maps it to the returned memory address. When a
deallocation for a tracked memory address is made, the freed memory is accounted
for the same stack. Therefore, objects that are allocated and deallocated during
the tracking period account for a total of 0 allocated bytes. This means that
all the non-negative values reported by Echion represent memory that was still
allocated by the time the tracking ended.

*Since Echion 0.3.0*.


## Why Echion?

Sampling in-process comes with some benefits. One has easier access to more
information, like thread names, and potentially the task abstraction of async
frameworks, like `asyncio`, `gevent`, ... . Also available is more accurate
per-thread CPU timing information.

Currently, Echion supports sampling asyncio-based applications, but not in
native mode. This makes Echion the very first example of an async profiler for
CPython.

Echion relies on some assumptions to collect and sample all the running threads
without holding the GIL. This makes Echion very similar to tools like
[Austin][austin]. However, some features, like multiprocess support, are more
complicated to handle and would require the use of e.g. IPC solutions.
Furthermore, Echion normally requires that you install it within your
environment, wheareas [Austin][austin] can be installed indepdendently.


## How it works

On a fundamental level, there is one key assumption that Echion relies upon:

> The interpreter state object lives as long as the CPython process itself.

All unsafe memory reads are performed indirectly via copies of data structure
obtained with the use of system calls like `process_vm_readv`. This is
essentially what allows Echion to run its sampling thread without the GIL.

As for attaching to a running process, we make use of the [hypno][hypno] library
to inject Python code that bootstraps Echion into the target process.


[austin]: http://github.com/p403n1x87/austin
[austin-vscode]: https://marketplace.visualstudio.com/items?itemName=p403n1x87.austin-vscode
[hypno]: https://github.com/kmaork/hypno

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "echion",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "performance, profiling, testing, development",
    "author": "Gabriele N. Tornetta",
    "author_email": "\"Gabriele N. Tornetta\" <phoenix1987@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/f0/26/ef7478ca14f3a47640048bbb0082c16d851001c67d7beaee7dd07669847b/echion-0.3.2.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n  <img align=\"center\" src=\"art/logo.png\" height=\"320px\" />\n</p>\n\n<h1 align=\"center\">Echion</h1>\n\n<p align=\"center\">\nNear-zero-overhead, in-process CPython frame stack sampler with async support\n</p>\n\n\n## Synopsis\n\nEchion is an in-process CPython frame stack sampler. It can achieve\nnear-zero-overhead, similar to [Austin][austin], by sampling the frame stack of\neach thread without holding the GIL. Native stacks can be sampled too, but the\noverhead is higher.\n\nEchion is also the first example of a high-performance sampling async profiler\nfor CPython.\n\n\n## Installation\n\nCurrently Echion is available to install from PyPI with\n\n```console\npip install echion\n```\n\nAlternativey, if a wheel is not available for your combination of platform and\narchitecture, it can be installed from sources with\n\n```console\npip install git+https://github.com/p403n1x87/echion\n```\n\nCompilation requires a C++ compiler and static versions of the `libunwind` and\n`lzma` libraries.\n\n\n## Usage\n\nThe following is the output of the `echion --help` command.\n\n```\nusage: echion [-h] [-i INTERVAL] [-c] [-n] [-o OUTPUT] [-s] [-w] [-v] [-V] ...\n\nIn-process CPython frame stack sampler\n\npositional arguments:\n  command               Command string to execute.\n\noptions:\n  -h, --help            show this help message and exit\n  -i INTERVAL, --interval INTERVAL\n                        sampling interval in microseconds\n  -c, --cpu             sample on-CPU stacks only\n  -x EXPOSURE, --exposure EXPOSURE\n                        exposure time, in seconds\n  -m, --memory          Collect memory allocation events\n  -n, --native          sample native stacks\n  -o OUTPUT, --output OUTPUT\n                        output location (can use %(pid) to insert the process ID)\n  -p PID, --pid PID     Attach to the process with the given PID\n  -s, --stealth         stealth mode (sampler thread is not accounted for)\n  -w WHERE, --where WHERE\n                        where mode: display thread stacks of the given process\n  -v, --verbose         verbose logging\n  -V, --version         show program's version number and exit\n```\nThe output is written to a file specified with the `--output` option. Curretly, this is in\nthe format of the normal [Austin][austin] format, that is collapsed stacks with\nmetadata at the top. This makes it easy to re-use existing visualisation tools,\nlike the [Austin VS Code][austin-vscode] extension.\n\n\n## Compatibility\n\nSupported platforms: Linux (amd64, i686), Darwin (amd64, aarch64)\n\nSupported interpreters: CPython 3.8-3.11\n\n### Notes\n\nAttaching to a process (including in where mode) requires extra permissions. On\nUnix, you can attach to a running process with `sudo`. On Linux, one may also\nset the ptrace scope to `0` with `sudo sysctl kernel.yama.ptrace_scope=0` to\nallow attaching to any process. However, this is not recommended for security\nreasons.\n\n\n## Where mode\n\nThe where mode is similar to [Austin][austin]'s where mode, that is Echion will\ndump the stacks of all running threads to standard error. This is useful for\ndebugging deadlocks and other issues that may occur in a running process.\n\nWhen running or attaching to a process, you can also send a `SIGQUIT` signal to\ndump the stacks of all running threads. The result is similar to the where mode.\nYou can normally send a `SIGQUIT` signal with the <kbd>CTRL</kbd>+<kbd>\\\\</kbd>\nkey combination.\n\n\n## Memory mode\n\nBesides wall time and CPU time, Echion can be used to profile memory\nallocations. In this mode, Echion tracks the Python memory domain allocators and\naccounts for each single event. Because of the tracing nature, this mode\nintroduces considerable overhead, but gives pretty accurate results that can be\nused to investigate potential memory leaks. To fully understand that data that\nis collected in this mode, one should be aware of how Echion tracks allocations\nand deallocations. When an allocation is made, Echion records the frame stack\nthat was involved and maps it to the returned memory address. When a\ndeallocation for a tracked memory address is made, the freed memory is accounted\nfor the same stack. Therefore, objects that are allocated and deallocated during\nthe tracking period account for a total of 0 allocated bytes. This means that\nall the non-negative values reported by Echion represent memory that was still\nallocated by the time the tracking ended.\n\n*Since Echion 0.3.0*.\n\n\n## Why Echion?\n\nSampling in-process comes with some benefits. One has easier access to more\ninformation, like thread names, and potentially the task abstraction of async\nframeworks, like `asyncio`, `gevent`, ... . Also available is more accurate\nper-thread CPU timing information.\n\nCurrently, Echion supports sampling asyncio-based applications, but not in\nnative mode. This makes Echion the very first example of an async profiler for\nCPython.\n\nEchion relies on some assumptions to collect and sample all the running threads\nwithout holding the GIL. This makes Echion very similar to tools like\n[Austin][austin]. However, some features, like multiprocess support, are more\ncomplicated to handle and would require the use of e.g. IPC solutions.\nFurthermore, Echion normally requires that you install it within your\nenvironment, wheareas [Austin][austin] can be installed indepdendently.\n\n\n## How it works\n\nOn a fundamental level, there is one key assumption that Echion relies upon:\n\n> The interpreter state object lives as long as the CPython process itself.\n\nAll unsafe memory reads are performed indirectly via copies of data structure\nobtained with the use of system calls like `process_vm_readv`. This is\nessentially what allows Echion to run its sampling thread without the GIL.\n\nAs for attaching to a running process, we make use of the [hypno][hypno] library\nto inject Python code that bootstraps Echion into the target process.\n\n\n[austin]: http://github.com/p403n1x87/austin\n[austin-vscode]: https://marketplace.visualstudio.com/items?itemName=p403n1x87.austin-vscode\n[hypno]: https://github.com/kmaork/hypno\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "In-process CPython frame stack sampler",
    "version": "0.3.2",
    "project_urls": {
        "homepage": "https://github.com/P403n1x87/echion",
        "issues": "https://github.com/P403n1x87/echion/issues",
        "repository": "https://github.com/P403n1x87/echion"
    },
    "split_keywords": [
        "performance",
        " profiling",
        " testing",
        " development"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf222809e305cb3c0bd054b639674c4b22517c5d131c6b35087db1083ea0095d",
                "md5": "fcdfffd24b12aaefa82823eac16ff93a",
                "sha256": "6a8936850bc706371d2f4a0c3d9ac2c1d448002f632c9f79c7d6d303c451a4cf"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "fcdfffd24b12aaefa82823eac16ff93a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 161933,
            "upload_time": "2024-09-10T10:18:02",
            "upload_time_iso_8601": "2024-09-10T10:18:02.528182Z",
            "url": "https://files.pythonhosted.org/packages/cf/22/2809e305cb3c0bd054b639674c4b22517c5d131c6b35087db1083ea0095d/echion-0.3.2-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30434f4d25190993d8f83722324e697d1ea21c2998461578981208f24cd42711",
                "md5": "545b4791a61a3fffb3a35abab0d56cb3",
                "sha256": "d4a2d6c378258bc0c9a14567f8ee36ddbe85b4459ccc6bb15320e6d322398041"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "545b4791a61a3fffb3a35abab0d56cb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 106523,
            "upload_time": "2024-09-10T10:18:03",
            "upload_time_iso_8601": "2024-09-10T10:18:03.745768Z",
            "url": "https://files.pythonhosted.org/packages/30/43/4f4d25190993d8f83722324e697d1ea21c2998461578981208f24cd42711/echion-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd2f973b873805f52e982111dfd66c3fa7e0e6ef4ffcb52d4e7e332c9ffebc4c",
                "md5": "68c3716277c6902fabe2d564d2096e8b",
                "sha256": "cce3f9120cf2cf077cf796150ceabc770ab26e3a38488714ca5579030ef5361e"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "68c3716277c6902fabe2d564d2096e8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 100124,
            "upload_time": "2024-09-10T10:18:05",
            "upload_time_iso_8601": "2024-09-10T10:18:05.007262Z",
            "url": "https://files.pythonhosted.org/packages/fd/2f/973b873805f52e982111dfd66c3fa7e0e6ef4ffcb52d4e7e332c9ffebc4c/echion-0.3.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bd6a40f9110fbb9961a044bc8cbdcd89649bd25d096339ab28c3978ebd01701",
                "md5": "5ea4b4a137ac2cc801759a5c02aee3e7",
                "sha256": "369c3f5f45fe84d663f678903241c4202779e5ce256ce3260358bd8d5933b0a8"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5ea4b4a137ac2cc801759a5c02aee3e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 823707,
            "upload_time": "2024-09-10T10:18:06",
            "upload_time_iso_8601": "2024-09-10T10:18:06.554614Z",
            "url": "https://files.pythonhosted.org/packages/4b/d6/a40f9110fbb9961a044bc8cbdcd89649bd25d096339ab28c3978ebd01701/echion-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d92a66fdc8fa36e723a32c1722670d4a7c591dff92eeadd6dd27d58c49515365",
                "md5": "98e5c1080f1d71f2ed32d6d887715a72",
                "sha256": "9d76147f685822420b4b147b3d70d8118c8b52d664f43756114b17d1019ff043"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "98e5c1080f1d71f2ed32d6d887715a72",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 835711,
            "upload_time": "2024-09-10T10:18:08",
            "upload_time_iso_8601": "2024-09-10T10:18:08.134332Z",
            "url": "https://files.pythonhosted.org/packages/d9/2a/66fdc8fa36e723a32c1722670d4a7c591dff92eeadd6dd27d58c49515365/echion-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f278139c1f61cff63deb52d72e8c136978a5923aea277c34c406b02c91dee128",
                "md5": "fc4ed7bbf40ca8d769e32154ae4f65b9",
                "sha256": "b57fb7abf8e7ca9692c0da8d0aaf890a48097a09d9f337dc66638bcd201c1ec3"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc4ed7bbf40ca8d769e32154ae4f65b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1796362,
            "upload_time": "2024-09-10T10:18:09",
            "upload_time_iso_8601": "2024-09-10T10:18:09.908694Z",
            "url": "https://files.pythonhosted.org/packages/f2/78/139c1f61cff63deb52d72e8c136978a5923aea277c34c406b02c91dee128/echion-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cc39bb72fce459f58f81549cd3b07834b42d4c727a0877856b964b53c94da84",
                "md5": "a4652a10c79725ff631f8e1e2f6a93ce",
                "sha256": "13f36cded3d03b0185e0e11b9dbc852eb8682c025e5364a7b6c41ba65a5205f3"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "a4652a10c79725ff631f8e1e2f6a93ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 163104,
            "upload_time": "2024-09-10T10:18:11",
            "upload_time_iso_8601": "2024-09-10T10:18:11.499086Z",
            "url": "https://files.pythonhosted.org/packages/3c/c3/9bb72fce459f58f81549cd3b07834b42d4c727a0877856b964b53c94da84/echion-0.3.2-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e7dcfa8d2c8880564cfa3ecb099f5522092d78764999e6b71e5b09f2ed35b6c",
                "md5": "dc2095347f4a5440eba3be28e7c9c514",
                "sha256": "eda48f9142bef99634d05e5dbe0c4ee0b9d7f17cb6b0ec4cbca91a9a0923282e"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc2095347f4a5440eba3be28e7c9c514",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 107168,
            "upload_time": "2024-09-10T10:18:12",
            "upload_time_iso_8601": "2024-09-10T10:18:12.441901Z",
            "url": "https://files.pythonhosted.org/packages/0e/7d/cfa8d2c8880564cfa3ecb099f5522092d78764999e6b71e5b09f2ed35b6c/echion-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63738e1f8c933fbf50718fcd71f0cc78da91b5281ac72b1700c5382ef3898192",
                "md5": "7a03eb64f67ba22d6e53c943a255ea5a",
                "sha256": "9080dc5543834c0f6a73119212547fd8fa70edb77eaabb5b12a4dbcb5daf48dc"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7a03eb64f67ba22d6e53c943a255ea5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 100637,
            "upload_time": "2024-09-10T10:18:14",
            "upload_time_iso_8601": "2024-09-10T10:18:14.538937Z",
            "url": "https://files.pythonhosted.org/packages/63/73/8e1f8c933fbf50718fcd71f0cc78da91b5281ac72b1700c5382ef3898192/echion-0.3.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00403813c7e6fbb7485956652ffa8976d6128c064eb797abc8c40fc21aec153b",
                "md5": "9907a28e378eb30760a26a04f8d2ef37",
                "sha256": "60645d7cee665c46390453bdeddec6eb7a1ec72aa0a3d875e845a1641b3a0c9f"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9907a28e378eb30760a26a04f8d2ef37",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 841912,
            "upload_time": "2024-09-10T10:18:16",
            "upload_time_iso_8601": "2024-09-10T10:18:16.591064Z",
            "url": "https://files.pythonhosted.org/packages/00/40/3813c7e6fbb7485956652ffa8976d6128c064eb797abc8c40fc21aec153b/echion-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4454e1e8772cb40f8c6b65bc7ee47a98900249c599db7988ccef2c0e6ea57980",
                "md5": "05d2928e78bfd5720f2a2ef7cec1dbf2",
                "sha256": "b9facac5bac554d7d3a87371254e875d294309a40a0ff97fdd0d89de7e9762fa"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05d2928e78bfd5720f2a2ef7cec1dbf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 851962,
            "upload_time": "2024-09-10T10:18:17",
            "upload_time_iso_8601": "2024-09-10T10:18:17.797499Z",
            "url": "https://files.pythonhosted.org/packages/44/54/e1e8772cb40f8c6b65bc7ee47a98900249c599db7988ccef2c0e6ea57980/echion-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f7764474c49239b2450ba213087ce0cb94201e94a8af60eeccf1ffbf46be4ad",
                "md5": "772f84db7e8fa3a8def81f247fb8385c",
                "sha256": "e23953e6850c070430ad18350e962077b5d997957fb54ee6d2fa2c47893b2a69"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "772f84db7e8fa3a8def81f247fb8385c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1809114,
            "upload_time": "2024-09-10T10:18:19",
            "upload_time_iso_8601": "2024-09-10T10:18:19.309669Z",
            "url": "https://files.pythonhosted.org/packages/5f/77/64474c49239b2450ba213087ce0cb94201e94a8af60eeccf1ffbf46be4ad/echion-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "620e61c8eddc177a1ec6f3068c7852067dd9115b0565c5f359e2980c46dc990b",
                "md5": "b7461e24253789c3ee49242a67e0abe1",
                "sha256": "cb1822da985abc94ba0eebc76f6bd007dc215feafc90851de32a92445f7e1a79"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "b7461e24253789c3ee49242a67e0abe1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 161741,
            "upload_time": "2024-09-10T10:18:20",
            "upload_time_iso_8601": "2024-09-10T10:18:20.957246Z",
            "url": "https://files.pythonhosted.org/packages/62/0e/61c8eddc177a1ec6f3068c7852067dd9115b0565c5f359e2980c46dc990b/echion-0.3.2-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7b9eee7b906a03a78306a8f55952040db2ef505b4f32ddf05e091a2247eeffe",
                "md5": "3560424fb7bc16f3da94b0d3069e72c1",
                "sha256": "780f4fe84f4ef3f055aca53045803d01b4eeb785dd19f3d57422508dca7b5ac1"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3560424fb7bc16f3da94b0d3069e72c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 106438,
            "upload_time": "2024-09-10T10:18:22",
            "upload_time_iso_8601": "2024-09-10T10:18:22.334094Z",
            "url": "https://files.pythonhosted.org/packages/d7/b9/eee7b906a03a78306a8f55952040db2ef505b4f32ddf05e091a2247eeffe/echion-0.3.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b452f96ba508d03437c9d09b4448ac713fe97d97c8ddfa05b7f9f28042aca778",
                "md5": "4ff981f189fc41fa5c801a88f7ec3ec2",
                "sha256": "865088cfb5f5eacde0a2cdd3e47839364d12f0a01e639ed7d891d2ebe69e8961"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4ff981f189fc41fa5c801a88f7ec3ec2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 100027,
            "upload_time": "2024-09-10T10:18:23",
            "upload_time_iso_8601": "2024-09-10T10:18:23.476690Z",
            "url": "https://files.pythonhosted.org/packages/b4/52/f96ba508d03437c9d09b4448ac713fe97d97c8ddfa05b7f9f28042aca778/echion-0.3.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b33f91a22f03cd1d5d5df791eb620a6a790b53f1a37413e7efdc04d9d687a74",
                "md5": "05e69a1206c6f204a92cf8faaa5acdfa",
                "sha256": "1be711ef6ab46e2470740cc4955248921a2c23a5b67a3051a327e229fc1ba139"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "05e69a1206c6f204a92cf8faaa5acdfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 818387,
            "upload_time": "2024-09-10T10:18:24",
            "upload_time_iso_8601": "2024-09-10T10:18:24.725274Z",
            "url": "https://files.pythonhosted.org/packages/3b/33/f91a22f03cd1d5d5df791eb620a6a790b53f1a37413e7efdc04d9d687a74/echion-0.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bfe3f3996041acecbc65b6975a3635f919df60b901167c28f05cb9273ee45955",
                "md5": "ad62e877dbd5a0270d909309518c68c6",
                "sha256": "496004dd3d98500b6a241c357070a18b925af018fc07b4c56f061e04e0efc6c9"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad62e877dbd5a0270d909309518c68c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 829145,
            "upload_time": "2024-09-10T10:18:26",
            "upload_time_iso_8601": "2024-09-10T10:18:26.253901Z",
            "url": "https://files.pythonhosted.org/packages/bf/e3/f3996041acecbc65b6975a3635f919df60b901167c28f05cb9273ee45955/echion-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f99cd0194eec2572eca8a567f71b18c9ee07ad0a930b1039c775671f6f139fea",
                "md5": "53a583727dc9d673951468b2922a430d",
                "sha256": "37f7a285579564beb0d9ed2bf9958c13e162347c56eda07018472e5064e504bf"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "53a583727dc9d673951468b2922a430d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1790031,
            "upload_time": "2024-09-10T10:18:27",
            "upload_time_iso_8601": "2024-09-10T10:18:27.416598Z",
            "url": "https://files.pythonhosted.org/packages/f9/9c/d0194eec2572eca8a567f71b18c9ee07ad0a930b1039c775671f6f139fea/echion-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6713999f0fa1f537844afb46258fd13bafe2144a6078a32f766b4f12da2e1d72",
                "md5": "62024e92208672c2211547d31a9cf192",
                "sha256": "cc1a110c6e20036f6ab9b93aa3eb74b2f7553d59ac7b711bb884880e7b6cad85"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "62024e92208672c2211547d31a9cf192",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 161861,
            "upload_time": "2024-09-10T10:18:28",
            "upload_time_iso_8601": "2024-09-10T10:18:28.543514Z",
            "url": "https://files.pythonhosted.org/packages/67/13/999f0fa1f537844afb46258fd13bafe2144a6078a32f766b4f12da2e1d72/echion-0.3.2-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e0f917a3b5b78ee10d8f5ee18fd21d3cf0f00681c7a7310374282766759cff7",
                "md5": "6458f1c42c248fb1f3833f23afc6e618",
                "sha256": "586ef8c2e13bd18f96b8096d2a0cc8e15b05fcf11b6c6a1e2863de5aae6963c6"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6458f1c42c248fb1f3833f23afc6e618",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 106511,
            "upload_time": "2024-09-10T10:18:29",
            "upload_time_iso_8601": "2024-09-10T10:18:29.626284Z",
            "url": "https://files.pythonhosted.org/packages/4e/0f/917a3b5b78ee10d8f5ee18fd21d3cf0f00681c7a7310374282766759cff7/echion-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e800f7eda800db493950472f8b611ea5a1006ab6d763c137a3e3dd90f84ac3d",
                "md5": "8a30831e19d5a14b235c5ca34b28e5bf",
                "sha256": "9a44e89d691091db2e4c314258acb033294dc9bf4bc63f3d7cd985961b9365c6"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8a30831e19d5a14b235c5ca34b28e5bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 100085,
            "upload_time": "2024-09-10T10:18:30",
            "upload_time_iso_8601": "2024-09-10T10:18:30.562862Z",
            "url": "https://files.pythonhosted.org/packages/1e/80/0f7eda800db493950472f8b611ea5a1006ab6d763c137a3e3dd90f84ac3d/echion-0.3.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2f9864c9ec9567b072be747db4d6bcbb0797cbe10a46a40a7e0988852c1f7ff",
                "md5": "7340dd029049dbeb8d2b6d3ab9cd3fd0",
                "sha256": "613aca7329c732fdf7d6b509d81be74ed8455023d542e73874882d44ca3fa528"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7340dd029049dbeb8d2b6d3ab9cd3fd0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 818922,
            "upload_time": "2024-09-10T10:18:32",
            "upload_time_iso_8601": "2024-09-10T10:18:32.134196Z",
            "url": "https://files.pythonhosted.org/packages/d2/f9/864c9ec9567b072be747db4d6bcbb0797cbe10a46a40a7e0988852c1f7ff/echion-0.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e693c8cc4a0f0a4bc0846cf7f2293cbd60ff855620f31c465ec6028d0f1e793",
                "md5": "3ede5afdd3a37d108491621120e93c55",
                "sha256": "5c6b0963940fd0a5a2d8d01f8f1854d5e580a73aa6dc6493e6239619bce0c5d6"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ede5afdd3a37d108491621120e93c55",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 829317,
            "upload_time": "2024-09-10T10:18:33",
            "upload_time_iso_8601": "2024-09-10T10:18:33.679964Z",
            "url": "https://files.pythonhosted.org/packages/9e/69/3c8cc4a0f0a4bc0846cf7f2293cbd60ff855620f31c465ec6028d0f1e793/echion-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22f5701d8804aca649afbdc76afa046eb1ad1e81eee25580a725899b071d9f2b",
                "md5": "24dd8fa6a838dd36016a80630d0acede",
                "sha256": "cc4565deb51713da4e0cf44a24a39393cd07f89ac26ea7d01ee93fbee5feb10a"
            },
            "downloads": -1,
            "filename": "echion-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24dd8fa6a838dd36016a80630d0acede",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1790252,
            "upload_time": "2024-09-10T10:18:35",
            "upload_time_iso_8601": "2024-09-10T10:18:35.538583Z",
            "url": "https://files.pythonhosted.org/packages/22/f5/701d8804aca649afbdc76afa046eb1ad1e81eee25580a725899b071d9f2b/echion-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f026ef7478ca14f3a47640048bbb0082c16d851001c67d7beaee7dd07669847b",
                "md5": "ccf917b7fa3586d1fa6411c3ab54fd33",
                "sha256": "4f5d225cb5f1d17e9969757f0c510b43a28d937ec0de7d05fb8d166a2281a284"
            },
            "downloads": -1,
            "filename": "echion-0.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "ccf917b7fa3586d1fa6411c3ab54fd33",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 711344,
            "upload_time": "2024-09-10T10:18:37",
            "upload_time_iso_8601": "2024-09-10T10:18:37.581192Z",
            "url": "https://files.pythonhosted.org/packages/f0/26/ef7478ca14f3a47640048bbb0082c16d851001c67d7beaee7dd07669847b/echion-0.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-10 10:18:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "P403n1x87",
    "github_project": "echion",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "echion"
}
        
Elapsed time: 0.77236s