Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 2.23 KB

README.md

File metadata and controls

41 lines (31 loc) · 2.23 KB

Aerospike Document API (Python)

Python port of the Aerospike Document API in Java.

This is currently in beta, so there may be bugs or features that aren't supported yet.

More Info

Compatibility

  • Python 3.7 - 3.9
  • Aerospike Python Client 7.0.2

Features

Not all JSONPath queries are currently supported. Here is a list of currently supported features:

Supported? Feature Examples
[x] Map access $.item, $["item"]
[x] List access $.list[0]
[x] Wildcard map access $.*
[x] Wildcard list access $.list[*]
[x] List slices $.list[2:4]
[x] List step slices $.list[2:4:1]
[x] List set of indices $.list[2,4]
[x] Recursive access $..item
[x] Exists filter $.listOfMaps[?(@.mapitem)]
[x] Comparison filter $.listOfMaps[?(@.mapitem > 10)]
[x] And filter $.listOfMaps[?(@.mapitem > 10 & @.mapitem < 50)]
[x] Or filter $.listOfMaps[?(@.mapitem < 10 | @.mapitem > 50)]
[ ] Variable filter $.listOfMaps[?(@.mapitem < $['rootitem'])]
[x] Regex filter* $.listOfMaps[?(@.mapitem =~ "(?i).*mesa")]
[-] Functions $.list.length() supported

* Python regex expressions are used

Contributing

To add features to this project, please see CONTRIBUTING.md in the repository source code.