sentry-cli


Namesentry-cli JSON
Version 2.31.1 PyPI version JSON
download
home_pagehttps://github.com/getsentry/sentry-cli
SummaryA command line utility to work with Sentry.
upload_time2024-04-30 15:13:09
maintainerNone
docs_urlNone
authorSentry
requires_python>=3.7
licenseBSD-3-Clause
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <a href="https://sentry.io/?utm_source=github&utm_medium=logo" target="_blank">
    <picture>
      <source srcset="https://sentry-brand.storage.googleapis.com/sentry-logo-white.png" media="(prefers-color-scheme: dark)" />
      <source srcset="https://sentry-brand.storage.googleapis.com/sentry-logo-black.png" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" />
      <img src="https://sentry-brand.storage.googleapis.com/sentry-logo-black.png" alt="Sentry" width="280">
    </picture>
  </a>
</p>

# Official Sentry Command Line Interface

[![Build Status](https://github.com/getsentry/sentry-cli/workflows/CI/badge.svg?branch=master)](https://github.com/getsentry/sentry-cli/actions?query=workflow%3ACI)
[![GitHub release](https://img.shields.io/github/release/getsentry/sentry-cli.svg)](https://github.com/getsentry/sentry-cli/releases/latest)
[![npm version](https://img.shields.io/npm/v/@sentry/cli.svg)](https://www.npmjs.com/package/@sentry/cli)
[![license](https://img.shields.io/github/license/getsentry/sentry-cli.svg)](https://github.com/getsentry/sentry-cli/blob/master/LICENSE)

This is a Sentry command line client for some generic tasks. Right now this is
primarily used to upload debug symbols to Sentry if you are not using the
Fastlane tools.

* Downloads can be found under
  [Releases](https://github.com/getsentry/sentry-cli/releases/)
* Documentation can be found [here](https://docs.sentry.io/hosted/learn/cli/)

## Installation

If you are on OS X or Linux, you can use the automated downloader which will fetch the latest release version for you and install it:

    curl -sL https://sentry.io/get-cli/ | bash

We do, however, encourage you to pin the specific version of the CLI, so your builds are always reproducible.
To do that, you can use the exact same method, with an additional version specifier:

    curl -sL https://sentry.io/get-cli/ | SENTRY_CLI_VERSION=2.0.4 bash

This will automatically download the correct version of `sentry-cli` for your operating system and install it. If necessary, it will prompt for your admin password for `sudo`. For a different installation location or for systems without `sudo` (like Windows), you can `export INSTALL_DIR=/custom/installation/path` before running this command.

If you are using `sentry-cli` on Windows environments, [Microsoft Visual C++ Redistributable](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist) is required.

To verify it’s installed correctly you can bring up the help:

    sentry-cli --help

### pip

_New in 2.14.3_: `sentry-cli` can also be installed using `pip`:

```bash
pip install sentry-cli
```

### Node

Additionally, you can also install this binary via npm:

    npm install @sentry/cli

When installing globally, make sure to have set
[correct permissions on the global node_modules directory](https://docs.npmjs.com/getting-started/fixing-npm-permissions).
If this is not possible in your environment or still produces an EACCESS error,
install as root:

    sudo npm install -g @sentry/cli --unsafe-perm

By default, this package will download sentry-cli from the CDN managed by [Fastly](https://www.fastly.com/).
To use a custom CDN, set the npm config property `sentrycli_cdnurl`. The downloader will append
`"/<version>/sentry-cli-<dist>"`.

```sh
npm install @sentry/cli --sentrycli_cdnurl=https://mymirror.local/path
```

Or add property into your `.npmrc` file (https://www.npmjs.org/doc/files/npmrc.html)

```rc
sentrycli_cdnurl=https://mymirror.local/path
```

There are a few environment variables that you can provide to control the npm installation:

```
SENTRYCLI_CDNURL=<url> # Use alternative cdn url for downloading binary
SENTRYCLI_USE_LOCAL=1 # Use local instance of sentry-cli binary (looked up via $PATH environment)
SENTRYCLI_SKIP_DOWNLOAD=1 # Skip downloading binary entirely
SENTRYCLI_NO_PROGRESS_BAR=1 # Do not print the progress bar when downloading binary (default for non-TTY environments like CI)
SENTRYCLI_LOG_STREAM=<stdout|stderr> # Changes where to redirect install script output
```

When using `sentry-cli` via JavaScript API or any 3rd party plugin that is consuming said API,
you can also use `SENTRY_BINARY_PATH=<path>` alongside `SENTRYCLI_SKIP_DOWNLOAD=1` to completely
control what binaries are downloaded and used throughout the whole process.

If you're installing the CLI with NPM from behind a proxy, the install script will
use either NPM's configured HTTPS proxy server or the value from your `HTTPS_PROXY`
environment variable.

### Homebrew

A homebrew recipe is provided in the `getsentry/tools` tap:

    brew install getsentry/tools/sentry-cli

### Docker

As of version _1.25.0_, there is an official Docker image that comes with
`sentry-cli` preinstalled. If you prefer a specific version, specify it as tag.
The latest development version is published under the `edge` tag. In production,
we recommend you to use the `latest` tag. To use it, run:

```sh
docker pull getsentry/sentry-cli
docker run --rm -v $(pwd):/work getsentry/sentry-cli --help
```

Starting version _`2.8.0`_, in case you see `"error: config value 'safe.directory' was not found;"` message,
you also need to correctly set UID and GID of mounted volumes like so:

```sh
docker run --rm -u "$(id -u):$(id -g)" -v $(pwd):/work getsentry/sentry-cli --help
```

This is required due to security issue in older `git` implementations. See [here](https://github.blog/2022-04-12-git-security-vulnerability-announced/) for more details.

## Update

To update sentry-cli to the latest version run:

```sh
sentry-cli update
```

## Compiling

In case you want to compile this yourself, you need to install at minimum the
following dependencies:

* Rust stable and Cargo
* Make, CMake and a C compiler

Use cargo to compile:

    $ cargo build

Also, there is a Dockerfile that builds an Alpine-based Docker image with
`sentry-cli` in the PATH. To build and use it, run:

```sh
docker build -t sentry-cli .
docker run --rm -v $(pwd):/work sentry-cli --help
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/getsentry/sentry-cli",
    "name": "sentry-cli",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Sentry",
    "author_email": "oss@sentry.io",
    "download_url": "https://files.pythonhosted.org/packages/be/95/f90bbbc514790cf0ecb406010eb753cc0e39482a94fa6fde0f4661450c1c/sentry_cli-2.31.1.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n  <a href=\"https://sentry.io/?utm_source=github&utm_medium=logo\" target=\"_blank\">\n    <picture>\n      <source srcset=\"https://sentry-brand.storage.googleapis.com/sentry-logo-white.png\" media=\"(prefers-color-scheme: dark)\" />\n      <source srcset=\"https://sentry-brand.storage.googleapis.com/sentry-logo-black.png\" media=\"(prefers-color-scheme: light), (prefers-color-scheme: no-preference)\" />\n      <img src=\"https://sentry-brand.storage.googleapis.com/sentry-logo-black.png\" alt=\"Sentry\" width=\"280\">\n    </picture>\n  </a>\n</p>\n\n# Official Sentry Command Line Interface\n\n[![Build Status](https://github.com/getsentry/sentry-cli/workflows/CI/badge.svg?branch=master)](https://github.com/getsentry/sentry-cli/actions?query=workflow%3ACI)\n[![GitHub release](https://img.shields.io/github/release/getsentry/sentry-cli.svg)](https://github.com/getsentry/sentry-cli/releases/latest)\n[![npm version](https://img.shields.io/npm/v/@sentry/cli.svg)](https://www.npmjs.com/package/@sentry/cli)\n[![license](https://img.shields.io/github/license/getsentry/sentry-cli.svg)](https://github.com/getsentry/sentry-cli/blob/master/LICENSE)\n\nThis is a Sentry command line client for some generic tasks. Right now this is\nprimarily used to upload debug symbols to Sentry if you are not using the\nFastlane tools.\n\n* Downloads can be found under\n  [Releases](https://github.com/getsentry/sentry-cli/releases/)\n* Documentation can be found [here](https://docs.sentry.io/hosted/learn/cli/)\n\n## Installation\n\nIf you are on OS X or Linux, you can use the automated downloader which will fetch the latest release version for you and install it:\n\n    curl -sL https://sentry.io/get-cli/ | bash\n\nWe do, however, encourage you to pin the specific version of the CLI, so your builds are always reproducible.\nTo do that, you can use the exact same method, with an additional version specifier:\n\n    curl -sL https://sentry.io/get-cli/ | SENTRY_CLI_VERSION=2.0.4 bash\n\nThis will automatically download the correct version of `sentry-cli` for your operating system and install it. If necessary, it will prompt for your admin password for `sudo`. For a different installation location or for systems without `sudo` (like Windows), you can `export INSTALL_DIR=/custom/installation/path` before running this command.\n\nIf you are using `sentry-cli` on Windows environments, [Microsoft Visual C++ Redistributable](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist) is required.\n\nTo verify it\u2019s installed correctly you can bring up the help:\n\n    sentry-cli --help\n\n### pip\n\n_New in 2.14.3_: `sentry-cli` can also be installed using `pip`:\n\n```bash\npip install sentry-cli\n```\n\n### Node\n\nAdditionally, you can also install this binary via npm:\n\n    npm install @sentry/cli\n\nWhen installing globally, make sure to have set\n[correct permissions on the global node_modules directory](https://docs.npmjs.com/getting-started/fixing-npm-permissions).\nIf this is not possible in your environment or still produces an EACCESS error,\ninstall as root:\n\n    sudo npm install -g @sentry/cli --unsafe-perm\n\nBy default, this package will download sentry-cli from the CDN managed by [Fastly](https://www.fastly.com/).\nTo use a custom CDN, set the npm config property `sentrycli_cdnurl`. The downloader will append\n`\"/<version>/sentry-cli-<dist>\"`.\n\n```sh\nnpm install @sentry/cli --sentrycli_cdnurl=https://mymirror.local/path\n```\n\nOr add property into your `.npmrc` file (https://www.npmjs.org/doc/files/npmrc.html)\n\n```rc\nsentrycli_cdnurl=https://mymirror.local/path\n```\n\nThere are a few environment variables that you can provide to control the npm installation:\n\n```\nSENTRYCLI_CDNURL=<url> # Use alternative cdn url for downloading binary\nSENTRYCLI_USE_LOCAL=1 # Use local instance of sentry-cli binary (looked up via $PATH environment)\nSENTRYCLI_SKIP_DOWNLOAD=1 # Skip downloading binary entirely\nSENTRYCLI_NO_PROGRESS_BAR=1 # Do not print the progress bar when downloading binary (default for non-TTY environments like CI)\nSENTRYCLI_LOG_STREAM=<stdout|stderr> # Changes where to redirect install script output\n```\n\nWhen using `sentry-cli` via JavaScript API or any 3rd party plugin that is consuming said API,\nyou can also use `SENTRY_BINARY_PATH=<path>` alongside `SENTRYCLI_SKIP_DOWNLOAD=1` to completely\ncontrol what binaries are downloaded and used throughout the whole process.\n\nIf you're installing the CLI with NPM from behind a proxy, the install script will\nuse either NPM's configured HTTPS proxy server or the value from your `HTTPS_PROXY`\nenvironment variable.\n\n### Homebrew\n\nA homebrew recipe is provided in the `getsentry/tools` tap:\n\n    brew install getsentry/tools/sentry-cli\n\n### Docker\n\nAs of version _1.25.0_, there is an official Docker image that comes with\n`sentry-cli` preinstalled. If you prefer a specific version, specify it as tag.\nThe latest development version is published under the `edge` tag. In production,\nwe recommend you to use the `latest` tag. To use it, run:\n\n```sh\ndocker pull getsentry/sentry-cli\ndocker run --rm -v $(pwd):/work getsentry/sentry-cli --help\n```\n\nStarting version _`2.8.0`_, in case you see `\"error: config value 'safe.directory' was not found;\"` message,\nyou also need to correctly set UID and GID of mounted volumes like so:\n\n```sh\ndocker run --rm -u \"$(id -u):$(id -g)\" -v $(pwd):/work getsentry/sentry-cli --help\n```\n\nThis is required due to security issue in older `git` implementations. See [here](https://github.blog/2022-04-12-git-security-vulnerability-announced/) for more details.\n\n## Update\n\nTo update sentry-cli to the latest version run:\n\n```sh\nsentry-cli update\n```\n\n## Compiling\n\nIn case you want to compile this yourself, you need to install at minimum the\nfollowing dependencies:\n\n* Rust stable and Cargo\n* Make, CMake and a C compiler\n\nUse cargo to compile:\n\n    $ cargo build\n\nAlso, there is a Dockerfile that builds an Alpine-based Docker image with\n`sentry-cli` in the PATH. To build and use it, run:\n\n```sh\ndocker build -t sentry-cli .\ndocker run --rm -v $(pwd):/work sentry-cli --help\n```\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "A command line utility to work with Sentry.",
    "version": "2.31.1",
    "project_urls": {
        "Homepage": "https://github.com/getsentry/sentry-cli"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "081f3293965dc0c1d86a37343569af45794d70be86b09f42bcbfc9eb8eea0088",
                "md5": "fc5c1d4b6487bb7aa14164bb730900d3",
                "sha256": "98ce4d6abaa77c5e5fa855d9554a40a2b8d3fa652b84e528d2411365f39c13d0"
            },
            "downloads": -1,
            "filename": "sentry_cli-2.31.1-py3-none-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc5c1d4b6487bb7aa14164bb730900d3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 8307877,
            "upload_time": "2024-04-30T15:12:46",
            "upload_time_iso_8601": "2024-04-30T15:12:46.510279Z",
            "url": "https://files.pythonhosted.org/packages/08/1f/3293965dc0c1d86a37343569af45794d70be86b09f42bcbfc9eb8eea0088/sentry_cli-2.31.1-py3-none-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0d96ca30aba4855c18456505fc261f6c19b78b7424231b419411d9a2879da9a",
                "md5": "d0118c4da8870c05865306c73f0a4c8d",
                "sha256": "60e0ba14c153473ffb1cfe34058368e90d30c90180ce1b5a68d3ff52a471d95c"
            },
            "downloads": -1,
            "filename": "sentry_cli-2.31.1-py3-none-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d0118c4da8870c05865306c73f0a4c8d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 7473803,
            "upload_time": "2024-04-30T15:12:49",
            "upload_time_iso_8601": "2024-04-30T15:12:49.054417Z",
            "url": "https://files.pythonhosted.org/packages/e0/d9/6ca30aba4855c18456505fc261f6c19b78b7424231b419411d9a2879da9a/sentry_cli-2.31.1-py3-none-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68bc2ad4b98f1e4491a475f45a6eeed44e27daab1bbf14747b19d3ec63ca84f3",
                "md5": "f6829286ea0ac1d12bc07ee9c55c1267",
                "sha256": "1967f1ec80d1833204d98774642d3cceea5dc1f700db7d5c835e195936072ce7"
            },
            "downloads": -1,
            "filename": "sentry_cli-2.31.1-py3-none-macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "f6829286ea0ac1d12bc07ee9c55c1267",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 15796881,
            "upload_time": "2024-04-30T15:12:51",
            "upload_time_iso_8601": "2024-04-30T15:12:51.389467Z",
            "url": "https://files.pythonhosted.org/packages/68/bc/2ad4b98f1e4491a475f45a6eeed44e27daab1bbf14747b19d3ec63ca84f3/sentry_cli-2.31.1-py3-none-macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dff8f9f8249cbdceab4b563c0faaddfe62679401427ffe81b48d52a2a84c8cf9",
                "md5": "7ebf118e2c0304d53c1d4307e0351bde",
                "sha256": "157b38c7676ef0dcb7f430e1d2113991e6927d1b499e53699633bf39b279c96d"
            },
            "downloads": -1,
            "filename": "sentry_cli-2.31.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7ebf118e2c0304d53c1d4307e0351bde",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 8803984,
            "upload_time": "2024-04-30T15:12:54",
            "upload_time_iso_8601": "2024-04-30T15:12:54.105948Z",
            "url": "https://files.pythonhosted.org/packages/df/f8/f9f8249cbdceab4b563c0faaddfe62679401427ffe81b48d52a2a84c8cf9/sentry_cli-2.31.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb6e5a5bc9e40d2ce27064ce69ded24859f3b29afdbe68de02a9658f3b90bf40",
                "md5": "ceec9135dc6cd25403bef68995f311ad",
                "sha256": "ffe67520f28ee8a20a5a5eca7b83c9262fd1a11ea7f7ee7fb03d9cabcc85e9b4"
            },
            "downloads": -1,
            "filename": "sentry_cli-2.31.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ceec9135dc6cd25403bef68995f311ad",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 8829601,
            "upload_time": "2024-04-30T15:12:57",
            "upload_time_iso_8601": "2024-04-30T15:12:57.552356Z",
            "url": "https://files.pythonhosted.org/packages/eb/6e/5a5bc9e40d2ce27064ce69ded24859f3b29afdbe68de02a9658f3b90bf40/sentry_cli-2.31.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df14d0c7a0bf4e1ad7a4748495c328fb220d616c23e10e625aac195d1051a8df",
                "md5": "9fc2fc16193a5380936ac2c4a8c2e09c",
                "sha256": "358fddbfb514d7a9306f2124da954004e364de9807491e4e0f6aeed641e8a560"
            },
            "downloads": -1,
            "filename": "sentry_cli-2.31.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9fc2fc16193a5380936ac2c4a8c2e09c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 9821359,
            "upload_time": "2024-04-30T15:12:59",
            "upload_time_iso_8601": "2024-04-30T15:12:59.982240Z",
            "url": "https://files.pythonhosted.org/packages/df/14/d0c7a0bf4e1ad7a4748495c328fb220d616c23e10e625aac195d1051a8df/sentry_cli-2.31.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ccf573cbc35086b6f2302b0c60b2156dfbe5ca5bed96763f53b9929544b1725a",
                "md5": "30af0f6c58b8410b5eec9eb6737d1dfb",
                "sha256": "c6ffe9435714fa4eed9ef4e34f1ade36cb4558da2c87cb0f8c1e9986f1ad9b54"
            },
            "downloads": -1,
            "filename": "sentry_cli-2.31.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30af0f6c58b8410b5eec9eb6737d1dfb",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 11160854,
            "upload_time": "2024-04-30T15:13:02",
            "upload_time_iso_8601": "2024-04-30T15:13:02.524133Z",
            "url": "https://files.pythonhosted.org/packages/cc/f5/73cbc35086b6f2302b0c60b2156dfbe5ca5bed96763f53b9929544b1725a/sentry_cli-2.31.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f453f7a85ca3510e4e8002fea3ea9c0431c7fc1c20e5886a7bbf674781c2e8f6",
                "md5": "bd1983946ecd9cbf673625ecd30b3cba",
                "sha256": "027f83da7eb04329442f7030e04abb2b436d9998fcec63f0923e6171918b0ba8"
            },
            "downloads": -1,
            "filename": "sentry_cli-2.31.1-py3-none-win32.whl",
            "has_sig": false,
            "md5_digest": "bd1983946ecd9cbf673625ecd30b3cba",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 6582275,
            "upload_time": "2024-04-30T15:13:05",
            "upload_time_iso_8601": "2024-04-30T15:13:05.183964Z",
            "url": "https://files.pythonhosted.org/packages/f4/53/f7a85ca3510e4e8002fea3ea9c0431c7fc1c20e5886a7bbf674781c2e8f6/sentry_cli-2.31.1-py3-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f75a3d09090c8608d0f44f280b38e5c37bda9a560606aa36ad2dd3b4d1cd7401",
                "md5": "4dda6229972e59a343a9a21eed57ebe2",
                "sha256": "367911a4df0150ce74a0e798d614ccca9a672e2c2dc727c172b0d989e3942a57"
            },
            "downloads": -1,
            "filename": "sentry_cli-2.31.1-py3-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4dda6229972e59a343a9a21eed57ebe2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 7617543,
            "upload_time": "2024-04-30T15:13:07",
            "upload_time_iso_8601": "2024-04-30T15:13:07.722705Z",
            "url": "https://files.pythonhosted.org/packages/f7/5a/3d09090c8608d0f44f280b38e5c37bda9a560606aa36ad2dd3b4d1cd7401/sentry_cli-2.31.1-py3-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be95f90bbbc514790cf0ecb406010eb753cc0e39482a94fa6fde0f4661450c1c",
                "md5": "646fe6bdf1c8e15b57d7cc81626ccf6c",
                "sha256": "719ec9eb64213fb1f8dceefd4da6c77c5904e01b2cfece332825f31caff6040c"
            },
            "downloads": -1,
            "filename": "sentry_cli-2.31.1.tar.gz",
            "has_sig": false,
            "md5_digest": "646fe6bdf1c8e15b57d7cc81626ccf6c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 194300,
            "upload_time": "2024-04-30T15:13:09",
            "upload_time_iso_8601": "2024-04-30T15:13:09.920912Z",
            "url": "https://files.pythonhosted.org/packages/be/95/f90bbbc514790cf0ecb406010eb753cc0e39482a94fa6fde0f4661450c1c/sentry_cli-2.31.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-30 15:13:09",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "getsentry",
    "github_project": "sentry-cli",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "sentry-cli"
}
        
Elapsed time: 0.23546s