aerospike-client-python icon indicating copy to clipboard operation
aerospike-client-python copied to clipboard

Aerospike Python Client

Results 184 aerospike-client-python issues
Sort by recently updated
recently updated
newest added

Python 3.8.11 ```shell pip install aerospike Collecting aerospike Using cached aerospike-6.1.2.tar.gz (2.8 MB) Preparing metadata (setup.py) ... done Building wheels for collected packages: aerospike Building wheel for aerospike (setup.py) ......

The library fails to install on alpine images. Steps followed: ``` apk add --no-cache build-base openssl-dev zlib-dev pip install aerospike ``` ``` src/main/client/set_xdr_filter.c: In function 'AerospikeClient_SetXDRFilter': src/main/client/set_xdr_filter.c:119:2: error: unknown type...

I'm facing this error while running in ubuntu 22.04 ```sh Error: While importing 'app', an ImportError was raised: Traceback (most recent call last): File "/home/kubuntu/Projects/flask-server/env/lib/python3.10/site-packages/flask/cli.py", line 260, in locate_app __import__(module_name)...

getting this when attempting to install aerospike 6.1.2 on Ubuntu 21.10 with Python 3.10.2 (this does not happen on Python 3.9.10) ``` Collecting aerospike==6.1.2 Using cached aerospike-6.1.2.tar.gz (2.8 MB) Preparing...

UDF `write.lua` as follow ```Lua function deleteRecord(rec) aerospike:remove(rec) end ``` execute in python ```Python Query.where(p.equals('tn', tn)).apply('write', 'deleteRecord', []).results() ``` get Error > exception.UDFError: (100, "UDF: Execution Error 2 : ./write.lua:3:...

This is a bump for these 2 old issues https://github.com/aerospike/aerospike-client-python/issues/51, https://github.com/aerospike/aerospike-client-python/issues/52. Based on this comment https://github.com/aerospike/aerospike-client-python/issues/52#issuecomment-147862504, it sounds like async C support was the prereq for adding async python support...

enhancement