plyvel icon indicating copy to clipboard operation
plyvel copied to clipboard

Plyvel, a fast and feature-rich Python interface to LevelDB

Results 22 plyvel issues
Sort by recently updated
recently updated
newest added

To avoid messing with iterators, the `DB` could have `.get_or_next(...)` and `.get_or_prev(...)` methods. In addition to the args already supported by the `.get()` method, it would also have `include_key` and...

Hello I am using plyvel-ci1.5.1 with python3.11 on windows10. When I run the following code, python crashes the second time. ``` import plyvel import random db = plyvel.DB(r"", create_if_missing=True) with...