scylla-cqlsh


Namescylla-cqlsh JSON
Version 6.0.27 PyPI version JSON
download
home_pagehttps://github.com/scylladb/scylla-cqlsh
Summarycqlsh is a Python-based command-line client for running CQL commands on a scylla cluster.
upload_time2025-10-19 07:13:59
maintainerNone
docs_urlNone
authorIsrael Fruchter
requires_python>=3.6
licenseApache
keywords cql scylladb cassandra cqlsh
VCS
bugtrack_url
requirements scylla-driver PyYAML click lz4
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # scylla-cqlsh

Command line tool to connect to [scylladb](http://www.scylladb.com) (or Apache Cassandra)

A fork of the cqlsh tool from https://github.com/apache/cassandra

![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/pypi/scylla-cqlsh)
![GitHub branch checks state](https://img.shields.io/github/checks-status/scylladb/scylla-cqlsh/master)
![PyPI](https://img.shields.io/pypi/v/scylla-cqlsh)

# Quickstart

```bash
pip install scylla-cqlsh

cqlsh ${SCYLLA_HOST} -e 'SELECT * FROM system.local'

# or just using it interactively
cqlsh ${SCYLLA_HOST} 

# or using it with scylla-cloud
cqlsh --cloudconf [path to connection bundle downloaded]

# running with docker image interactively
docker run -it scylladb/scylla-cqlsh ${SCYLLA_HOST}
```



# Contributing

Feel free to open a PR/issues with suggestion and improvement
Try covering you suggested change with a test, and the instruction 
for running tests are below

## Testing

Dependent 
* python 2.7/3.x (recommend virtualenv)
* minimum java8

```bash
pip install -e .
pip install -r pylib/requirements.txt

# run scylla with docker
docker run  -d scylladb/scylla:latest --cluster-name test

export DOCKER_ID=$(docker run -d scylladb/scylla:latest --cluster-name test)
export CQL_TEST_HOST=$(docker inspect --format='{{ .NetworkSettings.IPAddress }}' ${DOCKER_ID})
while ! nc -z ${CQL_TEST_HOST} 9042; do   
  sleep 0.1 # wait for 1/10 of the second before check again
done
          
 
# run scylla with CCM
ccm create cqlsh_cluster -n 1 --scylla --version unstable/master:latest
ccm start

pytest
```

## Build from source

```bash
pip install build
# optionally can disable the usage of cython
# export CQLSH_NO_CYTHON=true
python -m build -w
...
Successfully built scylla_cqlsh-6.0.24.dev0+gb09bc79361.d20240910-py3-none-any.whl
```

## Creation of the repo

A reference on how this we forked out of cassandra repo
So we can repeat the process if we want to bring change back it

```bash
git clone  -b trunk --single-branch git@github.com:apache/cassandra.git
sudo apt-get install git-filter-repo
cd cassandra

git filter-repo --path bin/cqlsh --path bin/cqlsh.py --path pylib/
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/scylladb/scylla-cqlsh",
    "name": "scylla-cqlsh",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "cql, scylladb, cassandra, cqlsh",
    "author": "Israel Fruchter",
    "author_email": "fruch@scylladb.com",
    "download_url": "https://files.pythonhosted.org/packages/b2/3f/08048e3ff6b41c681978874ace06c3644c8fad65371354bb7eef610812fe/scylla_cqlsh-6.0.27.tar.gz",
    "platform": null,
    "description": "# scylla-cqlsh\n\nCommand line tool to connect to [scylladb](http://www.scylladb.com) (or Apache Cassandra)\n\nA fork of the cqlsh tool from https://github.com/apache/cassandra\n\n![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/pypi/scylla-cqlsh)\n![GitHub branch checks state](https://img.shields.io/github/checks-status/scylladb/scylla-cqlsh/master)\n![PyPI](https://img.shields.io/pypi/v/scylla-cqlsh)\n\n# Quickstart\n\n```bash\npip install scylla-cqlsh\n\ncqlsh ${SCYLLA_HOST} -e 'SELECT * FROM system.local'\n\n# or just using it interactively\ncqlsh ${SCYLLA_HOST} \n\n# or using it with scylla-cloud\ncqlsh --cloudconf [path to connection bundle downloaded]\n\n# running with docker image interactively\ndocker run -it scylladb/scylla-cqlsh ${SCYLLA_HOST}\n```\n\n\n\n# Contributing\n\nFeel free to open a PR/issues with suggestion and improvement\nTry covering you suggested change with a test, and the instruction \nfor running tests are below\n\n## Testing\n\nDependent \n* python 2.7/3.x (recommend virtualenv)\n* minimum java8\n\n```bash\npip install -e .\npip install -r pylib/requirements.txt\n\n# run scylla with docker\ndocker run  -d scylladb/scylla:latest --cluster-name test\n\nexport DOCKER_ID=$(docker run -d scylladb/scylla:latest --cluster-name test)\nexport CQL_TEST_HOST=$(docker inspect --format='{{ .NetworkSettings.IPAddress }}' ${DOCKER_ID})\nwhile ! nc -z ${CQL_TEST_HOST} 9042; do   \n  sleep 0.1 # wait for 1/10 of the second before check again\ndone\n          \n \n# run scylla with CCM\nccm create cqlsh_cluster -n 1 --scylla --version unstable/master:latest\nccm start\n\npytest\n```\n\n## Build from source\n\n```bash\npip install build\n# optionally can disable the usage of cython\n# export CQLSH_NO_CYTHON=true\npython -m build -w\n...\nSuccessfully built scylla_cqlsh-6.0.24.dev0+gb09bc79361.d20240910-py3-none-any.whl\n```\n\n## Creation of the repo\n\nA reference on how this we forked out of cassandra repo\nSo we can repeat the process if we want to bring change back it\n\n```bash\ngit clone  -b trunk --single-branch git@github.com:apache/cassandra.git\nsudo apt-get install git-filter-repo\ncd cassandra\n\ngit filter-repo --path bin/cqlsh --path bin/cqlsh.py --path pylib/\n```\n",
    "bugtrack_url": null,
    "license": "Apache",
    "summary": "cqlsh is a Python-based command-line client for running CQL commands on a scylla cluster.",
    "version": "6.0.27",
    "project_urls": {
        "Changelog": "https://github.com/scylladb/scylla-cqlsh#changelog",
        "Documentation": "https://cassandra.apache.org/doc/latest/tools/cqlsh.html",
        "Homepage": "https://github.com/scylladb/scylla-cqlsh"
    },
    "split_keywords": [
        "cql",
        " scylladb",
        " cassandra",
        " cqlsh"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b52d91fd3d6385cda4eda23e7f2bdd7aaaa3629d28b8d23f8b24b48243b1f0ff",
                "md5": "0fe3802d4886c7295fc09bbccfee4d0a",
                "sha256": "932767a063cc9112c47a3370f8f47e35cd166b6d6b5968a10b30a9c1545ebb38"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0fe3802d4886c7295fc09bbccfee4d0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 537408,
            "upload_time": "2025-10-19T07:12:51",
            "upload_time_iso_8601": "2025-10-19T07:12:51.121411Z",
            "url": "https://files.pythonhosted.org/packages/b5/2d/91fd3d6385cda4eda23e7f2bdd7aaaa3629d28b8d23f8b24b48243b1f0ff/scylla_cqlsh-6.0.27-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b181e1200a10567bf0688f647e5b6de9a3494903382964919b50178840e444ca",
                "md5": "4cd69f80dca3d7c1587cb4205162ab0b",
                "sha256": "d8e82f9459471fc9b1c484a96a3c546bec3f7287a908ca887f025c6963672589"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4cd69f80dca3d7c1587cb4205162ab0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 496762,
            "upload_time": "2025-10-19T07:12:52",
            "upload_time_iso_8601": "2025-10-19T07:12:52.665813Z",
            "url": "https://files.pythonhosted.org/packages/b1/81/e1200a10567bf0688f647e5b6de9a3494903382964919b50178840e444ca/scylla_cqlsh-6.0.27-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee27e808d190f4627d57ca6a7b51bcf8657b5bdd6b4aee058eb6f2d594103805",
                "md5": "b0f1626a80a7bcc8de5250b886f751d0",
                "sha256": "2534a56d8823432792c7b76128f57b53ae04fa063f81b4f7e1804e539f866ea0"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b0f1626a80a7bcc8de5250b886f751d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 2934564,
            "upload_time": "2025-10-19T07:12:53",
            "upload_time_iso_8601": "2025-10-19T07:12:53.937092Z",
            "url": "https://files.pythonhosted.org/packages/ee/27/e808d190f4627d57ca6a7b51bcf8657b5bdd6b4aee058eb6f2d594103805/scylla_cqlsh-6.0.27-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c04fb8e895bf016d2cc7ceaf67aa2ffb2025ef8f37274dc19e3f3930c7a00a44",
                "md5": "a993cf1324cbc3eaa65675796ba9bfbd",
                "sha256": "6f1edf18c5d8e6c11dcdef1e7607e2f72198830f0bec9ab200310b44a279ad35"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a993cf1324cbc3eaa65675796ba9bfbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 2939123,
            "upload_time": "2025-10-19T07:12:55",
            "upload_time_iso_8601": "2025-10-19T07:12:55.394787Z",
            "url": "https://files.pythonhosted.org/packages/c0/4f/b8e895bf016d2cc7ceaf67aa2ffb2025ef8f37274dc19e3f3930c7a00a44/scylla_cqlsh-6.0.27-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71b32db1d31a67726105caa88d97d4cc44db691f1e3d63d3e1e65dfd57619a84",
                "md5": "2185725b9c739a3faa1e3b651b761640",
                "sha256": "ce311361ddec41c5ad85fb5674515b3312fd2496b2c1486fc76bc7dfbf2e7148"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2185725b9c739a3faa1e3b651b761640",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 2866021,
            "upload_time": "2025-10-19T07:12:56",
            "upload_time_iso_8601": "2025-10-19T07:12:56.837259Z",
            "url": "https://files.pythonhosted.org/packages/71/b3/2db1d31a67726105caa88d97d4cc44db691f1e3d63d3e1e65dfd57619a84/scylla_cqlsh-6.0.27-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea32376b24d8f3e6ed4b6a07fb445b8b55d003ad82a80712c295b459ec9d3009",
                "md5": "3f8158c65429fada408fce86e9d36b4a",
                "sha256": "8be3985f3ae3b5938da98cae726767bce36b2e01ee38ea1652691b07506f8535"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3f8158c65429fada408fce86e9d36b4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 2911818,
            "upload_time": "2025-10-19T07:12:58",
            "upload_time_iso_8601": "2025-10-19T07:12:58.065546Z",
            "url": "https://files.pythonhosted.org/packages/ea/32/376b24d8f3e6ed4b6a07fb445b8b55d003ad82a80712c295b459ec9d3009/scylla_cqlsh-6.0.27-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdf3f355b41d3e2598330723c034718ceb0f8c8d612f66a5df78f3194a18c3a8",
                "md5": "fc4e1bd84bbc415b62f109f03a7181a2",
                "sha256": "cd5d06b6d7855cbcb63360a0f5d7dc9eb1564ffdaa1620739184a332af6a365b"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "fc4e1bd84bbc415b62f109f03a7181a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 387018,
            "upload_time": "2025-10-19T07:12:59",
            "upload_time_iso_8601": "2025-10-19T07:12:59.206154Z",
            "url": "https://files.pythonhosted.org/packages/fd/f3/f355b41d3e2598330723c034718ceb0f8c8d612f66a5df78f3194a18c3a8/scylla_cqlsh-6.0.27-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1159c41e7cbbb3ea2f36d0623cda77cd80399027ebae0cfde857d999265870d5",
                "md5": "1df2cb643127aec92af1509808ee59a4",
                "sha256": "31d33d1bf6d8923be1a2b8c558b9db840251edc7c2cea08941b7f20dfc015cf4"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1df2cb643127aec92af1509808ee59a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 441869,
            "upload_time": "2025-10-19T07:13:00",
            "upload_time_iso_8601": "2025-10-19T07:13:00.387778Z",
            "url": "https://files.pythonhosted.org/packages/11/59/c41e7cbbb3ea2f36d0623cda77cd80399027ebae0cfde857d999265870d5/scylla_cqlsh-6.0.27-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db356836e3c3342a540311f906f03f4051dc36fad3f57e66d9884c9396e184dd",
                "md5": "4d14d4fe85ef7aea26e45cc5cfe46572",
                "sha256": "b3c2c71c2773fc8b45cc98b7d2c50f73d053d6d32c2e0fb86814e57fc9681fb8"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d14d4fe85ef7aea26e45cc5cfe46572",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 551293,
            "upload_time": "2025-10-19T07:13:01",
            "upload_time_iso_8601": "2025-10-19T07:13:01.653596Z",
            "url": "https://files.pythonhosted.org/packages/db/35/6836e3c3342a540311f906f03f4051dc36fad3f57e66d9884c9396e184dd/scylla_cqlsh-6.0.27-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c97a93effa07a42d3fb67ec1546bffae2ccbcd653aba990ee04d663be37da9be",
                "md5": "30d372a52ffa59c1f77ecdac2a5660ec",
                "sha256": "6f67afcf6677140fe63977bf40b263a42962e72f17d7f79e5dbba235842f9285"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "30d372a52ffa59c1f77ecdac2a5660ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 511899,
            "upload_time": "2025-10-19T07:13:02",
            "upload_time_iso_8601": "2025-10-19T07:13:02.603932Z",
            "url": "https://files.pythonhosted.org/packages/c9/7a/93effa07a42d3fb67ec1546bffae2ccbcd653aba990ee04d663be37da9be/scylla_cqlsh-6.0.27-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd8ffa845b1639c9860b9b69e1c8bd11d0c084318c04902e4660f73677b532a2",
                "md5": "385c7091d320b2662a115171e0172875",
                "sha256": "5c3b416be8be370cbd8f0b91942c63f59f792c1d69bae93fe37d3076d051a288"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "385c7091d320b2662a115171e0172875",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 2968497,
            "upload_time": "2025-10-19T07:13:03",
            "upload_time_iso_8601": "2025-10-19T07:13:03.617849Z",
            "url": "https://files.pythonhosted.org/packages/dd/8f/fa845b1639c9860b9b69e1c8bd11d0c084318c04902e4660f73677b532a2/scylla_cqlsh-6.0.27-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76e0ff4107ec0583bc04940b16ca8c92b31662d8fcdb0529b7a5c14c9dd57cba",
                "md5": "71ba1bba872013642559d20d7ad5f292",
                "sha256": "bfe6c01a5dcfc3da902a5f0088c6877da849ce90c65d320c5cd6429fbe6aaa67"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "71ba1bba872013642559d20d7ad5f292",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 2974836,
            "upload_time": "2025-10-19T07:13:04",
            "upload_time_iso_8601": "2025-10-19T07:13:04.667967Z",
            "url": "https://files.pythonhosted.org/packages/76/e0/ff4107ec0583bc04940b16ca8c92b31662d8fcdb0529b7a5c14c9dd57cba/scylla_cqlsh-6.0.27-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db2632f41cb463c5c5e048b704e113a1cfa349d53f545903c565635d96816832",
                "md5": "f66716a36b49e76da4063c404b1a7d38",
                "sha256": "3b36d551376ffdeaecdfcad6df9fde9340091fb4b0f6a070974f53e85959e722"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f66716a36b49e76da4063c404b1a7d38",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 2900009,
            "upload_time": "2025-10-19T07:13:05",
            "upload_time_iso_8601": "2025-10-19T07:13:05.863336Z",
            "url": "https://files.pythonhosted.org/packages/db/26/32f41cb463c5c5e048b704e113a1cfa349d53f545903c565635d96816832/scylla_cqlsh-6.0.27-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd1a2934ba3218ba81aeac27e44fee6ef6fef17ff98e4849752acb431243a717",
                "md5": "2c8c910a5d965a4af8048980c6827946",
                "sha256": "0a442a9d023a651103b09bca18559e06965072bc36c7d31b45b0e929615f6463"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c8c910a5d965a4af8048980c6827946",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 2946268,
            "upload_time": "2025-10-19T07:13:07",
            "upload_time_iso_8601": "2025-10-19T07:13:07.104277Z",
            "url": "https://files.pythonhosted.org/packages/fd/1a/2934ba3218ba81aeac27e44fee6ef6fef17ff98e4849752acb431243a717/scylla_cqlsh-6.0.27-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f28e691057759d93651d54c1c0e5b0efa998f59712cc8f6449eb3789d146e65",
                "md5": "54e5b460ae7786308e324cf9dddf149e",
                "sha256": "21ea9319cd50ed7d9392f75788c416df3573832a70cac5356808d354ed44c785"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "54e5b460ae7786308e324cf9dddf149e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 386870,
            "upload_time": "2025-10-19T07:13:08",
            "upload_time_iso_8601": "2025-10-19T07:13:08.472934Z",
            "url": "https://files.pythonhosted.org/packages/6f/28/e691057759d93651d54c1c0e5b0efa998f59712cc8f6449eb3789d146e65/scylla_cqlsh-6.0.27-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fde912697459ec8663a5b0ede87134bda39b403a9a68238330a031c2748132f5",
                "md5": "7a3e0c6dea09dbb0fbf7f8f8ac561d91",
                "sha256": "b5daf1b20cf5c7981ad20191f560d98346764f59d553f74249039a0e19e2a2d8"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7a3e0c6dea09dbb0fbf7f8f8ac561d91",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 440549,
            "upload_time": "2025-10-19T07:13:09",
            "upload_time_iso_8601": "2025-10-19T07:13:09.497120Z",
            "url": "https://files.pythonhosted.org/packages/fd/e9/12697459ec8663a5b0ede87134bda39b403a9a68238330a031c2748132f5/scylla_cqlsh-6.0.27-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c350494d9e04d366d8f336e66bba364ce0d3160f49ef5f1772df53bb4944eda",
                "md5": "89e271b441d4bc57ec27ceaa9bde0ff1",
                "sha256": "3a3134bb83195227ac4361eaf0b7d7044371dbb3bdd085748baabf76b4b658b1"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "89e271b441d4bc57ec27ceaa9bde0ff1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 538531,
            "upload_time": "2025-10-19T07:13:10",
            "upload_time_iso_8601": "2025-10-19T07:13:10.611178Z",
            "url": "https://files.pythonhosted.org/packages/1c/35/0494d9e04d366d8f336e66bba364ce0d3160f49ef5f1772df53bb4944eda/scylla_cqlsh-6.0.27-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f397e2abc2f6e3c62c2209534d537e30856c8517c037b49b832adeb144440207",
                "md5": "1742b8a5217c40c9d240a1f4cab4d167",
                "sha256": "3fabd02b8cb12d9f9ef1fc39178f17ca6da5a055b19d473942042dac2a0989e1"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1742b8a5217c40c9d240a1f4cab4d167",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 489264,
            "upload_time": "2025-10-19T07:13:11",
            "upload_time_iso_8601": "2025-10-19T07:13:11.791147Z",
            "url": "https://files.pythonhosted.org/packages/f3/97/e2abc2f6e3c62c2209534d537e30856c8517c037b49b832adeb144440207/scylla_cqlsh-6.0.27-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6eef7043b9bac0b462e24ff5e8f9f9fe3f61a88d2a01127f8aff4401605feffd",
                "md5": "3934990b739abcd25c352d2bf3763280",
                "sha256": "5bf4e8523a43aa7e340cfb7ad38fdd6cb980919654d1ac4a7f80d6681291cdc1"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3934990b739abcd25c352d2bf3763280",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 3019903,
            "upload_time": "2025-10-19T07:13:13",
            "upload_time_iso_8601": "2025-10-19T07:13:13.168937Z",
            "url": "https://files.pythonhosted.org/packages/6e/ef/7043b9bac0b462e24ff5e8f9f9fe3f61a88d2a01127f8aff4401605feffd/scylla_cqlsh-6.0.27-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb4f346042c799b1a254aff5435d4a4abaf4353b85ff6fdfc9bdce01d3e4dc0d",
                "md5": "a4da16bff7a97a60fc384c59102e0823",
                "sha256": "d20a3f107c89179ac8f3edbc4cf87bf6b3416da34a275864a24ab3fed0cb3f51"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a4da16bff7a97a60fc384c59102e0823",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 2925109,
            "upload_time": "2025-10-19T07:13:14",
            "upload_time_iso_8601": "2025-10-19T07:13:14.667871Z",
            "url": "https://files.pythonhosted.org/packages/cb/4f/346042c799b1a254aff5435d4a4abaf4353b85ff6fdfc9bdce01d3e4dc0d/scylla_cqlsh-6.0.27-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79e8523eb2dca28e69d58ceb51543b23f0dea961b82f4735cb6aed2489de8e8c",
                "md5": "564e7a94b7a8adebfa01b182f0d20152",
                "sha256": "d39702a557f71cd27cac22eb3e8344866dc70ab9614a8d7981ccc480ebd14ec2"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "564e7a94b7a8adebfa01b182f0d20152",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 2833845,
            "upload_time": "2025-10-19T07:13:15",
            "upload_time_iso_8601": "2025-10-19T07:13:15.847949Z",
            "url": "https://files.pythonhosted.org/packages/79/e8/523eb2dca28e69d58ceb51543b23f0dea961b82f4735cb6aed2489de8e8c/scylla_cqlsh-6.0.27-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2349094a785b5bae9ccdb38c0d09fbede655c03908622a5eae7bcc5db43df55",
                "md5": "74f5d5844a1eff2348c1b9ee45f65a90",
                "sha256": "2c90a40b71b37e9ffb7b68e7bbb309f8b1a79ef96b0bd7ce960470a83c2e5a2e"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74f5d5844a1eff2348c1b9ee45f65a90",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 2968317,
            "upload_time": "2025-10-19T07:13:17",
            "upload_time_iso_8601": "2025-10-19T07:13:17.328842Z",
            "url": "https://files.pythonhosted.org/packages/b2/34/9094a785b5bae9ccdb38c0d09fbede655c03908622a5eae7bcc5db43df55/scylla_cqlsh-6.0.27-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "25d77a0e950117be81baf318b8e36b56d6998ec967ee4ec6934d49e75655bdb1",
                "md5": "afa1874d45b0562e2c13f55d9abfacaf",
                "sha256": "800b9c00de90a1514794758f625a6f1767fff70a2c7c1830cfcdb98fb6f2fad6"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "afa1874d45b0562e2c13f55d9abfacaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 392486,
            "upload_time": "2025-10-19T07:13:18",
            "upload_time_iso_8601": "2025-10-19T07:13:18.819279Z",
            "url": "https://files.pythonhosted.org/packages/25/d7/7a0e950117be81baf318b8e36b56d6998ec967ee4ec6934d49e75655bdb1/scylla_cqlsh-6.0.27-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3294da2e6ff30c7e9efc7f3b8283bd251ab754b6470b10d2cd83d4ef5967b82d",
                "md5": "4caa5a03cc769d5fb148f88f1b9c3aa6",
                "sha256": "43877aae8df7a90285972d331a705af77f09c58fe45461da8034d271ac52f7b1"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4caa5a03cc769d5fb148f88f1b9c3aa6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 447109,
            "upload_time": "2025-10-19T07:13:20",
            "upload_time_iso_8601": "2025-10-19T07:13:20.039608Z",
            "url": "https://files.pythonhosted.org/packages/32/94/da2e6ff30c7e9efc7f3b8283bd251ab754b6470b10d2cd83d4ef5967b82d/scylla_cqlsh-6.0.27-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "125fe1abe8d88dcd7779971627182f197f58fdbfcc4efc1a45db067bc39b720b",
                "md5": "af6ee449ce41c244a52596a607f8c815",
                "sha256": "7e91f321c95bb0feee9cf0283a8bedbaf2dde4bf7f9fc75e60d9e616b06eb1a4"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af6ee449ce41c244a52596a607f8c815",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 536003,
            "upload_time": "2025-10-19T07:13:21",
            "upload_time_iso_8601": "2025-10-19T07:13:21.037381Z",
            "url": "https://files.pythonhosted.org/packages/12/5f/e1abe8d88dcd7779971627182f197f58fdbfcc4efc1a45db067bc39b720b/scylla_cqlsh-6.0.27-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e93d74fad6f8f32e4e9d06d8d8f8b6070a1a32408c7a8e91adfd46e9ed13a711",
                "md5": "ea77d559d16a4a9da8d62e1c7161b57a",
                "sha256": "28ff98967e163c0187c808a11179a54dc90b1705be60f14ad7fe24ead97a32bc"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ea77d559d16a4a9da8d62e1c7161b57a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 487602,
            "upload_time": "2025-10-19T07:13:22",
            "upload_time_iso_8601": "2025-10-19T07:13:22.015072Z",
            "url": "https://files.pythonhosted.org/packages/e9/3d/74fad6f8f32e4e9d06d8d8f8b6070a1a32408c7a8e91adfd46e9ed13a711/scylla_cqlsh-6.0.27-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7866f1248b0bb8dfaf8b89ba754d20b8b68f6ad8395b6f32a4ebd7241e48fdd7",
                "md5": "bedafc584fffe70789333d437acfa2ff",
                "sha256": "416aac0f1fb1f3a3a9816e60e749050b111c59f24bbe0404da7be07b7789ae0b"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bedafc584fffe70789333d437acfa2ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 2977222,
            "upload_time": "2025-10-19T07:13:23",
            "upload_time_iso_8601": "2025-10-19T07:13:23.311303Z",
            "url": "https://files.pythonhosted.org/packages/78/66/f1248b0bb8dfaf8b89ba754d20b8b68f6ad8395b6f32a4ebd7241e48fdd7/scylla_cqlsh-6.0.27-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92415df0f1d39c9869109eb078b678e9c6b74409044c35f30a9c01962b6c3183",
                "md5": "c4f0ecf132dc1a0f8f04f8d0d35a6149",
                "sha256": "d07ec60b3cfcea93f900c30a1bc811d420c1cf6fbfe3d49eb6f60a5a515988e1"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c4f0ecf132dc1a0f8f04f8d0d35a6149",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 2888531,
            "upload_time": "2025-10-19T07:13:24",
            "upload_time_iso_8601": "2025-10-19T07:13:24.582126Z",
            "url": "https://files.pythonhosted.org/packages/92/41/5df0f1d39c9869109eb078b678e9c6b74409044c35f30a9c01962b6c3183/scylla_cqlsh-6.0.27-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39aa27741a083d2cc5424d74baf7fd3972b3d609c98d30334e0f53b28ed23cfd",
                "md5": "5d8d5f71a0bd68d9108d6f979876b6e8",
                "sha256": "22be70dcd7fc5837a4ecfeae4cefddb6e95f9b9de414bbe7924647bff7a4daee"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5d8d5f71a0bd68d9108d6f979876b6e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 2803980,
            "upload_time": "2025-10-19T07:13:25",
            "upload_time_iso_8601": "2025-10-19T07:13:25.833916Z",
            "url": "https://files.pythonhosted.org/packages/39/aa/27741a083d2cc5424d74baf7fd3972b3d609c98d30334e0f53b28ed23cfd/scylla_cqlsh-6.0.27-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a7a660560a6b6516f4e8f6d62ade56cbe4d0faf00b4a020595d2dd4f4e2a448",
                "md5": "eff69888a58f8599d0ce6b8a4529f420",
                "sha256": "e7ab29fb44db82966a8f648caa0ca9bf565cc869455a8326ced69b0ac6c96e9d"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eff69888a58f8599d0ce6b8a4529f420",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 2929276,
            "upload_time": "2025-10-19T07:13:27",
            "upload_time_iso_8601": "2025-10-19T07:13:27.150860Z",
            "url": "https://files.pythonhosted.org/packages/2a/7a/660560a6b6516f4e8f6d62ade56cbe4d0faf00b4a020595d2dd4f4e2a448/scylla_cqlsh-6.0.27-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6942cec0a148eab44ec057709114a972ca2c13d53d3410299ef7bb83190dd0a8",
                "md5": "7ae2d3ba43520082dccef96b07196046",
                "sha256": "b5402eaa75c1bcf0274a3e91dae4f28728b3fa963c31576ede2b0cc5ec8677f5"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "7ae2d3ba43520082dccef96b07196046",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 391081,
            "upload_time": "2025-10-19T07:13:28",
            "upload_time_iso_8601": "2025-10-19T07:13:28.521893Z",
            "url": "https://files.pythonhosted.org/packages/69/42/cec0a148eab44ec057709114a972ca2c13d53d3410299ef7bb83190dd0a8/scylla_cqlsh-6.0.27-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dce73f36156c4f893bd5178e6efb7c7f034d47ac6e9d847a5e617256b2d36fd3",
                "md5": "8184aa089fe0ed54eae41850384df65c",
                "sha256": "ef5c006f93fba50d63afbd0a4e8c395c249575f137c0a8e3a2a878242bbb550a"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8184aa089fe0ed54eae41850384df65c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 445615,
            "upload_time": "2025-10-19T07:13:29",
            "upload_time_iso_8601": "2025-10-19T07:13:29.903457Z",
            "url": "https://files.pythonhosted.org/packages/dc/e7/3f36156c4f893bd5178e6efb7c7f034d47ac6e9d847a5e617256b2d36fd3/scylla_cqlsh-6.0.27-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "888f92c9d014dc0a6812bb7f37f9e544e6d2aecc15869d5b5090869bc52c69e8",
                "md5": "52f0df83776d48d5fcf947a1b8f4985e",
                "sha256": "2305b9573d92b9a658b58a203bf593f6432eb49ac045dabe5c564d00742b3eb6"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52f0df83776d48d5fcf947a1b8f4985e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 535462,
            "upload_time": "2025-10-19T07:13:31",
            "upload_time_iso_8601": "2025-10-19T07:13:31.030168Z",
            "url": "https://files.pythonhosted.org/packages/88/8f/92c9d014dc0a6812bb7f37f9e544e6d2aecc15869d5b5090869bc52c69e8/scylla_cqlsh-6.0.27-cp314-cp314-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa8a4152c432d5236964c2c8916a261c880a7b477b71bf0b4db966dfb4c31abe",
                "md5": "cd58cf4df0ecf2ad634b33c5c3f7db45",
                "sha256": "88f537d6c328b45a4e9cdb8a7cf9ed8a7da18772466c17db9846c0f8216adcdb"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cd58cf4df0ecf2ad634b33c5c3f7db45",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 492175,
            "upload_time": "2025-10-19T07:13:31",
            "upload_time_iso_8601": "2025-10-19T07:13:31.941356Z",
            "url": "https://files.pythonhosted.org/packages/fa/8a/4152c432d5236964c2c8916a261c880a7b477b71bf0b4db966dfb4c31abe/scylla_cqlsh-6.0.27-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "38b5d0d48aa1033f3e5b12830d5b7d5cc44c17c29d7de130c81a582421fc688f",
                "md5": "e6098fd1d028d74cbbae3077b11a87dc",
                "sha256": "05b9d53e86e0b56938e2be2c17aa3bbc9fee2501e4c5cf081928fda7f33995ea"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6098fd1d028d74cbbae3077b11a87dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 2939851,
            "upload_time": "2025-10-19T07:13:33",
            "upload_time_iso_8601": "2025-10-19T07:13:33.116060Z",
            "url": "https://files.pythonhosted.org/packages/38/b5/d0d48aa1033f3e5b12830d5b7d5cc44c17c29d7de130c81a582421fc688f/scylla_cqlsh-6.0.27-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "09e94534e619816503962238d4ca1c36c6d48f0955be11feedfad00664ba98ef",
                "md5": "3928085198db2e571a937b3eca583490",
                "sha256": "6880af5d32c0f92b7f5838b57a2f0ff3ee049d18aa1fcb22992f01a4d4c031a2"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3928085198db2e571a937b3eca583490",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 2881355,
            "upload_time": "2025-10-19T07:13:34",
            "upload_time_iso_8601": "2025-10-19T07:13:34.428156Z",
            "url": "https://files.pythonhosted.org/packages/09/e9/4534e619816503962238d4ca1c36c6d48f0955be11feedfad00664ba98ef/scylla_cqlsh-6.0.27-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b4aa5464b6ec5a38e497c3a1320ac6668393df56846827c3f7a8215aa09659c",
                "md5": "c45267a7359516db87f2455a93823a01",
                "sha256": "d078a5a3331a2d39738b84973aac5612933d0ed4a1fe7767cf9cffd88f8303aa"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c45267a7359516db87f2455a93823a01",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 2797138,
            "upload_time": "2025-10-19T07:13:36",
            "upload_time_iso_8601": "2025-10-19T07:13:36.183145Z",
            "url": "https://files.pythonhosted.org/packages/9b/4a/a5464b6ec5a38e497c3a1320ac6668393df56846827c3f7a8215aa09659c/scylla_cqlsh-6.0.27-cp314-cp314-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5677f8a0415657cd21b6364e43d1e764aefbd0fb86fcfda58f239ee2f086f273",
                "md5": "c8009d7e661dd29cbd2109e253c76347",
                "sha256": "759f13a40d0d023608bf68acbb6c0a0dc155ccfd9b421571a6be88fc16883528"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c8009d7e661dd29cbd2109e253c76347",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 2895705,
            "upload_time": "2025-10-19T07:13:37",
            "upload_time_iso_8601": "2025-10-19T07:13:37.400262Z",
            "url": "https://files.pythonhosted.org/packages/56/77/f8a0415657cd21b6364e43d1e764aefbd0fb86fcfda58f239ee2f086f273/scylla_cqlsh-6.0.27-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea9ee0fe1cb761d35991a04ffb526cf1d68188aca3c0652fb3da9782ea8686eb",
                "md5": "1b0786fdd3540240714ef1a2022aa01f",
                "sha256": "0ab20469a651d0f766151170d0467642b920731a97f6141e6d58ed1b1bdf9833"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314t-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b0786fdd3540240714ef1a2022aa01f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 581827,
            "upload_time": "2025-10-19T07:13:40",
            "upload_time_iso_8601": "2025-10-19T07:13:40.545060Z",
            "url": "https://files.pythonhosted.org/packages/ea/9e/e0fe1cb761d35991a04ffb526cf1d68188aca3c0652fb3da9782ea8686eb/scylla_cqlsh-6.0.27-cp314-cp314t-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a4008f397ece34acdb89a2c83b893579a3a4fd0d692252c58a2a07fb7f2bab1",
                "md5": "5a2fda2803ddc48fbe37c00f927a9457",
                "sha256": "fb2b4ac2789e33e3976274689b8c01b507cd4d7bbc9b3d2e6038751da3baef37"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5a2fda2803ddc48fbe37c00f927a9457",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 540599,
            "upload_time": "2025-10-19T07:13:41",
            "upload_time_iso_8601": "2025-10-19T07:13:41.440635Z",
            "url": "https://files.pythonhosted.org/packages/0a/40/08f397ece34acdb89a2c83b893579a3a4fd0d692252c58a2a07fb7f2bab1/scylla_cqlsh-6.0.27-cp314-cp314t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74ba257fd49d58864eff370ec842d009a5326479a934ed676408f33adcaa816f",
                "md5": "dedac2809347099b6d3e6beb0778fa67",
                "sha256": "4322e59cf4331452615b2596895baa1cc30b0356fd5708421e9ef0cb21a4d094"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dedac2809347099b6d3e6beb0778fa67",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 3056566,
            "upload_time": "2025-10-19T07:13:42",
            "upload_time_iso_8601": "2025-10-19T07:13:42.452011Z",
            "url": "https://files.pythonhosted.org/packages/74/ba/257fd49d58864eff370ec842d009a5326479a934ed676408f33adcaa816f/scylla_cqlsh-6.0.27-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "951ecc24e8fac8302e7df69bd0c8ec9b81a206683648e19a3579bc110db159d8",
                "md5": "8440e79f67c2332e6b7677fee4febea4",
                "sha256": "34983b2d8aa22236c675c61cf845ec11d34f6067bbda934e5bf960cfaff7e362"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8440e79f67c2332e6b7677fee4febea4",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 3149111,
            "upload_time": "2025-10-19T07:13:43",
            "upload_time_iso_8601": "2025-10-19T07:13:43.669076Z",
            "url": "https://files.pythonhosted.org/packages/95/1e/cc24e8fac8302e7df69bd0c8ec9b81a206683648e19a3579bc110db159d8/scylla_cqlsh-6.0.27-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1967c85ccc73314c2dd7b80fe4914df1705c7c73017088bbce24e2e515443043",
                "md5": "e107ff48473d0f1bf08a70385df72c47",
                "sha256": "8f3941c9133a5a5f0e0bb0f164a0a27ed046d2928fdbfa467b0221ae9256afa3"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e107ff48473d0f1bf08a70385df72c47",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 2994687,
            "upload_time": "2025-10-19T07:13:45",
            "upload_time_iso_8601": "2025-10-19T07:13:45.181415Z",
            "url": "https://files.pythonhosted.org/packages/19/67/c85ccc73314c2dd7b80fe4914df1705c7c73017088bbce24e2e515443043/scylla_cqlsh-6.0.27-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "414c36706d8b221c88d9581ab22a7f8933729203f948d51ce5cca91946d1df4e",
                "md5": "c136aed87120b3ee5694d5fbe40d5dae",
                "sha256": "994649868e32ceb3fbcd2a34bb2a6416f08a60a0f80088483446ccba794e9738"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c136aed87120b3ee5694d5fbe40d5dae",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 3006387,
            "upload_time": "2025-10-19T07:13:46",
            "upload_time_iso_8601": "2025-10-19T07:13:46.438344Z",
            "url": "https://files.pythonhosted.org/packages/41/4c/36706d8b221c88d9581ab22a7f8933729203f948d51ce5cca91946d1df4e/scylla_cqlsh-6.0.27-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6cfa7edc3ab85ef1269f2078859bc09ae0e376e40930add708e313b2f2508f45",
                "md5": "9fe4952287d3f3129b81ff9bd714bd0e",
                "sha256": "891da60dd9055264d78a187c50fdb0c2d6bb9c35905a241a25aaf3f70cba2102"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314t-win32.whl",
            "has_sig": false,
            "md5_digest": "9fe4952287d3f3129b81ff9bd714bd0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 462968,
            "upload_time": "2025-10-19T07:13:47",
            "upload_time_iso_8601": "2025-10-19T07:13:47.584934Z",
            "url": "https://files.pythonhosted.org/packages/6c/fa/7edc3ab85ef1269f2078859bc09ae0e376e40930add708e313b2f2508f45/scylla_cqlsh-6.0.27-cp314-cp314t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dfd13f6b4a6e4b6246c298d1a24f7a8adbb22123c27ed3c5514ddc751d8ff1f5",
                "md5": "af964f675bb4d046ad061ad5df41c4b3",
                "sha256": "1fa219ca9c89b3e0f17f0939f2ba7570a407751e7646533d9ab34cde2491b25c"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "af964f675bb4d046ad061ad5df41c4b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 532559,
            "upload_time": "2025-10-19T07:13:48",
            "upload_time_iso_8601": "2025-10-19T07:13:48.616758Z",
            "url": "https://files.pythonhosted.org/packages/df/d1/3f6b4a6e4b6246c298d1a24f7a8adbb22123c27ed3c5514ddc751d8ff1f5/scylla_cqlsh-6.0.27-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4b108dd935029c1009108223ede125552c5f0246a202a69637421a1d6109d87",
                "md5": "0d59973f05356ad781a4407cf2b91037",
                "sha256": "33f88149b096f5c203e0dd544b5182d522a9e0a14457097d5f868122b18b427e"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314-win32.whl",
            "has_sig": false,
            "md5_digest": "0d59973f05356ad781a4407cf2b91037",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 396227,
            "upload_time": "2025-10-19T07:13:38",
            "upload_time_iso_8601": "2025-10-19T07:13:38.566721Z",
            "url": "https://files.pythonhosted.org/packages/a4/b1/08dd935029c1009108223ede125552c5f0246a202a69637421a1d6109d87/scylla_cqlsh-6.0.27-cp314-cp314-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4363142c44c5115545f035e5cb4e57128b2d298bc4779cc18abc5f9acf644708",
                "md5": "1b80fdafb27741f63809a604eea61913",
                "sha256": "db56dbec28630808f4bac30dfdce7f5b3da377c73adf2dab79199800e7f247fc"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1b80fdafb27741f63809a604eea61913",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 459678,
            "upload_time": "2025-10-19T07:13:39",
            "upload_time_iso_8601": "2025-10-19T07:13:39.517270Z",
            "url": "https://files.pythonhosted.org/packages/43/63/142c44c5115545f035e5cb4e57128b2d298bc4779cc18abc5f9acf644708/scylla_cqlsh-6.0.27-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0e08261d77d6a75b215aecc5329760db499393ca53afa11ac81d9de5d7a5f95",
                "md5": "7a8d3399e0ed72ee4ddf6b90d34a26f9",
                "sha256": "ddc662052b7744c892305ca209a2b6f8a47f5ffb82f10ca761af015a96b5396e"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a8d3399e0ed72ee4ddf6b90d34a26f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 537712,
            "upload_time": "2025-10-19T07:13:49",
            "upload_time_iso_8601": "2025-10-19T07:13:49.887423Z",
            "url": "https://files.pythonhosted.org/packages/a0/e0/8261d77d6a75b215aecc5329760db499393ca53afa11ac81d9de5d7a5f95/scylla_cqlsh-6.0.27-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05f6145bb6f595d0603482b7eeb016aed6937f2eaf88c72e3b3cbf4c7dac75c9",
                "md5": "24cc90b47028ddb88883bf61d7f39158",
                "sha256": "9990aa419a6fc45d0fec7a78ce835c1aa8c461f4e2e0dbe5032ec779bb0493ea"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "24cc90b47028ddb88883bf61d7f39158",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 497208,
            "upload_time": "2025-10-19T07:13:50",
            "upload_time_iso_8601": "2025-10-19T07:13:50.898282Z",
            "url": "https://files.pythonhosted.org/packages/05/f6/145bb6f595d0603482b7eeb016aed6937f2eaf88c72e3b3cbf4c7dac75c9/scylla_cqlsh-6.0.27-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff42b1a9f5f5d70cdbe3b08f23c237b6d0ab830f285361cedf08a10745a1ccda",
                "md5": "c7d407d956c3d70b204283af69d262bd",
                "sha256": "2b6275430136fdec0f7f0c3ec29faee70414475baedb54f9578ac7aaeeef4691"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c7d407d956c3d70b204283af69d262bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 2910013,
            "upload_time": "2025-10-19T07:13:52",
            "upload_time_iso_8601": "2025-10-19T07:13:52.276820Z",
            "url": "https://files.pythonhosted.org/packages/ff/42/b1a9f5f5d70cdbe3b08f23c237b6d0ab830f285361cedf08a10745a1ccda/scylla_cqlsh-6.0.27-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e375e570babff752382aaa847fc0023fe33696a4420ef42eaa50a3520808e7f",
                "md5": "9e1ec75e1af9a6987e1d9d6515cbec93",
                "sha256": "5e3ccae354f8efd2d2f11eced9e5d126730597c22b66448d99544c4198bfe934"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9e1ec75e1af9a6987e1d9d6515cbec93",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 2921529,
            "upload_time": "2025-10-19T07:13:53",
            "upload_time_iso_8601": "2025-10-19T07:13:53.960374Z",
            "url": "https://files.pythonhosted.org/packages/7e/37/5e570babff752382aaa847fc0023fe33696a4420ef42eaa50a3520808e7f/scylla_cqlsh-6.0.27-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79ae2bbdb2336b9fe80e7f39dc5b52c02ce8994e687f69a4cb514bfda927743b",
                "md5": "cd350fb54ef180221e2293e684646a9f",
                "sha256": "76f0ab1f22e6f78aaee83cd2238a9d4f97b8a053f79957beb2c0696cea1ee392"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cd350fb54ef180221e2293e684646a9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 2844305,
            "upload_time": "2025-10-19T07:13:55",
            "upload_time_iso_8601": "2025-10-19T07:13:55.492408Z",
            "url": "https://files.pythonhosted.org/packages/79/ae/2bbdb2336b9fe80e7f39dc5b52c02ce8994e687f69a4cb514bfda927743b/scylla_cqlsh-6.0.27-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "900d7982a6d814071361891329a4c891ac40f3155cf48065108f0e6af6dfe962",
                "md5": "94f81cf84cc522dd4afc587bc41fd7be",
                "sha256": "e5908d5c22e031dede7ceb0c1da6d1a34419b8f89c5c51004d044e3cd38c33b4"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "94f81cf84cc522dd4afc587bc41fd7be",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 2889127,
            "upload_time": "2025-10-19T07:13:56",
            "upload_time_iso_8601": "2025-10-19T07:13:56.662685Z",
            "url": "https://files.pythonhosted.org/packages/90/0d/7982a6d814071361891329a4c891ac40f3155cf48065108f0e6af6dfe962/scylla_cqlsh-6.0.27-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8282dc0f2300e562fabe043ebbed5c080e226a201a134755faeee63e934a7f6",
                "md5": "90ecc4bfd17ba5a1d19cf96d9283f6e9",
                "sha256": "397327148f196ca78857113e5202de56630ab8495020c6a318a56e7533386e99"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "90ecc4bfd17ba5a1d19cf96d9283f6e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 386783,
            "upload_time": "2025-10-19T07:13:57",
            "upload_time_iso_8601": "2025-10-19T07:13:57.736633Z",
            "url": "https://files.pythonhosted.org/packages/f8/28/2dc0f2300e562fabe043ebbed5c080e226a201a134755faeee63e934a7f6/scylla_cqlsh-6.0.27-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "563935eafd383feee9231bbe8e6fe53fde7bcbd7a54e32d33f6199f01f0f7d60",
                "md5": "b248a67aaa9350c7e4ea85734f2ec183",
                "sha256": "4cda8ce08be23ff71c5e0922c0a981069c64bc7c68af02fc764d299f6bd55250"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b248a67aaa9350c7e4ea85734f2ec183",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 441980,
            "upload_time": "2025-10-19T07:13:58",
            "upload_time_iso_8601": "2025-10-19T07:13:58.683125Z",
            "url": "https://files.pythonhosted.org/packages/56/39/35eafd383feee9231bbe8e6fe53fde7bcbd7a54e32d33f6199f01f0f7d60/scylla_cqlsh-6.0.27-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b23f08048e3ff6b41c681978874ace06c3644c8fad65371354bb7eef610812fe",
                "md5": "5c58c1298fc2a94be9918117c7b000f9",
                "sha256": "e64fde6f5d44f1ba8f416c165fd7165f50f113251ee9ec93243a342fb99325e4"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.27.tar.gz",
            "has_sig": false,
            "md5_digest": "5c58c1298fc2a94be9918117c7b000f9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 767662,
            "upload_time": "2025-10-19T07:13:59",
            "upload_time_iso_8601": "2025-10-19T07:13:59.683946Z",
            "url": "https://files.pythonhosted.org/packages/b2/3f/08048e3ff6b41c681978874ace06c3644c8fad65371354bb7eef610812fe/scylla_cqlsh-6.0.27.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-19 07:13:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "scylladb",
    "github_project": "scylla-cqlsh",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "scylla-driver",
            "specs": [
                [
                    "==",
                    "3.28.2"
                ]
            ]
        },
        {
            "name": "PyYAML",
            "specs": [
                [
                    ">=",
                    "6.0.1"
                ]
            ]
        },
        {
            "name": "click",
            "specs": [
                [
                    ">=",
                    "8.1.3"
                ]
            ]
        },
        {
            "name": "lz4",
            "specs": []
        }
    ],
    "lcname": "scylla-cqlsh"
}
        
Elapsed time: 2.39660s