aerospike


Nameaerospike JSON
Version 15.0.0 PyPI version JSON
download
home_pageNone
SummaryAerospike Client Library for Python
upload_time2024-04-09 22:52:33
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseApache Software License
keywords aerospike nosql database
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Aerospike Python Client
=======================
|Build| |Release| |Wheel| |Downloads| |License|

.. |Build| image:: https://travis-ci.org/aerospike/aerospike-client-python.svg?branch=master
.. |Release| image:: https://img.shields.io/pypi/v/aerospike.svg
.. |Wheel| image:: https://img.shields.io/pypi/wheel/aerospike.svg
.. |Downloads| image:: https://img.shields.io/pypi/dm/aerospike.svg
.. |License| image:: https://img.shields.io/pypi/l/aerospike.svg

Compatibility
-------------

The Python client for Aerospike works with Python 3.8 - 3.12 and supports the following OS'es:

* macOS 11 and 12
* CentOS 7 Linux
* RHEL 8 and 9
* Amazon Linux 2023
* Debian 11 and 12
* Ubuntu 20.04 and 22.04
* Windows (x64)

The client is also verified to run on these operating systems, but we do not officially support them (i.e we don't distribute wheels or prioritize fixing bugs for these OSes):

* Alpine Linux

**NOTE:** Aerospike Python client 5.0.0 and up MUST be used with Aerospike server 4.9 or later.
If you see the error "-10, ‘Failed to connect’", please make sure you are using server 4.9 or later.

Install
-------

::

    pip install aerospike

In most cases ``pip`` will install a precompiled binary (wheel) matching your OS
and version of Python. If a matching wheel isn't found it, or the
``--install-option`` argument is provided, pip will build the Python client
from source.

Please see the `build instructions <https://github.com/aerospike/aerospike-client-python/blob/master/BUILD.md>`__
for more.

Troubleshooting
~~~~~~~~~~~~~~~

::

    # client >=3.8.0 will attempt a manylinux wheel installation for Linux distros
    # to force a pip install from source:
    pip install aerospike --no-binary :all:

    # to troubleshoot pip versions >= 6.0 you can
    pip install --no-cache-dir aerospike

If you run into trouble installing the client on a supported OS, you may be
using an outdated ``pip``.
Versions of ``pip`` older than 7.0.0 should be upgraded, as well as versions of
``setuptools`` older than 18.0.0.


Troubleshooting macOS
~~~~~~~~~~~~~~~~~~~~~

In some versions of macOS, Python 2.7 is installed as ``python`` with
``pip`` as its associated package manager, and Python 3 is installed as ``python3``
with ``pip3`` as the associated package manager. Make sure to use the ones that
map to Python 3, such as ``pip3 install aerospike``.

Attempting to install the client with pip for the system default Python may cause permissions issues when copying necessary files. In order to avoid
those issues the client can be installed for the current user only with the command: ``pip install --user aerospike``

::

    # to trouleshoot installation on macOS try
    pip install --no-cache-dir --user aerospike


Build
-----

For instructions on manually building the Python client, please refer to
`BUILD.md <https://github.com/aerospike/aerospike-client-python/blob/master/BUILD.md>`__.

Documentation
-------------

Documentation is hosted at `aerospike-python-client.readthedocs.io <https://aerospike-python-client.readthedocs.io/>`__
and at `aerospike.com/apidocs/python <http://www.aerospike.com/apidocs/python/>`__.

Examples
--------

Example applications are provided in the `examples directory of the GitHub repository <https://github.com/aerospike/aerospike-client-python/tree/master/examples/client>`__

For examples, to run the ``kvs.py``:

::

    python examples/client/kvs.py


Benchmarks
----------

To run the benchmarks the python module 'tabulate' need to be installed. In order to display heap information the module `guppy` must be installed.
Note that `guppy` is only available for Python2. If `guppy` is not installed the benchmarks will still be runnable.
Benchmark applications are provided in the `benchmarks directory of the GitHub repository <https://github.com/aerospike/aerospike-client-python/tree/master/benchmarks>`__

By default the benchmarks will try to connect to a server located at 127.0.0.1:3000 , instructions on changing that setting and other command line flags may be displayed by appending the `--help` argument to the benchmark script. For example:
::

    python benchmarks/keygen.py --help

License
-------

The Aerospike Python Client is made availabled under the terms of the
Apache License, Version 2, as stated in the file ``LICENSE``.

Individual files may be made available under their own specific license,
all compatible with Apache License, Version 2. Please see individual
files for details.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "aerospike",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "aerospike, nosql, database",
    "author": null,
    "author_email": "\"Aerospike, Inc.\" <info@aerospike.com>",
    "download_url": "https://files.pythonhosted.org/packages/3d/5e/fd5d328559d368929000b9bb5085ddaf5082c84fde6d36a87c8e503f645f/aerospike-15.0.0.tar.gz",
    "platform": null,
    "description": "Aerospike Python Client\n=======================\n|Build| |Release| |Wheel| |Downloads| |License|\n\n.. |Build| image:: https://travis-ci.org/aerospike/aerospike-client-python.svg?branch=master\n.. |Release| image:: https://img.shields.io/pypi/v/aerospike.svg\n.. |Wheel| image:: https://img.shields.io/pypi/wheel/aerospike.svg\n.. |Downloads| image:: https://img.shields.io/pypi/dm/aerospike.svg\n.. |License| image:: https://img.shields.io/pypi/l/aerospike.svg\n\nCompatibility\n-------------\n\nThe Python client for Aerospike works with Python 3.8 - 3.12 and supports the following OS'es:\n\n* macOS 11 and 12\n* CentOS 7 Linux\n* RHEL 8 and 9\n* Amazon Linux 2023\n* Debian 11 and 12\n* Ubuntu 20.04 and 22.04\n* Windows (x64)\n\nThe client is also verified to run on these operating systems, but we do not officially support them (i.e we don't distribute wheels or prioritize fixing bugs for these OSes):\n\n* Alpine Linux\n\n**NOTE:** Aerospike Python client 5.0.0 and up MUST be used with Aerospike server 4.9 or later.\nIf you see the error \"-10, \u2018Failed to connect\u2019\", please make sure you are using server 4.9 or later.\n\nInstall\n-------\n\n::\n\n    pip install aerospike\n\nIn most cases ``pip`` will install a precompiled binary (wheel) matching your OS\nand version of Python. If a matching wheel isn't found it, or the\n``--install-option`` argument is provided, pip will build the Python client\nfrom source.\n\nPlease see the `build instructions <https://github.com/aerospike/aerospike-client-python/blob/master/BUILD.md>`__\nfor more.\n\nTroubleshooting\n~~~~~~~~~~~~~~~\n\n::\n\n    # client >=3.8.0 will attempt a manylinux wheel installation for Linux distros\n    # to force a pip install from source:\n    pip install aerospike --no-binary :all:\n\n    # to troubleshoot pip versions >= 6.0 you can\n    pip install --no-cache-dir aerospike\n\nIf you run into trouble installing the client on a supported OS, you may be\nusing an outdated ``pip``.\nVersions of ``pip`` older than 7.0.0 should be upgraded, as well as versions of\n``setuptools`` older than 18.0.0.\n\n\nTroubleshooting macOS\n~~~~~~~~~~~~~~~~~~~~~\n\nIn some versions of macOS, Python 2.7 is installed as ``python`` with\n``pip`` as its associated package manager, and Python 3 is installed as ``python3``\nwith ``pip3`` as the associated package manager. Make sure to use the ones that\nmap to Python 3, such as ``pip3 install aerospike``.\n\nAttempting to install the client with pip for the system default Python may cause permissions issues when copying necessary files. In order to avoid\nthose issues the client can be installed for the current user only with the command: ``pip install --user aerospike``\n\n::\n\n    # to trouleshoot installation on macOS try\n    pip install --no-cache-dir --user aerospike\n\n\nBuild\n-----\n\nFor instructions on manually building the Python client, please refer to\n`BUILD.md <https://github.com/aerospike/aerospike-client-python/blob/master/BUILD.md>`__.\n\nDocumentation\n-------------\n\nDocumentation is hosted at `aerospike-python-client.readthedocs.io <https://aerospike-python-client.readthedocs.io/>`__\nand at `aerospike.com/apidocs/python <http://www.aerospike.com/apidocs/python/>`__.\n\nExamples\n--------\n\nExample applications are provided in the `examples directory of the GitHub repository <https://github.com/aerospike/aerospike-client-python/tree/master/examples/client>`__\n\nFor examples, to run the ``kvs.py``:\n\n::\n\n    python examples/client/kvs.py\n\n\nBenchmarks\n----------\n\nTo run the benchmarks the python module 'tabulate' need to be installed. In order to display heap information the module `guppy` must be installed.\nNote that `guppy` is only available for Python2. If `guppy` is not installed the benchmarks will still be runnable.\nBenchmark applications are provided in the `benchmarks directory of the GitHub repository <https://github.com/aerospike/aerospike-client-python/tree/master/benchmarks>`__\n\nBy default the benchmarks will try to connect to a server located at 127.0.0.1:3000 , instructions on changing that setting and other command line flags may be displayed by appending the `--help` argument to the benchmark script. For example:\n::\n\n    python benchmarks/keygen.py --help\n\nLicense\n-------\n\nThe Aerospike Python Client is made availabled under the terms of the\nApache License, Version 2, as stated in the file ``LICENSE``.\n\nIndividual files may be made available under their own specific license,\nall compatible with Apache License, Version 2. Please see individual\nfiles for details.\n",
    "bugtrack_url": null,
    "license": "Apache Software License",
    "summary": "Aerospike Client Library for Python",
    "version": "15.0.0",
    "project_urls": {
        "Homepage": "https://aerospike.com"
    },
    "split_keywords": [
        "aerospike",
        " nosql",
        " database"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4637c6eb44386ebfafa71e3f4bc2d3b627919d6a17ec917399f9fd549825e9c",
                "md5": "4754e8f85a33b9283d5cb0312bd88245",
                "sha256": "4d17ff7a3c4ea0f43074dfd298c6e35ab7c45db26c8cc1acaf87613ca4def940"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4754e8f85a33b9283d5cb0312bd88245",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1923892,
            "upload_time": "2024-04-09T22:51:40",
            "upload_time_iso_8601": "2024-04-09T22:51:40.361645Z",
            "url": "https://files.pythonhosted.org/packages/c4/63/7c6eb44386ebfafa71e3f4bc2d3b627919d6a17ec917399f9fd549825e9c/aerospike-15.0.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "172669acd726e7f7105a99cb108405f2b99358d9037d6f953596f6b6733970e3",
                "md5": "f356a7c5b441050e17f568e94cc63f52",
                "sha256": "66d0771f690db08e4c9b5294ee16b9f06a31547c973453712d91559deee570ad"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp310-cp310-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f356a7c5b441050e17f568e94cc63f52",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1773483,
            "upload_time": "2024-04-09T22:51:43",
            "upload_time_iso_8601": "2024-04-09T22:51:43.837459Z",
            "url": "https://files.pythonhosted.org/packages/17/26/69acd726e7f7105a99cb108405f2b99358d9037d6f953596f6b6733970e3/aerospike-15.0.0-cp310-cp310-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a62b0e0a5a2e612640bdbfc4e29bf1c99213f45660f6660b7bec8fb16874269",
                "md5": "394c5786f0286fd37e8bbe72bcd3e43a",
                "sha256": "fb62accc3adc8eae8f31e0f119b999fdd2eb4b652d58fccb7e7d75ae8f65ef51"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "394c5786f0286fd37e8bbe72bcd3e43a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5093237,
            "upload_time": "2024-04-09T22:51:46",
            "upload_time_iso_8601": "2024-04-09T22:51:46.046786Z",
            "url": "https://files.pythonhosted.org/packages/5a/62/b0e0a5a2e612640bdbfc4e29bf1c99213f45660f6660b7bec8fb16874269/aerospike-15.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ddd6b3caebee5af7da972b4ef624e5e6a6820d5b78fa729acc9f8b740ffc5503",
                "md5": "0ed8ca03b031f8ec77a0819226eeca61",
                "sha256": "d4b1620e2b495b2006b34460952175d021f5911823f9bd222f90581f848b0ab0"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ed8ca03b031f8ec77a0819226eeca61",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5384651,
            "upload_time": "2024-04-09T22:51:47",
            "upload_time_iso_8601": "2024-04-09T22:51:47.743574Z",
            "url": "https://files.pythonhosted.org/packages/dd/d6/b3caebee5af7da972b4ef624e5e6a6820d5b78fa729acc9f8b740ffc5503/aerospike-15.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fe856ab4b3e670b506162587304176c4c68f5d826db09d4c640256ee66ee7cf",
                "md5": "43717d151e402d89caef67032aec0809",
                "sha256": "7e4cc569139ae7ab9b152ce1ec81104324e0fe357f2876583632fa6a33b2cd9c"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "43717d151e402d89caef67032aec0809",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1775391,
            "upload_time": "2024-04-09T22:51:49",
            "upload_time_iso_8601": "2024-04-09T22:51:49.280899Z",
            "url": "https://files.pythonhosted.org/packages/9f/e8/56ab4b3e670b506162587304176c4c68f5d826db09d4c640256ee66ee7cf/aerospike-15.0.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7b03cf1dd4cc976d5bee1e1260c4687b00e165cf8de7dbd321dc7ba81148534",
                "md5": "200f3ed35384bdf4d1355fe634730aad",
                "sha256": "d9000dc37330a4e628028664be3b15bc9915653b8161c3c6d5c9bded96bd3482"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "200f3ed35384bdf4d1355fe634730aad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1925927,
            "upload_time": "2024-04-09T22:51:51",
            "upload_time_iso_8601": "2024-04-09T22:51:51.418244Z",
            "url": "https://files.pythonhosted.org/packages/f7/b0/3cf1dd4cc976d5bee1e1260c4687b00e165cf8de7dbd321dc7ba81148534/aerospike-15.0.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f59567f23491d97b7bb04443766d58b50e10b57b71a822e4b64d5b4829e0ecd",
                "md5": "f602ce43fa1920f22a0eb5634bb8b9cf",
                "sha256": "434ef2b8f2a6304e95e144e3d877139e57492811dacf747c586ecd6215ca3088"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp311-cp311-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f602ce43fa1920f22a0eb5634bb8b9cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1770539,
            "upload_time": "2024-04-09T22:51:53",
            "upload_time_iso_8601": "2024-04-09T22:51:53.541333Z",
            "url": "https://files.pythonhosted.org/packages/7f/59/567f23491d97b7bb04443766d58b50e10b57b71a822e4b64d5b4829e0ecd/aerospike-15.0.0-cp311-cp311-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1514b14f1234061c76cff74f518c54f7f91700cabc8cd492758f41041c7c48d1",
                "md5": "615f473f9d8295b9d03963d836adca48",
                "sha256": "1be698689b8b42d65d9bbffc80d122c3e1f2f8471b32a3ab300631136edf478a"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "615f473f9d8295b9d03963d836adca48",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5127809,
            "upload_time": "2024-04-09T22:51:56",
            "upload_time_iso_8601": "2024-04-09T22:51:56.497122Z",
            "url": "https://files.pythonhosted.org/packages/15/14/b14f1234061c76cff74f518c54f7f91700cabc8cd492758f41041c7c48d1/aerospike-15.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f3c1eeceb0fa6f81b63f92c1887c552bfb222fcf3bf38b882dea6af63e5827e",
                "md5": "afc8a2ec6a3ca206376baa77601fb852",
                "sha256": "34d7580a27eef28ea4300e0a4d39a72c5dcd3f9b8efeee6361fe621a158fc264"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "afc8a2ec6a3ca206376baa77601fb852",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5419630,
            "upload_time": "2024-04-09T22:51:58",
            "upload_time_iso_8601": "2024-04-09T22:51:58.679386Z",
            "url": "https://files.pythonhosted.org/packages/0f/3c/1eeceb0fa6f81b63f92c1887c552bfb222fcf3bf38b882dea6af63e5827e/aerospike-15.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9ff516c32c3ef9c92a1da5771b8e6d0888a7f44c43e446459cca6196f080abb",
                "md5": "a1dfe6b9dd3ff8ac5cad4a05713ba5ed",
                "sha256": "733ee1955ee4da85c4f11b62d9c59e25e3f109b12df3dfa8e0dfe7a5355725cd"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a1dfe6b9dd3ff8ac5cad4a05713ba5ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1775345,
            "upload_time": "2024-04-09T22:52:00",
            "upload_time_iso_8601": "2024-04-09T22:52:00.405807Z",
            "url": "https://files.pythonhosted.org/packages/a9/ff/516c32c3ef9c92a1da5771b8e6d0888a7f44c43e446459cca6196f080abb/aerospike-15.0.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42db011df1eeeac68000899b1238c744c56b9cc5d4a8f083b501f226bffdaed0",
                "md5": "fa72936f39a9d95f14018bb92e6bd11f",
                "sha256": "9a3f3f7f9ad93b345899fe10b0ef63a21ad8c2ef9b177a9bc836cf2c661462e4"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa72936f39a9d95f14018bb92e6bd11f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1926985,
            "upload_time": "2024-04-09T22:52:02",
            "upload_time_iso_8601": "2024-04-09T22:52:02.642136Z",
            "url": "https://files.pythonhosted.org/packages/42/db/011df1eeeac68000899b1238c744c56b9cc5d4a8f083b501f226bffdaed0/aerospike-15.0.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a251731bab0502bdd2eb3cf61fbff8b8b4b38e3e1d8375e72f566c5f824c5cb",
                "md5": "9b2d932a8e9eedb02d8f2148ab2d8d7b",
                "sha256": "449004f30c25724efbcedaf6fc3a783f630714438c08f7b778d54d778be5ad7e"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp312-cp312-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9b2d932a8e9eedb02d8f2148ab2d8d7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1770352,
            "upload_time": "2024-04-09T22:52:04",
            "upload_time_iso_8601": "2024-04-09T22:52:04.418789Z",
            "url": "https://files.pythonhosted.org/packages/6a/25/1731bab0502bdd2eb3cf61fbff8b8b4b38e3e1d8375e72f566c5f824c5cb/aerospike-15.0.0-cp312-cp312-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ecf3ba1aa95f24cbcfc5323cdc60a0471c8ce33462c8e4df8a93ed8a05413d5",
                "md5": "c5fc821db82935f5f5b6da352b2d972e",
                "sha256": "7350eb463356f2745b2e717420f5c654539e6f5c848fa01c7da861e354c1d5c5"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c5fc821db82935f5f5b6da352b2d972e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5146236,
            "upload_time": "2024-04-09T22:52:06",
            "upload_time_iso_8601": "2024-04-09T22:52:06.181938Z",
            "url": "https://files.pythonhosted.org/packages/7e/cf/3ba1aa95f24cbcfc5323cdc60a0471c8ce33462c8e4df8a93ed8a05413d5/aerospike-15.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3aee6a196d0d672f3a025ea703c09c155a1a6917e72749812eeb7ea61f6c72f",
                "md5": "a3b361f6b768e765115a92bca4b8b480",
                "sha256": "2eec0bc639e927c307117a13d86fac576fa7db1e9e3d792ad149bb62b33bfdcb"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a3b361f6b768e765115a92bca4b8b480",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5441889,
            "upload_time": "2024-04-09T22:52:08",
            "upload_time_iso_8601": "2024-04-09T22:52:08.475597Z",
            "url": "https://files.pythonhosted.org/packages/c3/ae/e6a196d0d672f3a025ea703c09c155a1a6917e72749812eeb7ea61f6c72f/aerospike-15.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00f6e463eea313d9422ac76773b4855aa077c2b1b63c4c2501271cdf86e05011",
                "md5": "c09473b18ee01ab358ff3d10e9054733",
                "sha256": "bb3ef7998fed3c3f053458776d7ea074fb9d48b17679ef8a712d08f4fe3b79f1"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c09473b18ee01ab358ff3d10e9054733",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1776248,
            "upload_time": "2024-04-09T22:52:10",
            "upload_time_iso_8601": "2024-04-09T22:52:10.183137Z",
            "url": "https://files.pythonhosted.org/packages/00/f6/e463eea313d9422ac76773b4855aa077c2b1b63c4c2501271cdf86e05011/aerospike-15.0.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07fde8038eea2925dcacdf4c6231848591d24e299c3989fdff8833e3bbb488e2",
                "md5": "a8554c9a2b32938b4c1388a5ecf0bb14",
                "sha256": "f067082bd89259b7a24ba0a87cc0ab35cb0129a8adb636e0bc30b0ef6f250228"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a8554c9a2b32938b4c1388a5ecf0bb14",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1919226,
            "upload_time": "2024-04-09T22:52:13",
            "upload_time_iso_8601": "2024-04-09T22:52:13.107694Z",
            "url": "https://files.pythonhosted.org/packages/07/fd/e8038eea2925dcacdf4c6231848591d24e299c3989fdff8833e3bbb488e2/aerospike-15.0.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c1ddcc4d49ff73f68ddb1204cd184166a5c7ed7940fc98853ccf074db8b4985",
                "md5": "3b18f2b29ea2b1a63f3b30e80c8cda3e",
                "sha256": "70822c390940cfbfb1e9a316a3ef081415976d327975cb525978613e9cb31611"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp38-cp38-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3b18f2b29ea2b1a63f3b30e80c8cda3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1763118,
            "upload_time": "2024-04-09T22:52:15",
            "upload_time_iso_8601": "2024-04-09T22:52:15.136691Z",
            "url": "https://files.pythonhosted.org/packages/2c/1d/dcc4d49ff73f68ddb1204cd184166a5c7ed7940fc98853ccf074db8b4985/aerospike-15.0.0-cp38-cp38-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8731e00c8a1400ac1b32f51ce599f06c69d46aee781228dcd9eb0d649c8beb44",
                "md5": "bf43d33c623c941fea4227b5343f87a7",
                "sha256": "91ef174fa4edb8d8b4dc1731fa00bbaf28a1f900e475f8eb3b3e760db8b107f8"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bf43d33c623c941fea4227b5343f87a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5077413,
            "upload_time": "2024-04-09T22:52:16",
            "upload_time_iso_8601": "2024-04-09T22:52:16.719461Z",
            "url": "https://files.pythonhosted.org/packages/87/31/e00c8a1400ac1b32f51ce599f06c69d46aee781228dcd9eb0d649c8beb44/aerospike-15.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb15b65db5cc5719d00273f3a5e212a6f5c8784027538358b0f914db860bb524",
                "md5": "b65b04802052d5d16cf023a4527c2a64",
                "sha256": "774a2c35da58e0bdbee034f301c9f64f485772e7357980ddea3147ca4ab5f6d2"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b65b04802052d5d16cf023a4527c2a64",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5371361,
            "upload_time": "2024-04-09T22:52:20",
            "upload_time_iso_8601": "2024-04-09T22:52:20.886714Z",
            "url": "https://files.pythonhosted.org/packages/fb/15/b65db5cc5719d00273f3a5e212a6f5c8784027538358b0f914db860bb524/aerospike-15.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6599ae262169ae1e3b8b1a588ffa960e2836885b23b23f2b98a0bc8c26076126",
                "md5": "f672a39b87314c2069b32af7985eac6d",
                "sha256": "378a2664075cd8b9e89b66694dbee63cbfe0b47a1a19af0668636a2fc56d851c"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f672a39b87314c2069b32af7985eac6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1771371,
            "upload_time": "2024-04-09T22:52:22",
            "upload_time_iso_8601": "2024-04-09T22:52:22.530478Z",
            "url": "https://files.pythonhosted.org/packages/65/99/ae262169ae1e3b8b1a588ffa960e2836885b23b23f2b98a0bc8c26076126/aerospike-15.0.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d04fcfa85ad39e2d24d0adb51d703be85a527d877c5a7db6272aef1e0514a468",
                "md5": "dd1fd866a846a553b6150cf630e9130c",
                "sha256": "5df9447b21154b9eb1b1e804827d43a76ca4d2798959e2546b55c2aba35597ba"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dd1fd866a846a553b6150cf630e9130c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1923588,
            "upload_time": "2024-04-09T22:52:24",
            "upload_time_iso_8601": "2024-04-09T22:52:24.249051Z",
            "url": "https://files.pythonhosted.org/packages/d0/4f/cfa85ad39e2d24d0adb51d703be85a527d877c5a7db6272aef1e0514a468/aerospike-15.0.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4815a46c7befd114fcc24e8003d30f3d682495b5edd10522f98c78e19daede59",
                "md5": "50beae1721502f3deea68a1bd629e2dc",
                "sha256": "e19f9ba735cae1ff38103cbed1d44c9b34612005c43efe53360601ff4636faa7"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp39-cp39-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "50beae1721502f3deea68a1bd629e2dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1767594,
            "upload_time": "2024-04-09T22:52:26",
            "upload_time_iso_8601": "2024-04-09T22:52:26.043165Z",
            "url": "https://files.pythonhosted.org/packages/48/15/a46c7befd114fcc24e8003d30f3d682495b5edd10522f98c78e19daede59/aerospike-15.0.0-cp39-cp39-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8271e2e9d14d46eddcff4fbd0140507ae8d13b54881fef01d7de88b0f8902ea6",
                "md5": "47658393008e446ccecadf09b8c1d501",
                "sha256": "4f750d01ef768221266238afb0b909991610a102b83477c0fd287f7f37072bf2"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "47658393008e446ccecadf09b8c1d501",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5094339,
            "upload_time": "2024-04-09T22:52:28",
            "upload_time_iso_8601": "2024-04-09T22:52:28.471251Z",
            "url": "https://files.pythonhosted.org/packages/82/71/e2e9d14d46eddcff4fbd0140507ae8d13b54881fef01d7de88b0f8902ea6/aerospike-15.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "062537bd0726860ef061c62f4f7936cc54d50935ed2401b41589ccf470ccf64d",
                "md5": "55088afb390740db83d88956d1c650c0",
                "sha256": "ad2f432af0751d3aec018f23b98b3d3e835dbfc19df864f5106f63fcce4a3ee6"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55088afb390740db83d88956d1c650c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5384706,
            "upload_time": "2024-04-09T22:52:30",
            "upload_time_iso_8601": "2024-04-09T22:52:30.150110Z",
            "url": "https://files.pythonhosted.org/packages/06/25/37bd0726860ef061c62f4f7936cc54d50935ed2401b41589ccf470ccf64d/aerospike-15.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5dd7213d315f01075a41b427e888b34b212466e2f42eda47bcd4258e9d4a1f0d",
                "md5": "66522eece24435b45ccf94411947c5be",
                "sha256": "1d409f3f52bf5ab44fed4d9f31444d241027d5b7fc56a35f2ec2cdb757ac1762"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "66522eece24435b45ccf94411947c5be",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1771475,
            "upload_time": "2024-04-09T22:52:31",
            "upload_time_iso_8601": "2024-04-09T22:52:31.827418Z",
            "url": "https://files.pythonhosted.org/packages/5d/d7/213d315f01075a41b427e888b34b212466e2f42eda47bcd4258e9d4a1f0d/aerospike-15.0.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d5efd5d328559d368929000b9bb5085ddaf5082c84fde6d36a87c8e503f645f",
                "md5": "d6d328d8d6fecab2e355ae1071d37cf3",
                "sha256": "e6f4061da476a4cb70bbdf96dae9a4c94028403f090d2ce5af4e69dae16621e3"
            },
            "downloads": -1,
            "filename": "aerospike-15.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d6d328d8d6fecab2e355ae1071d37cf3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2136770,
            "upload_time": "2024-04-09T22:52:33",
            "upload_time_iso_8601": "2024-04-09T22:52:33.941272Z",
            "url": "https://files.pythonhosted.org/packages/3d/5e/fd5d328559d368929000b9bb5085ddaf5082c84fde6d36a87c8e503f645f/aerospike-15.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-09 22:52:33",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "aerospike"
}
        
Elapsed time: 0.23346s