scylla-cqlsh


Namescylla-cqlsh JSON
Version 6.0.23 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_time2024-09-19 08:36:19
maintainerNone
docs_urlNone
authorIsrael Fruchter
requires_python>=3.6
licenseApache
keywords cql scylladb cassandra cqlsh
VCS
bugtrack_url
requirements No requirements were recorded.
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/77/d8/74aa197f4e11cacad86253af1964920e6b365a13c36ae262af5eac9308a3/scylla_cqlsh-6.0.23.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.23",
    "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": "",
            "digests": {
                "blake2b_256": "b4d3713378224b519ba5c6242f070b27ddf35687b54e7aa9b4d333e7aa93cf4d",
                "md5": "6dbb8d2ec24fbdfb08b648fa5b264818",
                "sha256": "efdc1b7e573fff28cb7013c20c60a68e4f256713798710e3cac4f9153e2e11ec"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6dbb8d2ec24fbdfb08b648fa5b264818",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 646222,
            "upload_time": "2024-09-19T08:34:40",
            "upload_time_iso_8601": "2024-09-19T08:34:40.882459Z",
            "url": "https://files.pythonhosted.org/packages/b4/d3/713378224b519ba5c6242f070b27ddf35687b54e7aa9b4d333e7aa93cf4d/scylla_cqlsh-6.0.23-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71386caedb4f8ffd6f6a80d5e354fcedefdd927920f9266e12a457d8e91870fb",
                "md5": "3e15161321b0e4216e86a5b40160843e",
                "sha256": "87341725d9d15d4e14af6a4267801ca47c67ab1f5524ab40ee8c8a42207fcba6"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3e15161321b0e4216e86a5b40160843e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 587066,
            "upload_time": "2024-09-19T08:34:42",
            "upload_time_iso_8601": "2024-09-19T08:34:42.722086Z",
            "url": "https://files.pythonhosted.org/packages/71/38/6caedb4f8ffd6f6a80d5e354fcedefdd927920f9266e12a457d8e91870fb/scylla_cqlsh-6.0.23-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a651fd4c7800539104dc4c655a45da7e902c7c70d6d5f8f56cce5d8801be71a8",
                "md5": "1ee5f38530f28ec9a813c3ca4fa9e5fe",
                "sha256": "c00ea9c6910be593c5db777e9bf565ea8062310d4e9e15556c250104ba6e29d6"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1ee5f38530f28ec9a813c3ca4fa9e5fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 2952248,
            "upload_time": "2024-09-19T08:34:43",
            "upload_time_iso_8601": "2024-09-19T08:34:43.968522Z",
            "url": "https://files.pythonhosted.org/packages/a6/51/fd4c7800539104dc4c655a45da7e902c7c70d6d5f8f56cce5d8801be71a8/scylla_cqlsh-6.0.23-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e0757e301a9a2b20767e27d77ed7e4d7657de03f55f433f8e6809d750b37be1",
                "md5": "e31c8494c86352039751187c33e5e609",
                "sha256": "acde2c1ce79520a3957fca5db3721b85d4296c1638cd7ee64d36f881983cb00a"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e31c8494c86352039751187c33e5e609",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 3212409,
            "upload_time": "2024-09-19T08:34:45",
            "upload_time_iso_8601": "2024-09-19T08:34:45.384339Z",
            "url": "https://files.pythonhosted.org/packages/9e/07/57e301a9a2b20767e27d77ed7e4d7657de03f55f433f8e6809d750b37be1/scylla_cqlsh-6.0.23-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5616e399c1041e03fd9b0b9451a606677054568810b60c2fa444ad9fb9943f14",
                "md5": "cda72643eb16cf77924372de9eca7567",
                "sha256": "fa03256d86c73bfcafec797d5aa9dc30fe7ee2ba0d3cad0703619b24976be618"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "cda72643eb16cf77924372de9eca7567",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 2965154,
            "upload_time": "2024-09-19T08:34:47",
            "upload_time_iso_8601": "2024-09-19T08:34:47.010514Z",
            "url": "https://files.pythonhosted.org/packages/56/16/e399c1041e03fd9b0b9451a606677054568810b60c2fa444ad9fb9943f14/scylla_cqlsh-6.0.23-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a26fc45e2d9f54380fc06d3abac79a994d1bf9b4777c6af318a9223b75d5554",
                "md5": "c1a938d63c0a9a38d6dc2e2fe02df059",
                "sha256": "608c45ff556eb98993e263e73f9f8f2b6dde85747e7edf49055f6d1e26df1c21"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c1a938d63c0a9a38d6dc2e2fe02df059",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 3217898,
            "upload_time": "2024-09-19T08:34:48",
            "upload_time_iso_8601": "2024-09-19T08:34:48.400718Z",
            "url": "https://files.pythonhosted.org/packages/8a/26/fc45e2d9f54380fc06d3abac79a994d1bf9b4777c6af318a9223b75d5554/scylla_cqlsh-6.0.23-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45a96eb148a3ea1ea7f756e0c0692985977e4f05a8465f6b0a711b94e4183e0a",
                "md5": "47821d4355494f5b6e76f6d1ef285b71",
                "sha256": "6a0abbedd4d6b4cd73632fdc5d6e1530b8cf7098ae3855993d97fcadff34896a"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "47821d4355494f5b6e76f6d1ef285b71",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 478323,
            "upload_time": "2024-09-19T08:34:49",
            "upload_time_iso_8601": "2024-09-19T08:34:49.744844Z",
            "url": "https://files.pythonhosted.org/packages/45/a9/6eb148a3ea1ea7f756e0c0692985977e4f05a8465f6b0a711b94e4183e0a/scylla_cqlsh-6.0.23-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2382b793eaefbbf49e6a9f2fd35e51c9164f49dabc1ec23fbd649468f41393a6",
                "md5": "f2f5cf500731e92bc9fb3d6ed3dc21ab",
                "sha256": "e9a8ea4eb6ef8b16a2122d595e0208c8c8c4eb975e03660f1ab19742905a4fb3"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f2f5cf500731e92bc9fb3d6ed3dc21ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 567781,
            "upload_time": "2024-09-19T08:34:51",
            "upload_time_iso_8601": "2024-09-19T08:34:51.379954Z",
            "url": "https://files.pythonhosted.org/packages/23/82/b793eaefbbf49e6a9f2fd35e51c9164f49dabc1ec23fbd649468f41393a6/scylla_cqlsh-6.0.23-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c152125a51591c57c3025cb4e0f2e43b01db58ce6b95870474d6fcdb77f8323a",
                "md5": "30c43a407d13d5d5c7eef564de25602a",
                "sha256": "bcafdb4a904289e46f5281c7e7d6cfebed46d43a686998393b013d754944dc6b"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30c43a407d13d5d5c7eef564de25602a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 645825,
            "upload_time": "2024-09-19T08:34:52",
            "upload_time_iso_8601": "2024-09-19T08:34:52.509018Z",
            "url": "https://files.pythonhosted.org/packages/c1/52/125a51591c57c3025cb4e0f2e43b01db58ce6b95870474d6fcdb77f8323a/scylla_cqlsh-6.0.23-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e479bfb2db97ecffa39f260c44bd93ba273af664097f0949e5104a0d197443f",
                "md5": "283c042a625287f497e34316369c19cc",
                "sha256": "933e1094fab023d1aa6c5ec6fa6ae520a7b32a92b6de1d91209b3718e54c5511"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "283c042a625287f497e34316369c19cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 586538,
            "upload_time": "2024-09-19T08:34:54",
            "upload_time_iso_8601": "2024-09-19T08:34:54.165350Z",
            "url": "https://files.pythonhosted.org/packages/0e/47/9bfb2db97ecffa39f260c44bd93ba273af664097f0949e5104a0d197443f/scylla_cqlsh-6.0.23-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "023cb1194ada11474835d3c95382e42382a4c8cb8efd4effdf315b379173126b",
                "md5": "ade067e2afaaeae490a918c5a6916a12",
                "sha256": "ede5c2a08f060de8d57fe62cff522649f4aa4a0217778fb62c60d41386c6fb67"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ade067e2afaaeae490a918c5a6916a12",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 2968878,
            "upload_time": "2024-09-19T08:34:56",
            "upload_time_iso_8601": "2024-09-19T08:34:56.322405Z",
            "url": "https://files.pythonhosted.org/packages/02/3c/b1194ada11474835d3c95382e42382a4c8cb8efd4effdf315b379173126b/scylla_cqlsh-6.0.23-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c64ff74b0e576a03687d3088e453fade30122ebcb71045585a56c62ee835a99",
                "md5": "13cb01355b20ed80fd57831751bfeccf",
                "sha256": "62dbe6943503f29b224c58f11547659755cd421be7671d45a95419a5d4be980a"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13cb01355b20ed80fd57831751bfeccf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 3224173,
            "upload_time": "2024-09-19T08:34:57",
            "upload_time_iso_8601": "2024-09-19T08:34:57.740148Z",
            "url": "https://files.pythonhosted.org/packages/1c/64/ff74b0e576a03687d3088e453fade30122ebcb71045585a56c62ee835a99/scylla_cqlsh-6.0.23-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "455ec779f6550f8e8f1f6399f63a3610c8d63e7f79c67efd499ca3481ffd36d7",
                "md5": "3f5a636ea1fdbe4a1f7025493f1c3fb6",
                "sha256": "d30935b8019bd2fd39a4767e4d45af7807278a13d2fd7a3ad652142cfbd9ac2d"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3f5a636ea1fdbe4a1f7025493f1c3fb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 2982747,
            "upload_time": "2024-09-19T08:34:59",
            "upload_time_iso_8601": "2024-09-19T08:34:59.001449Z",
            "url": "https://files.pythonhosted.org/packages/45/5e/c779f6550f8e8f1f6399f63a3610c8d63e7f79c67efd499ca3481ffd36d7/scylla_cqlsh-6.0.23-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "108bd796a74893c64d7935d1910afc52599d06cd4d75bb9cbe0a089bdad12a2d",
                "md5": "cc719a59af4d75e6adf41e7b72873bc1",
                "sha256": "0f73eeb38237047adf561b01881a4960f9e0cad37b82643534c5759de072e102"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc719a59af4d75e6adf41e7b72873bc1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 3230349,
            "upload_time": "2024-09-19T08:35:00",
            "upload_time_iso_8601": "2024-09-19T08:35:00.781069Z",
            "url": "https://files.pythonhosted.org/packages/10/8b/d796a74893c64d7935d1910afc52599d06cd4d75bb9cbe0a089bdad12a2d/scylla_cqlsh-6.0.23-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "098128b1bf75d81c3d09e802e090601734bb9cf5b72d0eaee630855d7cef18d0",
                "md5": "506713b9615977e09d316c158a061e9c",
                "sha256": "3fee8e60ef093dce05b3a1a1747f09d1b8f865585126cffb962dc7e72bc678e7"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "506713b9615977e09d316c158a061e9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 478009,
            "upload_time": "2024-09-19T08:35:02",
            "upload_time_iso_8601": "2024-09-19T08:35:02.940889Z",
            "url": "https://files.pythonhosted.org/packages/09/81/28b1bf75d81c3d09e802e090601734bb9cf5b72d0eaee630855d7cef18d0/scylla_cqlsh-6.0.23-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9147d72ebf01d8d23cadffedcf321f008de299671e3fa70c6e89b1e7491cb1de",
                "md5": "c4335e0eb612da41f062b0b72b812896",
                "sha256": "ce6ca7777191f1c3c5649a0509a440bce61b164ededb5ef25f968a566ceabb5e"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c4335e0eb612da41f062b0b72b812896",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 567422,
            "upload_time": "2024-09-19T08:35:04",
            "upload_time_iso_8601": "2024-09-19T08:35:04.155436Z",
            "url": "https://files.pythonhosted.org/packages/91/47/d72ebf01d8d23cadffedcf321f008de299671e3fa70c6e89b1e7491cb1de/scylla_cqlsh-6.0.23-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3e30087e8a6e0ce3e4feebc692564abd177d2a49045979e97da75ccdba5eab2",
                "md5": "0ec81c6f62118199e44cf15b99179b45",
                "sha256": "f8fe4d8822889ef48870abef7431937b4c7b9425459c70e41f32e751b8220ca3"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ec81c6f62118199e44cf15b99179b45",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 655126,
            "upload_time": "2024-09-19T08:35:06",
            "upload_time_iso_8601": "2024-09-19T08:35:06.507238Z",
            "url": "https://files.pythonhosted.org/packages/e3/e3/0087e8a6e0ce3e4feebc692564abd177d2a49045979e97da75ccdba5eab2/scylla_cqlsh-6.0.23-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09f0d411ec6adea59639f8c608bcbef723423c2530e6fe25f57ab04db0adf91a",
                "md5": "99c78036d3dcf28924d495872e3301fa",
                "sha256": "6b899bf236e950c86e0dd85e74617edf62462fde09f057d915b0bb0dadc91c24"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "99c78036d3dcf28924d495872e3301fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 584276,
            "upload_time": "2024-09-19T08:35:08",
            "upload_time_iso_8601": "2024-09-19T08:35:08.109172Z",
            "url": "https://files.pythonhosted.org/packages/09/f0/d411ec6adea59639f8c608bcbef723423c2530e6fe25f57ab04db0adf91a/scylla_cqlsh-6.0.23-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dc41871d703629cfd0c135560d95f7550e8e8d5938bb6fd9588c9d743469be7",
                "md5": "e994a330394a46b6fb930d3446ed492f",
                "sha256": "9da75d172b2bf2bb0684a3e34789128947956498d79b35ba5f821eeeb9c6238c"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e994a330394a46b6fb930d3446ed492f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 2982605,
            "upload_time": "2024-09-19T08:35:10",
            "upload_time_iso_8601": "2024-09-19T08:35:10.216085Z",
            "url": "https://files.pythonhosted.org/packages/1d/c4/1871d703629cfd0c135560d95f7550e8e8d5938bb6fd9588c9d743469be7/scylla_cqlsh-6.0.23-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "430ef018bad49447c9e42c2a9fcac20a0ae9584dfb3e55543005eeac233e2f04",
                "md5": "0c95b40569469712a685ee4fbc0402bf",
                "sha256": "e3e9430b9c9d43088106d6d92b02cb51aeb565fe2b2cb44295eea33734d5f261"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c95b40569469712a685ee4fbc0402bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 3279659,
            "upload_time": "2024-09-19T08:35:11",
            "upload_time_iso_8601": "2024-09-19T08:35:11.580861Z",
            "url": "https://files.pythonhosted.org/packages/43/0e/f018bad49447c9e42c2a9fcac20a0ae9584dfb3e55543005eeac233e2f04/scylla_cqlsh-6.0.23-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7913091b25af4431e34add00ba91053e9fddfbfeaa140aaa155e129b9e2d500",
                "md5": "0b9463fb33d8b2a18727992c7416c97f",
                "sha256": "5b2d87ebd11900df1cf6d308d28f63c1c3023832119674cf58a871769af2c2f7"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "0b9463fb33d8b2a18727992c7416c97f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 2980252,
            "upload_time": "2024-09-19T08:35:12",
            "upload_time_iso_8601": "2024-09-19T08:35:12.960330Z",
            "url": "https://files.pythonhosted.org/packages/a7/91/3091b25af4431e34add00ba91053e9fddfbfeaa140aaa155e129b9e2d500/scylla_cqlsh-6.0.23-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d6aa9c73a13044cc687a49bc1d7589e1fc7755132ffc7f9428a75ca140918b9",
                "md5": "dfca58974258b7427c6b67a3fc3304f5",
                "sha256": "9a2dd7e206961d66ffc423898ed4077e47da1166b0f4153f656c13e825ff91ff"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dfca58974258b7427c6b67a3fc3304f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 3273764,
            "upload_time": "2024-09-19T08:35:15",
            "upload_time_iso_8601": "2024-09-19T08:35:15.295246Z",
            "url": "https://files.pythonhosted.org/packages/8d/6a/a9c73a13044cc687a49bc1d7589e1fc7755132ffc7f9428a75ca140918b9/scylla_cqlsh-6.0.23-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6df8013068c4f0e2f0d1cf566e868261393b813a6b509b9236ee8c4bc6411b61",
                "md5": "fef442a0b5ca019e21a39bcea21779e5",
                "sha256": "3a67c63ada7443b6960a84947a49742a7d2e81f520a8494c28df75832a3a434f"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "fef442a0b5ca019e21a39bcea21779e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 486330,
            "upload_time": "2024-09-19T08:35:16",
            "upload_time_iso_8601": "2024-09-19T08:35:16.697041Z",
            "url": "https://files.pythonhosted.org/packages/6d/f8/013068c4f0e2f0d1cf566e868261393b813a6b509b9236ee8c4bc6411b61/scylla_cqlsh-6.0.23-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fcca3c2c6d69f685e7c018479cfc101c5ed65850ce824f717c3e8a79413f363",
                "md5": "0afbda1179132cd2e157c063aa695cd2",
                "sha256": "13a0067a5d1c2645b9a4f03560da1e4d7221c420815fed9a5255eb9f86a2cb4e"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0afbda1179132cd2e157c063aa695cd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 577840,
            "upload_time": "2024-09-19T08:35:18",
            "upload_time_iso_8601": "2024-09-19T08:35:18.364950Z",
            "url": "https://files.pythonhosted.org/packages/7f/cc/a3c2c6d69f685e7c018479cfc101c5ed65850ce824f717c3e8a79413f363/scylla_cqlsh-6.0.23-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65d7fe27b241df65c7963ad29472deb380b98ec9cadf942f10a25c485df1ec14",
                "md5": "80798f8372f0bbce4b5915aee1ce957e",
                "sha256": "efaf614659f2ff917195e958492e8d4aec80f76c01f8ea89d04835b4f8a91242"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "80798f8372f0bbce4b5915aee1ce957e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 625600,
            "upload_time": "2024-09-19T08:35:19",
            "upload_time_iso_8601": "2024-09-19T08:35:19.564005Z",
            "url": "https://files.pythonhosted.org/packages/65/d7/fe27b241df65c7963ad29472deb380b98ec9cadf942f10a25c485df1ec14/scylla_cqlsh-6.0.23-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46271ce07906389055a426bf18b4ee951051aaae3a84f5c4a17d4c57ebc5ad6e",
                "md5": "f6657e54a8f727b19493823f72e3eff7",
                "sha256": "f7820766c8ff8cea64197920def37eaa07a48de6f1a4bc2dadc90dd2566818cc"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f6657e54a8f727b19493823f72e3eff7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 2562258,
            "upload_time": "2024-09-19T08:35:20",
            "upload_time_iso_8601": "2024-09-19T08:35:20.836707Z",
            "url": "https://files.pythonhosted.org/packages/46/27/1ce07906389055a426bf18b4ee951051aaae3a84f5c4a17d4c57ebc5ad6e/scylla_cqlsh-6.0.23-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7691300b2368d68ca3fb3c624a9c797a094c246410a8419ad077b678261c6d2",
                "md5": "981c575dbc41dd703a10abd1d122eaf9",
                "sha256": "f148521ecabcb55b2ae04fbd2aa682db8768bc981e74721aaab87b3c4f32643d"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "981c575dbc41dd703a10abd1d122eaf9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 2824493,
            "upload_time": "2024-09-19T08:35:22",
            "upload_time_iso_8601": "2024-09-19T08:35:22.167315Z",
            "url": "https://files.pythonhosted.org/packages/d7/69/1300b2368d68ca3fb3c624a9c797a094c246410a8419ad077b678261c6d2/scylla_cqlsh-6.0.23-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9f280ed1a1f17551d36bc0c067b9e734c0ca31b398b52e71bc4035f3afbc393",
                "md5": "843bcfb3c7674653f93803eafba87ab8",
                "sha256": "38bb1494410a125b722911780424aced73b9d6ba8451c839006557f1f26ec49f"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "843bcfb3c7674653f93803eafba87ab8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 2594831,
            "upload_time": "2024-09-19T08:35:24",
            "upload_time_iso_8601": "2024-09-19T08:35:24.288093Z",
            "url": "https://files.pythonhosted.org/packages/e9/f2/80ed1a1f17551d36bc0c067b9e734c0ca31b398b52e71bc4035f3afbc393/scylla_cqlsh-6.0.23-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f39a60106f4f72c32ed64de8cdc4cd27ad002f7f6eab7cf9e1f31e779a9749d9",
                "md5": "8360b2daa7267bf465e3f64f232d5e76",
                "sha256": "0e220d2265cd2ddafc1419d8b444780a851900597aebf1276cad5adca70603e0"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8360b2daa7267bf465e3f64f232d5e76",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 2850681,
            "upload_time": "2024-09-19T08:35:25",
            "upload_time_iso_8601": "2024-09-19T08:35:25.674026Z",
            "url": "https://files.pythonhosted.org/packages/f3/9a/60106f4f72c32ed64de8cdc4cd27ad002f7f6eab7cf9e1f31e779a9749d9/scylla_cqlsh-6.0.23-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4deb7ae90e5498b3e02dc4231abf1ac31aee9d02e963874bf25fd069a22321cc",
                "md5": "576e1240e7a6ba9201cfcc9a6a776e28",
                "sha256": "562510de11e56cddb7ccca43ff768f24ee1eddeacce24780c7a9342587bd3ecf"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "576e1240e7a6ba9201cfcc9a6a776e28",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 471979,
            "upload_time": "2024-09-19T08:35:27",
            "upload_time_iso_8601": "2024-09-19T08:35:27.259276Z",
            "url": "https://files.pythonhosted.org/packages/4d/eb/7ae90e5498b3e02dc4231abf1ac31aee9d02e963874bf25fd069a22321cc/scylla_cqlsh-6.0.23-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8a06c2eb3ecc710c3ca97a676d87eaa173b156ad1f013200943ff0211aadba3",
                "md5": "a0d7242bf294ae20a7b8c8ba11993ac4",
                "sha256": "f8e81e4c2cc4390e8c5445c6524bbbc941a5646cb8e6047db02a11ce4b84dbc7"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a0d7242bf294ae20a7b8c8ba11993ac4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 560888,
            "upload_time": "2024-09-19T08:35:28",
            "upload_time_iso_8601": "2024-09-19T08:35:28.410629Z",
            "url": "https://files.pythonhosted.org/packages/c8/a0/6c2eb3ecc710c3ca97a676d87eaa173b156ad1f013200943ff0211aadba3/scylla_cqlsh-6.0.23-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5427b22ed525d76ac5af688f4f07499d92d27cc39875dc60e1c5c498818d1bf",
                "md5": "5870e12f09366aa67c1da8c2d7d34fee",
                "sha256": "fa1ed5987bc82922ee667c40596ee4e92934c7ff304aea5277498022df7b061d"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5870e12f09366aa67c1da8c2d7d34fee",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 645017,
            "upload_time": "2024-09-19T08:35:30",
            "upload_time_iso_8601": "2024-09-19T08:35:30.073752Z",
            "url": "https://files.pythonhosted.org/packages/d5/42/7b22ed525d76ac5af688f4f07499d92d27cc39875dc60e1c5c498818d1bf/scylla_cqlsh-6.0.23-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5caf494d717a0b8763f90bcfeb798558fc675e442316552b4954b429b6c1ee16",
                "md5": "9dee418b02b6f5cfa41f02d584cac6b7",
                "sha256": "d24cc16697327b0e992cc79efd2e626525ae487be50522e197801e5e7d93dc52"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9dee418b02b6f5cfa41f02d584cac6b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 586125,
            "upload_time": "2024-09-19T08:35:31",
            "upload_time_iso_8601": "2024-09-19T08:35:31.248027Z",
            "url": "https://files.pythonhosted.org/packages/5c/af/494d717a0b8763f90bcfeb798558fc675e442316552b4954b429b6c1ee16/scylla_cqlsh-6.0.23-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1bc25b225fd7605113a2d3450546397ce04cf47e284093c13f00326d0df0433",
                "md5": "1382d4ee1c8d596d390be82d336876b8",
                "sha256": "c88cd41794838c2628a9c2c27788b27780745a5f70c065f6808a38ea1d514ec6"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1382d4ee1c8d596d390be82d336876b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 3149888,
            "upload_time": "2024-09-19T08:35:33",
            "upload_time_iso_8601": "2024-09-19T08:35:33.221130Z",
            "url": "https://files.pythonhosted.org/packages/a1/bc/25b225fd7605113a2d3450546397ce04cf47e284093c13f00326d0df0433/scylla_cqlsh-6.0.23-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d4174e9bae8694f069fb648ca91e933f8b717c9df03d70decd500a0caac493e",
                "md5": "19f3aaf6bc0fa2aa5d24f0eff08d3c73",
                "sha256": "1b7bccc754c545f13222580129a3426b63f5911e9fb6afd487680698ecc65b6b"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "19f3aaf6bc0fa2aa5d24f0eff08d3c73",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 3435919,
            "upload_time": "2024-09-19T08:35:34",
            "upload_time_iso_8601": "2024-09-19T08:35:34.686001Z",
            "url": "https://files.pythonhosted.org/packages/8d/41/74e9bae8694f069fb648ca91e933f8b717c9df03d70decd500a0caac493e/scylla_cqlsh-6.0.23-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5273170ed2c0bff3564ed165aeee3621505ead3cc77027f1d3eb5bb54f2ffdfd",
                "md5": "e60e656c3d2d85e5950f73c245337b64",
                "sha256": "0a1865d32fcac9412aa20a0e4e0a2c04ca11cc838c6abf94bc040f133f93552b"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "e60e656c3d2d85e5950f73c245337b64",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 3332215,
            "upload_time": "2024-09-19T08:35:36",
            "upload_time_iso_8601": "2024-09-19T08:35:36.066114Z",
            "url": "https://files.pythonhosted.org/packages/52/73/170ed2c0bff3564ed165aeee3621505ead3cc77027f1d3eb5bb54f2ffdfd/scylla_cqlsh-6.0.23-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5457f1ed1c2612cdfcc697b34c08170d263b8edeca86c7da7967ca053a16b11",
                "md5": "9ed64ac0301d05ab0d30fb39372bc09a",
                "sha256": "b5c8ed818e516060793e6eb4f648092c281a09ca5bb0147b26b2affbc068aae7"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9ed64ac0301d05ab0d30fb39372bc09a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 3710065,
            "upload_time": "2024-09-19T08:35:37",
            "upload_time_iso_8601": "2024-09-19T08:35:37.523183Z",
            "url": "https://files.pythonhosted.org/packages/a5/45/7f1ed1c2612cdfcc697b34c08170d263b8edeca86c7da7967ca053a16b11/scylla_cqlsh-6.0.23-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b4ef99e647d8972de4b174e744b6dbac23c621e3cb9c0e39fdd5ea2e76d0e5b",
                "md5": "ecf13dbaa8ab054cb93b75c3828ee5e3",
                "sha256": "6d87f6bcee49305f57315357ed5ee8bdba74752794a56643b39a0f8d5d957d73"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "ecf13dbaa8ab054cb93b75c3828ee5e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 490601,
            "upload_time": "2024-09-19T08:35:38",
            "upload_time_iso_8601": "2024-09-19T08:35:38.836837Z",
            "url": "https://files.pythonhosted.org/packages/1b/4e/f99e647d8972de4b174e744b6dbac23c621e3cb9c0e39fdd5ea2e76d0e5b/scylla_cqlsh-6.0.23-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85f34659bb7e2138345b9925a7d96231e4f3e97e20ce0ee7a28c49267e4d2db3",
                "md5": "4b6c9112e773ed84663f2f68bc236647",
                "sha256": "b1e19b95ef37ffc4c855c89206b24cf6e09dcac45caa4b177575990f223c27b6"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4b6c9112e773ed84663f2f68bc236647",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 584331,
            "upload_time": "2024-09-19T08:35:40",
            "upload_time_iso_8601": "2024-09-19T08:35:40.358688Z",
            "url": "https://files.pythonhosted.org/packages/85/f3/4659bb7e2138345b9925a7d96231e4f3e97e20ce0ee7a28c49267e4d2db3/scylla_cqlsh-6.0.23-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6a76e8ac7f772f64945215319eeaaf37d80d8bed1b156e13932d17aa409de86",
                "md5": "60a3e43a00dc50436ad748e3ddf35154",
                "sha256": "caf71fa8d6815acc3233062f03563b002055c139adb4ec0b93bfeb4494824a02"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "60a3e43a00dc50436ad748e3ddf35154",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 646123,
            "upload_time": "2024-09-19T08:35:41",
            "upload_time_iso_8601": "2024-09-19T08:35:41.529822Z",
            "url": "https://files.pythonhosted.org/packages/c6/a7/6e8ac7f772f64945215319eeaaf37d80d8bed1b156e13932d17aa409de86/scylla_cqlsh-6.0.23-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "412e874fe1958a1fcf88fa61ca34a2a601a2f78c8a21d560711b8b0dfa3578ce",
                "md5": "53d748bfc2cc8e2f642c718b8aa4e4ac",
                "sha256": "1620ccec4b7ba5e9c56ffe08667b388ac3b3d4593f3dd7c0e6980fed9e954d98"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "53d748bfc2cc8e2f642c718b8aa4e4ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 586825,
            "upload_time": "2024-09-19T08:35:42",
            "upload_time_iso_8601": "2024-09-19T08:35:42.732950Z",
            "url": "https://files.pythonhosted.org/packages/41/2e/874fe1958a1fcf88fa61ca34a2a601a2f78c8a21d560711b8b0dfa3578ce/scylla_cqlsh-6.0.23-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75a861b35838260f2de8e2fdfbfd576284c8347b3a0b3424eab4ae6f41e58875",
                "md5": "ddda1d9c7df6db4e353d6af22ebd6837",
                "sha256": "632a7842bcd72cc5de267b25288f9dd7abb102172e0798524682f89a78928f95"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ddda1d9c7df6db4e353d6af22ebd6837",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 2950574,
            "upload_time": "2024-09-19T08:35:43",
            "upload_time_iso_8601": "2024-09-19T08:35:43.977545Z",
            "url": "https://files.pythonhosted.org/packages/75/a8/61b35838260f2de8e2fdfbfd576284c8347b3a0b3424eab4ae6f41e58875/scylla_cqlsh-6.0.23-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "640c593983c3b62f4e22aff9947c3fbff11e512a5a6778b1ff6626c799cd6f88",
                "md5": "fe01a9fea9e2f3c93a39852abdb74d6a",
                "sha256": "7a7e8b3c70f75adabeb63f149f1bc1d57bc2ab554ff3b4327a0d1398b0edfa90"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe01a9fea9e2f3c93a39852abdb74d6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 3213129,
            "upload_time": "2024-09-19T08:35:45",
            "upload_time_iso_8601": "2024-09-19T08:35:45.402529Z",
            "url": "https://files.pythonhosted.org/packages/64/0c/593983c3b62f4e22aff9947c3fbff11e512a5a6778b1ff6626c799cd6f88/scylla_cqlsh-6.0.23-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d1a195972ca5b9a4be5b90bce453943cef82cc5f78bf08b1b8d647ac07fc506",
                "md5": "519b06091a91a85756f7fb4bd76f3b03",
                "sha256": "b94665f0d98bf15f3547f36044a90b597c5d077832dc03ab3a43b2cd16610578"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "519b06091a91a85756f7fb4bd76f3b03",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 2967531,
            "upload_time": "2024-09-19T08:35:46",
            "upload_time_iso_8601": "2024-09-19T08:35:46.847771Z",
            "url": "https://files.pythonhosted.org/packages/6d/1a/195972ca5b9a4be5b90bce453943cef82cc5f78bf08b1b8d647ac07fc506/scylla_cqlsh-6.0.23-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43daa75d52d7c8663ec9884d18419c56fd4d0ed9e554892da36d814bcf5e8bcd",
                "md5": "8e702a808de7178973f25b8a0aa0dc06",
                "sha256": "d4a1769b27210532f79f78fed9d82b45bc687c0880851ab03c60660186b15c0e"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e702a808de7178973f25b8a0aa0dc06",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 3221541,
            "upload_time": "2024-09-19T08:35:48",
            "upload_time_iso_8601": "2024-09-19T08:35:48.260251Z",
            "url": "https://files.pythonhosted.org/packages/43/da/a75d52d7c8663ec9884d18419c56fd4d0ed9e554892da36d814bcf5e8bcd/scylla_cqlsh-6.0.23-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89ed9dd1193be644b2e1f0b4c0d62fc0af00943f16f10e6fc63ddedcdca6f01e",
                "md5": "be481c31803837893f011539d52cb9e8",
                "sha256": "0bc4ad8c7a336b21789ad34d1cad652a37b1cd9e1f3afe85bd59f1b6d6e75cab"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "be481c31803837893f011539d52cb9e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 478457,
            "upload_time": "2024-09-19T08:35:49",
            "upload_time_iso_8601": "2024-09-19T08:35:49.595562Z",
            "url": "https://files.pythonhosted.org/packages/89/ed/9dd1193be644b2e1f0b4c0d62fc0af00943f16f10e6fc63ddedcdca6f01e/scylla_cqlsh-6.0.23-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed01b9eaeee04de1d66baaec8eb43195c8792aad2ff98cac407531a773a6128f",
                "md5": "b5baa38cb21e5afa402e1df07cf3ed1e",
                "sha256": "1c5670410be0909b1b20eee25b8817f4f058d11e0b9464f3e1f12783a38d5b29"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b5baa38cb21e5afa402e1df07cf3ed1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 567735,
            "upload_time": "2024-09-19T08:35:51",
            "upload_time_iso_8601": "2024-09-19T08:35:51.172610Z",
            "url": "https://files.pythonhosted.org/packages/ed/01/b9eaeee04de1d66baaec8eb43195c8792aad2ff98cac407531a773a6128f/scylla_cqlsh-6.0.23-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d5020fd0f5479a28a7a9476e136988c806fdfa59de8c3a60e9c5199c9d7d828",
                "md5": "30e60706cc06a24a4e8794844e06d9f3",
                "sha256": "feb84c7968e4ead88ecb08cf0200a528c766f0023fee05dfc3f64cbf64e5c39b"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30e60706cc06a24a4e8794844e06d9f3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 523338,
            "upload_time": "2024-09-19T08:35:52",
            "upload_time_iso_8601": "2024-09-19T08:35:52.307931Z",
            "url": "https://files.pythonhosted.org/packages/4d/50/20fd0f5479a28a7a9476e136988c806fdfa59de8c3a60e9c5199c9d7d828/scylla_cqlsh-6.0.23-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e1d8645cfab67d93ee2949052cd2af3907b92f2d116177be1327f077ed9297a",
                "md5": "56faa4d6977ce279037b6a288dad1bc3",
                "sha256": "0f2fd7b11cb8f107a438020d3e2ff3d11916fd70cdd8f90da1a9cc1fa353c563"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "56faa4d6977ce279037b6a288dad1bc3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 488796,
            "upload_time": "2024-09-19T08:35:53",
            "upload_time_iso_8601": "2024-09-19T08:35:53.523048Z",
            "url": "https://files.pythonhosted.org/packages/9e/1d/8645cfab67d93ee2949052cd2af3907b92f2d116177be1327f077ed9297a/scylla_cqlsh-6.0.23-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b44db493006c3020a2a81caeb0b5ee06f1f4602fbd26c20b011ba681adff9de",
                "md5": "fc06b0f8f8b050c6dba1d3575d27ffdb",
                "sha256": "1abddcf8f1ea4a4a342d09b3cedc693b70f43ee608a1304f5ff8143f98e2ffaa"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fc06b0f8f8b050c6dba1d3575d27ffdb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 582963,
            "upload_time": "2024-09-19T08:35:55",
            "upload_time_iso_8601": "2024-09-19T08:35:55.490962Z",
            "url": "https://files.pythonhosted.org/packages/3b/44/db493006c3020a2a81caeb0b5ee06f1f4602fbd26c20b011ba681adff9de/scylla_cqlsh-6.0.23-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9ea0f2fc526d821c30b73671d7e2a287611b002e650353216e8992466fc7ebf",
                "md5": "1b30534c55f430485c389ebe221dcfa7",
                "sha256": "0db0b013a758fd51a6af4c75b295e9a3935e2bee3f8c8cf4e60793e45aea2c6c"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b30534c55f430485c389ebe221dcfa7",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 573504,
            "upload_time": "2024-09-19T08:35:56",
            "upload_time_iso_8601": "2024-09-19T08:35:56.644837Z",
            "url": "https://files.pythonhosted.org/packages/a9/ea/0f2fc526d821c30b73671d7e2a287611b002e650353216e8992466fc7ebf/scylla_cqlsh-6.0.23-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a8c25ccdc6238e263b5298eed660f8118eaaa14be1e638872cc163a90468e1c",
                "md5": "b1cee3c848329b5c8ed59cee8cf11e29",
                "sha256": "f1d13fba7f238fd80f3176d48dc9a6153ec95e55286805db38e8422c5d0a83cd"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b1cee3c848329b5c8ed59cee8cf11e29",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 481258,
            "upload_time": "2024-09-19T08:35:57",
            "upload_time_iso_8601": "2024-09-19T08:35:57.787592Z",
            "url": "https://files.pythonhosted.org/packages/1a/8c/25ccdc6238e263b5298eed660f8118eaaa14be1e638872cc163a90468e1c/scylla_cqlsh-6.0.23-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8097b9c978fd47e6607c591310f35ae2436d7c0b69df23415f5d76105859a31e",
                "md5": "92702c16754ef88c7b725f3fe99c020d",
                "sha256": "5492140f96af8e34b7c4e1313b927266a1b58ef808604ff60aaffd02dafaa2af"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "92702c16754ef88c7b725f3fe99c020d",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 529046,
            "upload_time": "2024-09-19T08:35:59",
            "upload_time_iso_8601": "2024-09-19T08:35:59.478311Z",
            "url": "https://files.pythonhosted.org/packages/80/97/b9c978fd47e6607c591310f35ae2436d7c0b69df23415f5d76105859a31e/scylla_cqlsh-6.0.23-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00fd10407802e5d0ba11c76499478171703353c30174549c28f5206d491139d0",
                "md5": "734f276b152f1985d0f49e156f0d2e74",
                "sha256": "1a551b45ce14a9e368a88d497fc6fec989802c6eea3aacfd2d020cc8bcca662c"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "734f276b152f1985d0f49e156f0d2e74",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 608318,
            "upload_time": "2024-09-19T08:36:00",
            "upload_time_iso_8601": "2024-09-19T08:36:00.695837Z",
            "url": "https://files.pythonhosted.org/packages/00/fd/10407802e5d0ba11c76499478171703353c30174549c28f5206d491139d0/scylla_cqlsh-6.0.23-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "036763b4b37548e3ba1ff1c8eee7327e56370e01375264b924dd4406b17815cd",
                "md5": "1aff746f06304f388be22b48254fd0c6",
                "sha256": "20a1d63db06c172a1362c37d3a0fb14eebf0792e782d6685dbac692eaf66988b"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1aff746f06304f388be22b48254fd0c6",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 592050,
            "upload_time": "2024-09-19T08:36:01",
            "upload_time_iso_8601": "2024-09-19T08:36:01.999325Z",
            "url": "https://files.pythonhosted.org/packages/03/67/63b4b37548e3ba1ff1c8eee7327e56370e01375264b924dd4406b17815cd/scylla_cqlsh-6.0.23-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8aeb5ab989e1b0112bc94aa8ff6cbbdd1df41bfe3f3cf1a090ac10b21c9dd533",
                "md5": "3a00feea3d38eeee91a2e7ae530f585b",
                "sha256": "41ce167b214e4b9b71753b06980f17cbd6eb17d9be9f836b1ade1b28fe83b5b9"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3a00feea3d38eeee91a2e7ae530f585b",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 485034,
            "upload_time": "2024-09-19T08:36:04",
            "upload_time_iso_8601": "2024-09-19T08:36:04.074338Z",
            "url": "https://files.pythonhosted.org/packages/8a/eb/5ab989e1b0112bc94aa8ff6cbbdd1df41bfe3f3cf1a090ac10b21c9dd533/scylla_cqlsh-6.0.23-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1893d414d76fc2617a5336dba26006299929200205b71eeb1b578f6c87c5fe94",
                "md5": "9eb6014771917b81d6a127883870ef56",
                "sha256": "bfdac5fdf9b59a828104c7b1208477da7a28c85775f0c5c706ca57204d746954"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9eb6014771917b81d6a127883870ef56",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 529165,
            "upload_time": "2024-09-19T08:36:05",
            "upload_time_iso_8601": "2024-09-19T08:36:05.400106Z",
            "url": "https://files.pythonhosted.org/packages/18/93/d414d76fc2617a5336dba26006299929200205b71eeb1b578f6c87c5fe94/scylla_cqlsh-6.0.23-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1129b950c85ef7fa33dab927cf6f2dc90975579584ad2f889e0582d89b89d13a",
                "md5": "51b421c7a204a465406f6bf068a7e0f5",
                "sha256": "16aea47758b03beec89071d6a6234e6f137adaf4fc10db69b5d8438f3b59562c"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "51b421c7a204a465406f6bf068a7e0f5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 494966,
            "upload_time": "2024-09-19T08:36:06",
            "upload_time_iso_8601": "2024-09-19T08:36:06.958243Z",
            "url": "https://files.pythonhosted.org/packages/11/29/b950c85ef7fa33dab927cf6f2dc90975579584ad2f889e0582d89b89d13a/scylla_cqlsh-6.0.23-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "947954eb5708441783bf5be107d4d294fcaab65c2a5a588f245d19d26e991ef0",
                "md5": "c03955725e5f7b3337873a86b0cbc9e9",
                "sha256": "617bc4360486c4f9115e980fbebacb2b8bbca8998501ed90b2647718e308107d"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c03955725e5f7b3337873a86b0cbc9e9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 608426,
            "upload_time": "2024-09-19T08:36:08",
            "upload_time_iso_8601": "2024-09-19T08:36:08.163910Z",
            "url": "https://files.pythonhosted.org/packages/94/79/54eb5708441783bf5be107d4d294fcaab65c2a5a588f245d19d26e991ef0/scylla_cqlsh-6.0.23-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e43a38d18bb40f57ed26e84a9d05e927ec6169acbeded6f5a8c0f5f9a70b8733",
                "md5": "f9b30b54e6b14dcf7f38e52fc192e1ad",
                "sha256": "44e361467337afe03f8243cddb3424e17af843b437c288c9ffc6665b1ca1ba1a"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f9b30b54e6b14dcf7f38e52fc192e1ad",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 592149,
            "upload_time": "2024-09-19T08:36:09",
            "upload_time_iso_8601": "2024-09-19T08:36:09.471625Z",
            "url": "https://files.pythonhosted.org/packages/e4/3a/38d18bb40f57ed26e84a9d05e927ec6169acbeded6f5a8c0f5f9a70b8733/scylla_cqlsh-6.0.23-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf702f30bd0fed31220e32be35912734e5b9ea34933062adf1fcfabaab2c0fb6",
                "md5": "183c170d78ae1ebbd93b4ed9b79f2991",
                "sha256": "87dc747dfb651c20e6608e56782f37ce98a7b5e69617af9082ca70c786f72ebb"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "183c170d78ae1ebbd93b4ed9b79f2991",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 485253,
            "upload_time": "2024-09-19T08:36:11",
            "upload_time_iso_8601": "2024-09-19T08:36:11.114389Z",
            "url": "https://files.pythonhosted.org/packages/bf/70/2f30bd0fed31220e32be35912734e5b9ea34933062adf1fcfabaab2c0fb6/scylla_cqlsh-6.0.23-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "066885f65c280134d5b3420ca681f10235ce785607d30c43735dd48007b25d1e",
                "md5": "9f4b7be9979ccad4451baf413cedb06e",
                "sha256": "2686f6aca684a77ab4c60e566940790a3ce1b4deeec30426e67ffcd73388edc3"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f4b7be9979ccad4451baf413cedb06e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 522687,
            "upload_time": "2024-09-19T08:36:12",
            "upload_time_iso_8601": "2024-09-19T08:36:12.491081Z",
            "url": "https://files.pythonhosted.org/packages/06/68/85f65c280134d5b3420ca681f10235ce785607d30c43735dd48007b25d1e/scylla_cqlsh-6.0.23-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbfe92bcd3c067374f35c0b97761c881d5ab4a95c23d593bdb4c432fc7539ed5",
                "md5": "285e8af3fccd7e7872a7e14513c2c486",
                "sha256": "71582abb89a4c5b9dceb395a8d3b806e34002a847e1099111a3df4ee8b308476"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "285e8af3fccd7e7872a7e14513c2c486",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 488222,
            "upload_time": "2024-09-19T08:36:13",
            "upload_time_iso_8601": "2024-09-19T08:36:13.923677Z",
            "url": "https://files.pythonhosted.org/packages/db/fe/92bcd3c067374f35c0b97761c881d5ab4a95c23d593bdb4c432fc7539ed5/scylla_cqlsh-6.0.23-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efe237d8cadb0e097de161c33d6c86a60a1b6b4f9e6bf23188d6bdec3fe8f5b6",
                "md5": "2efab1f7b3de5e947c88615edba2e670",
                "sha256": "d05ca6fe4fd21e9aa4a8ee70385866aab6ad0626b9d97db6bc1b15acda8e055a"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2efab1f7b3de5e947c88615edba2e670",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 582432,
            "upload_time": "2024-09-19T08:36:15",
            "upload_time_iso_8601": "2024-09-19T08:36:15.225059Z",
            "url": "https://files.pythonhosted.org/packages/ef/e2/37d8cadb0e097de161c33d6c86a60a1b6b4f9e6bf23188d6bdec3fe8f5b6/scylla_cqlsh-6.0.23-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63faddd6725b12ad523dd7a66df312004687424f2fff663798c40592e347dfff",
                "md5": "e91f9839fe35ae5335c799cdd8d93613",
                "sha256": "827a841bd9797073fb3dd12aeccaaefcf6ab049e4a93bf475cd6cd9e6e13e514"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e91f9839fe35ae5335c799cdd8d93613",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 572644,
            "upload_time": "2024-09-19T08:36:16",
            "upload_time_iso_8601": "2024-09-19T08:36:16.888364Z",
            "url": "https://files.pythonhosted.org/packages/63/fa/ddd6725b12ad523dd7a66df312004687424f2fff663798c40592e347dfff/scylla_cqlsh-6.0.23-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10bf59b3c543c18e84887151a68f265f7f72369b5bdae913598cdc33319b7409",
                "md5": "9c94771d4baab0de3409d0a67aad4b80",
                "sha256": "10736f342b018a24a26d31612818e608e5f962e0055296aba4f0dca378f40273"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9c94771d4baab0de3409d0a67aad4b80",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 480933,
            "upload_time": "2024-09-19T08:36:18",
            "upload_time_iso_8601": "2024-09-19T08:36:18.096337Z",
            "url": "https://files.pythonhosted.org/packages/10/bf/59b3c543c18e84887151a68f265f7f72369b5bdae913598cdc33319b7409/scylla_cqlsh-6.0.23-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77d874aa197f4e11cacad86253af1964920e6b365a13c36ae262af5eac9308a3",
                "md5": "2e42aa3999d10a34d4a81c1bc56b5327",
                "sha256": "d67056e673bef1a9821d62a8a1d2001e11d85be6bf1d33f0b29040191d3173d5"
            },
            "downloads": -1,
            "filename": "scylla_cqlsh-6.0.23.tar.gz",
            "has_sig": false,
            "md5_digest": "2e42aa3999d10a34d4a81c1bc56b5327",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 764602,
            "upload_time": "2024-09-19T08:36:19",
            "upload_time_iso_8601": "2024-09-19T08:36:19.331272Z",
            "url": "https://files.pythonhosted.org/packages/77/d8/74aa197f4e11cacad86253af1964920e6b365a13c36ae262af5eac9308a3/scylla_cqlsh-6.0.23.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-19 08:36:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "scylladb",
    "github_project": "scylla-cqlsh",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "scylla-cqlsh"
}
        
Elapsed time: 0.33279s