plyvel-next 2.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- plyvel_next-2.1.0/CHANGELOG.md +255 -0
- plyvel_next-2.1.0/LICENSE +55 -0
- plyvel_next-2.1.0/MANIFEST.in +6 -0
- plyvel_next-2.1.0/Makefile +38 -0
- plyvel_next-2.1.0/PKG-INFO +109 -0
- plyvel_next-2.1.0/README.md +63 -0
- plyvel_next-2.1.0/doc/api.rst +657 -0
- plyvel_next-2.1.0/doc/conf.py +28 -0
- plyvel_next-2.1.0/doc/developer.rst +63 -0
- plyvel_next-2.1.0/doc/index.rst +66 -0
- plyvel_next-2.1.0/doc/installation.rst +88 -0
- plyvel_next-2.1.0/doc/license.rst +1 -0
- plyvel_next-2.1.0/doc/news.rst +1 -0
- plyvel_next-2.1.0/doc/user.rst +515 -0
- plyvel_next-2.1.0/plyvel_next/__init__.py +25 -0
- plyvel_next-2.1.0/plyvel_next/_plyvel.pyx +1194 -0
- plyvel_next-2.1.0/plyvel_next/_version.py +8 -0
- plyvel_next-2.1.0/plyvel_next/comparator.cpp +112 -0
- plyvel_next-2.1.0/plyvel_next/comparator.h +8 -0
- plyvel_next-2.1.0/plyvel_next/comparator.pxd +9 -0
- plyvel_next-2.1.0/plyvel_next/leveldb.pxd +159 -0
- plyvel_next-2.1.0/plyvel_next.egg-info/PKG-INFO +109 -0
- plyvel_next-2.1.0/plyvel_next.egg-info/SOURCES.txt +28 -0
- plyvel_next-2.1.0/plyvel_next.egg-info/dependency_links.txt +1 -0
- plyvel_next-2.1.0/plyvel_next.egg-info/requires.txt +14 -0
- plyvel_next-2.1.0/plyvel_next.egg-info/top_level.txt +1 -0
- plyvel_next-2.1.0/pyproject.toml +70 -0
- plyvel_next-2.1.0/setup.cfg +4 -0
- plyvel_next-2.1.0/setup.py +34 -0
- plyvel_next-2.1.0/test/test_plyvel.py +1184 -0
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## plyvel-next 2.1.0
|
|
4
|
+
|
|
5
|
+
- update manylinux configurations for x86_64 and aarch64 architectures
|
|
6
|
+
- Rename package to `plyvel-next` (previously `plyvel-ci`); import as
|
|
7
|
+
`plyvel_next`.
|
|
8
|
+
- Migrate project tooling to uv (`pyproject.toml` fully self-contained,
|
|
9
|
+
`uv.lock` included).
|
|
10
|
+
- Replace `README.rst` with `README.md`; add platform support table and
|
|
11
|
+
About Modding Forge section; replace inline Changelog with link to
|
|
12
|
+
`CHANGELOG.md`.
|
|
13
|
+
- Convert `LICENSE.rst` to plain `LICENSE` (BSD 3-Clause); add MIT notice
|
|
14
|
+
for Modding Forge modifications since commit
|
|
15
|
+
`e10f4c329aabe4d9e2b596ef0727a018fdc37db7`.
|
|
16
|
+
- Convert `NEWS.rst` to `CHANGELOG.md`.
|
|
17
|
+
- Update Snappy 1.1.9 to 1.2.1 in install scripts; remove no-longer-needed
|
|
18
|
+
inline patch.
|
|
19
|
+
- Modernize `Makefile`: fix paths to `plyvel_next/`, replace deprecated
|
|
20
|
+
`setup.py build_sphinx` with `sphinx-build`, replace `setup.py clean` with
|
|
21
|
+
direct `$(RM)` calls.
|
|
22
|
+
- Update `.readthedocs.yaml` to spec version 2.1 and `ubuntu-24.04`.
|
|
23
|
+
- Remove obsolete files: `.travis.yml`, `tox.ini`, `TODO.rst`,
|
|
24
|
+
`cibuildwheel.yml`.
|
|
25
|
+
- Rename default branch from `CI` to `master`.
|
|
26
|
+
- Update `pyproject.toml` metadata: dual license `BSD-3-Clause AND MIT`,
|
|
27
|
+
Modding Forge as maintainer, homepage `moddingforge.com`, GitHub URLs,
|
|
28
|
+
add Windows and macOS OS classifiers.
|
|
29
|
+
- Overhaul publish workflow: split into `publish-pypi` (OIDC Trusted
|
|
30
|
+
Publisher, `uv publish`) and `publish-github` (GitHub Release with sdist
|
|
31
|
+
and wheels); use job-scoped permissions.
|
|
32
|
+
- Clean up `.gitignore`: fix `plyvel_next/` paths, add `.pyd`, `htmlcov/`,
|
|
33
|
+
`.pytest_cache/`, `doc/build/`, OS and IDE entries.
|
|
34
|
+
- Fix macOS Intel wheel matrix to build for Python 3.12, 3.13, and 3.14.
|
|
35
|
+
|
|
36
|
+
## Plyvel-next: 2.0.1
|
|
37
|
+
|
|
38
|
+
- Fix macOS Intel wheel matrix to build for Python 3.12, 3.13, and 3.14.
|
|
39
|
+
|
|
40
|
+
## plyvel-next 2.0.0
|
|
41
|
+
|
|
42
|
+
- Add Python 3.13-3.14 support.
|
|
43
|
+
- Drop support for Python 3.7-3.11.
|
|
44
|
+
- Add separate GitHub release-asset publish workflow.
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## plyvel-ci 1.5.1
|
|
49
|
+
|
|
50
|
+
- Fork of [plyvel](https://github.com/wbolster/plyvel) by
|
|
51
|
+
[liviaerxin](https://github.com/liviaerxin), published as `plyvel-ci` on PyPI.
|
|
52
|
+
- Add cross-platform CI/CD using cibuildwheel: Linux (manylinux x86_64, aarch64,
|
|
53
|
+
i686), macOS (x86_64, universal2), Windows (x86, AMD64).
|
|
54
|
+
- Add GitHub Actions workflow to publish wheels to PyPI and create GitHub Releases.
|
|
55
|
+
- Build wheels against LevelDB 1.23 and Snappy 1.1.10.
|
|
56
|
+
- Add Python 3.10, 3.11, 3.12 wheel support.
|
|
57
|
+
- Use `windows-2019` as build OS for Windows wheels.
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## plyvel 1.5.1
|
|
62
|
+
|
|
63
|
+
Release date: 2024-01-15
|
|
64
|
+
|
|
65
|
+
- Add Python 3.12 support.
|
|
66
|
+
- Rebuild Linux wheels, including Python 3.12 wheels.
|
|
67
|
+
- Allow using `plyvel.DB` as a context manager
|
|
68
|
+
([pr #151](https://github.com/wbolster/plyvel/pull/151))
|
|
69
|
+
|
|
70
|
+
## plyvel 1.5.0
|
|
71
|
+
|
|
72
|
+
Release date: 2022-10-26
|
|
73
|
+
|
|
74
|
+
- Rebuild Linux wheels, with `manylinux_2_17` and `manylinux2014` compatibility
|
|
75
|
+
(`x86_64` only). Also produce Python 3.11 wheels. Still using Snappy 1.1.9
|
|
76
|
+
and LevelDB 1.22.
|
|
77
|
+
([issue #148](https://github.com/wbolster/plyvel/issues/148))
|
|
78
|
+
|
|
79
|
+
## plyvel 1.4.0
|
|
80
|
+
|
|
81
|
+
Release date: 2021-12-29
|
|
82
|
+
|
|
83
|
+
- Build Linux wheels against Snappy 1.1.9, LevelDB 1.22, and produce Python
|
|
84
|
+
3.10 wheels.
|
|
85
|
+
([issue #138](https://github.com/wbolster/plyvel/issues/138))
|
|
86
|
+
- The minimum LevelDB version is now 1.21.
|
|
87
|
+
([pr #121](https://github.com/wbolster/plyvel/pull/121))
|
|
88
|
+
- Add support for `WriteBatch.append()`.
|
|
89
|
+
([pr #121](https://github.com/wbolster/plyvel/pull/121))
|
|
90
|
+
- Add support for `WriteBatch.approximate_size()`.
|
|
91
|
+
([pr #121](https://github.com/wbolster/plyvel/pull/121))
|
|
92
|
+
|
|
93
|
+
## plyvel 1.3.0
|
|
94
|
+
|
|
95
|
+
Release date: 2020-10-10
|
|
96
|
+
|
|
97
|
+
- Use manylinux2010 instead of manylinux1 to build wheels.
|
|
98
|
+
([pr #103](https://github.com/wbolster/plyvel/pull/103))
|
|
99
|
+
- Add Python 3.9 support.
|
|
100
|
+
- Drop Python 3.5 support.
|
|
101
|
+
- Completely drop Python 2 support.
|
|
102
|
+
|
|
103
|
+
## plyvel 1.2.0
|
|
104
|
+
|
|
105
|
+
Release date: 2020-01-22
|
|
106
|
+
|
|
107
|
+
- Add Python 3.8 support.
|
|
108
|
+
([pr #109](https://github.com/wbolster/plyvel/pull/109))
|
|
109
|
+
- Drop Python 3.4 support.
|
|
110
|
+
([pr #109](https://github.com/wbolster/plyvel/pull/109))
|
|
111
|
+
- Build Linux wheels against Snappy 1.1.8, LevelDB 1.22, and produce Python
|
|
112
|
+
3.8 wheels.
|
|
113
|
+
([issue #108](https://github.com/wbolster/plyvel/issues/108),
|
|
114
|
+
[pr #111](https://github.com/wbolster/plyvel/pull/111))
|
|
115
|
+
- Improve compilation flags for Darwin (OSX) builds.
|
|
116
|
+
([pr #107](https://github.com/wbolster/plyvel/pull/107))
|
|
117
|
+
|
|
118
|
+
## plyvel 1.1.0
|
|
119
|
+
|
|
120
|
+
Release date: 2019-05-02
|
|
121
|
+
|
|
122
|
+
- Expose `DB.name` attribute to Python code.
|
|
123
|
+
([pr #90](https://github.com/wbolster/plyvel/pull/90))
|
|
124
|
+
- Fix building sources on OSX.
|
|
125
|
+
([issue #95](https://github.com/wbolster/plyvel/issues/95),
|
|
126
|
+
[pr #97](https://github.com/wbolster/plyvel/pull/97))
|
|
127
|
+
- Build Linux wheels against LevelDB 1.21.
|
|
128
|
+
|
|
129
|
+
## plyvel 1.0.5
|
|
130
|
+
|
|
131
|
+
Release date: 2018-07-17
|
|
132
|
+
|
|
133
|
+
- Rebuild wheels: build against Snappy 1.1.7, and produce Python 3.7 wheels.
|
|
134
|
+
([issue #78](https://github.com/wbolster/plyvel/issues/78),
|
|
135
|
+
[pr #79](https://github.com/wbolster/plyvel/pull/79))
|
|
136
|
+
|
|
137
|
+
## plyvel 1.0.4
|
|
138
|
+
|
|
139
|
+
Release date: 2018-01-17
|
|
140
|
+
|
|
141
|
+
- Build Python wheels with Snappy compression support.
|
|
142
|
+
([issue #68](https://github.com/wbolster/plyvel/issues/68))
|
|
143
|
+
|
|
144
|
+
## plyvel 1.0.3
|
|
145
|
+
|
|
146
|
+
Release date: 2018-01-16
|
|
147
|
+
|
|
148
|
+
- Fix building sources on OSX.
|
|
149
|
+
([issue #66](https://github.com/wbolster/plyvel/issues/66),
|
|
150
|
+
[pr #67](https://github.com/wbolster/plyvel/pull/67))
|
|
151
|
+
|
|
152
|
+
## plyvel 1.0.2
|
|
153
|
+
|
|
154
|
+
Release date: 2018-01-12
|
|
155
|
+
|
|
156
|
+
- Correctly build wide unicode Python 2.7 wheels (cp27-cp27mu, UCS4).
|
|
157
|
+
([issue #65](https://github.com/wbolster/plyvel/issues/65))
|
|
158
|
+
|
|
159
|
+
## plyvel 1.0.1
|
|
160
|
+
|
|
161
|
+
Release date: 2018-01-05
|
|
162
|
+
|
|
163
|
+
- Provide binary packages (manylinux1 wheels) for Linux. These wheel packages
|
|
164
|
+
have the LevelDB library embedded, making installation easier since they do
|
|
165
|
+
not depend on a recent LevelDB version being installed system-wide.
|
|
166
|
+
([pr #64](https://github.com/wbolster/plyvel/pull/64),
|
|
167
|
+
[issue #62](https://github.com/wbolster/plyvel/issues/62),
|
|
168
|
+
[issue #63](https://github.com/wbolster/plyvel/issues/63))
|
|
169
|
+
|
|
170
|
+
## plyvel 1.0.0
|
|
171
|
+
|
|
172
|
+
Release date: 2018-01-03
|
|
173
|
+
|
|
174
|
+
- First 1.x release. Switched to semantic versioning.
|
|
175
|
+
- Drop support for older Python versions. Minimum versions are now Python 3.4+.
|
|
176
|
+
- The minimum LevelDB version is now 1.20.
|
|
177
|
+
([pr #61](https://github.com/wbolster/plyvel/pull/61))
|
|
178
|
+
- The various `.put()` methods now accept any type implementing Python's buffer
|
|
179
|
+
protocol (`bytes`, `bytearray`, `memoryview`). Note: keys must still be
|
|
180
|
+
`bytes`.
|
|
181
|
+
([issue #52](https://github.com/wbolster/plyvel/issues/52))
|
|
182
|
+
|
|
183
|
+
## plyvel 0.9
|
|
184
|
+
|
|
185
|
+
Release date: 2014-08-27
|
|
186
|
+
|
|
187
|
+
- Ensure that the Python GIL is initialized when a custom comparator is used.
|
|
188
|
+
([issue #35](https://github.com/wbolster/plyvel/issues/35))
|
|
189
|
+
|
|
190
|
+
## plyvel 0.8
|
|
191
|
+
|
|
192
|
+
Release date: 2013-11-29
|
|
193
|
+
|
|
194
|
+
- Allow snapshots to be closed explicitly using `Snapshot.close()` or a `with`
|
|
195
|
+
block.
|
|
196
|
+
([issue #21](https://github.com/wbolster/plyvel/issues/21))
|
|
197
|
+
|
|
198
|
+
## plyvel 0.7
|
|
199
|
+
|
|
200
|
+
Release date: 2013-11-15
|
|
201
|
+
|
|
202
|
+
- New raw iterator API that mimics the LevelDB C++ interface. See
|
|
203
|
+
`DB.raw_iterator()` and `RawIterator`.
|
|
204
|
+
([issue #17](https://github.com/wbolster/plyvel/issues/17))
|
|
205
|
+
- Migrate to `pytest` and `tox` for testing.
|
|
206
|
+
([issue #24](https://github.com/wbolster/plyvel/issues/24))
|
|
207
|
+
- Performance improvements in iterator and write batch construction.
|
|
208
|
+
- The `fill_cache`, `verify_checksums`, and `sync` arguments are now correctly
|
|
209
|
+
taken into account everywhere.
|
|
210
|
+
|
|
211
|
+
## plyvel 0.6
|
|
212
|
+
|
|
213
|
+
Release date: 2013-10-18
|
|
214
|
+
|
|
215
|
+
- Allow iterators to be closed explicitly using `Iterator.close()` or a `with`
|
|
216
|
+
block.
|
|
217
|
+
([issue #19](https://github.com/wbolster/plyvel/issues/19))
|
|
218
|
+
- Add useful `__repr__()` for `DB` and `PrefixedDB` instances.
|
|
219
|
+
([issue #16](https://github.com/wbolster/plyvel/issues/16))
|
|
220
|
+
|
|
221
|
+
## plyvel 0.5
|
|
222
|
+
|
|
223
|
+
Release date: 2013-09-17
|
|
224
|
+
|
|
225
|
+
- Fix `Iterator.seek()` for `PrefixedDB` iterators.
|
|
226
|
+
([issue #15](https://github.com/wbolster/plyvel/issues/15))
|
|
227
|
+
- Make some argument type checking a bit stricter.
|
|
228
|
+
- Support LRU caches larger than 2 GB.
|
|
229
|
+
|
|
230
|
+
## plyvel 0.4
|
|
231
|
+
|
|
232
|
+
Release date: 2013-06-17
|
|
233
|
+
|
|
234
|
+
- Add optional `default` argument for all `.get()` methods.
|
|
235
|
+
([issue #11](https://github.com/wbolster/plyvel/issues/11))
|
|
236
|
+
|
|
237
|
+
## plyvel 0.3
|
|
238
|
+
|
|
239
|
+
Release date: 2013-06-03
|
|
240
|
+
|
|
241
|
+
- Fix iterator behaviour for reverse iterators using a prefix.
|
|
242
|
+
([issue #9](https://github.com/wbolster/plyvel/issues/9))
|
|
243
|
+
|
|
244
|
+
## plyvel 0.2
|
|
245
|
+
|
|
246
|
+
Release date: 2013-03-15
|
|
247
|
+
|
|
248
|
+
- Fix iterator behaviour for iterators using non-existing start or stop keys.
|
|
249
|
+
([issue #4](https://github.com/wbolster/plyvel/issues/4))
|
|
250
|
+
|
|
251
|
+
## plyvel 0.1
|
|
252
|
+
|
|
253
|
+
Release date: 2012-11-26
|
|
254
|
+
|
|
255
|
+
- Initial release.
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2012-2017, Wouter Bolsterlee
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
|
8
|
+
|
|
9
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
10
|
+
list of conditions and the following disclaimer.
|
|
11
|
+
|
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
and/or other materials provided with the distribution.
|
|
15
|
+
|
|
16
|
+
3. Neither the name of the author nor the names of its contributors may be
|
|
17
|
+
used to endorse or promote products derived from this software without
|
|
18
|
+
specific prior written permission.
|
|
19
|
+
|
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
21
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
22
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
23
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
24
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
25
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
26
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
27
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
28
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
29
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
MIT License
|
|
34
|
+
|
|
35
|
+
Modifications made since commit e10f4c329aabe4d9e2b596ef0727a018fdc37db7
|
|
36
|
+
|
|
37
|
+
Copyright (c) 2026, Modding Forge
|
|
38
|
+
|
|
39
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
40
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
41
|
+
in the Software without restriction, including without limitation the rights
|
|
42
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
43
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
44
|
+
furnished to do so, subject to the following conditions:
|
|
45
|
+
|
|
46
|
+
The above copyright notice and this permission notice shall be included in all
|
|
47
|
+
copies or substantial portions of the Software.
|
|
48
|
+
|
|
49
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
50
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
51
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
52
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
53
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
54
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
55
|
+
SOFTWARE.
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
.PHONY: all cython ext doc clean test docker-build-env release
|
|
2
|
+
|
|
3
|
+
all: cython ext
|
|
4
|
+
|
|
5
|
+
cython:
|
|
6
|
+
cython --version
|
|
7
|
+
cython --cplus --fast-fail --annotate plyvel_next/_plyvel.pyx
|
|
8
|
+
|
|
9
|
+
ext: cython
|
|
10
|
+
uv run python setup.py build_ext --inplace --force
|
|
11
|
+
|
|
12
|
+
doc:
|
|
13
|
+
uv run sphinx-build -W -b html doc doc/build/html
|
|
14
|
+
@echo
|
|
15
|
+
@echo Generated documentation: "file://"$$(readlink -f doc/build/html/index.html)
|
|
16
|
+
@echo
|
|
17
|
+
|
|
18
|
+
clean:
|
|
19
|
+
$(RM) plyvel_next/_plyvel.cpp plyvel_next/_plyvel*.so
|
|
20
|
+
$(RM) -r build/ testdb/
|
|
21
|
+
$(RM) -r doc/build/
|
|
22
|
+
$(RM) -r plyvel_next.egg-info/
|
|
23
|
+
find . -name '*.py[co]' -delete
|
|
24
|
+
find . -name __pycache__ -delete
|
|
25
|
+
|
|
26
|
+
test: ext
|
|
27
|
+
uv run python -m pytest
|
|
28
|
+
|
|
29
|
+
docker-build-env:
|
|
30
|
+
docker build -t plyvel-build .
|
|
31
|
+
|
|
32
|
+
release: docker-build-env
|
|
33
|
+
CIBW_BUILD='cp3*-manylinux_x86_64' \
|
|
34
|
+
CIBW_SKIP='cp36-manylinux_x86_64' \
|
|
35
|
+
CIBW_MANYLINUX_X86_64_IMAGE=plyvel-build \
|
|
36
|
+
CIBW_BEFORE_BUILD=scripts/cibuildwheel-before-build.sh \
|
|
37
|
+
CIBW_PLATFORM=linux \
|
|
38
|
+
cibuildwheel --output-dir dist
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: plyvel-next
|
|
3
|
+
Version: 2.1.0
|
|
4
|
+
Summary: A fast and feature-rich Python interface to LevelDB
|
|
5
|
+
Author: Wouter Bolsterlee
|
|
6
|
+
Maintainer-email: Modding Forge <info@moddingforge.com>
|
|
7
|
+
License: BSD-3-Clause AND MIT
|
|
8
|
+
Project-URL: Homepage, https://moddingforge.com
|
|
9
|
+
Project-URL: Repository, https://github.com/Modding-Forge/plyvel-next
|
|
10
|
+
Project-URL: Changelog, https://github.com/Modding-Forge/plyvel-next/blob/master/CHANGELOG.md
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Information Technology
|
|
14
|
+
Classifier: Intended Audience :: Science/Research
|
|
15
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
+
Classifier: Operating System :: POSIX
|
|
18
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
19
|
+
Classifier: Operating System :: MacOS
|
|
20
|
+
Classifier: Programming Language :: C++
|
|
21
|
+
Classifier: Programming Language :: Cython
|
|
22
|
+
Classifier: Programming Language :: Python
|
|
23
|
+
Classifier: Programming Language :: Python :: 3
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
27
|
+
Classifier: Topic :: Database
|
|
28
|
+
Classifier: Topic :: Database :: Database Engines/Servers
|
|
29
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
30
|
+
Requires-Python: <3.15,>=3.12
|
|
31
|
+
Description-Content-Type: text/markdown
|
|
32
|
+
License-File: LICENSE
|
|
33
|
+
Provides-Extra: dev
|
|
34
|
+
Requires-Dist: cibuildwheel; extra == "dev"
|
|
35
|
+
Requires-Dist: Cython>=3.0; extra == "dev"
|
|
36
|
+
Requires-Dist: sphinx; extra == "dev"
|
|
37
|
+
Requires-Dist: tox; extra == "dev"
|
|
38
|
+
Requires-Dist: pytest>=3.6; extra == "dev"
|
|
39
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
40
|
+
Requires-Dist: setuptools; extra == "dev"
|
|
41
|
+
Provides-Extra: test
|
|
42
|
+
Requires-Dist: pytest>=3.6; extra == "test"
|
|
43
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
44
|
+
Requires-Dist: setuptools; extra == "test"
|
|
45
|
+
Dynamic: license-file
|
|
46
|
+
|
|
47
|
+
# plyvel-next
|
|
48
|
+
|
|
49
|
+
**plyvel-next** is a fast and feature-rich Python interface to [LevelDB](https://github.com/google/leveldb).
|
|
50
|
+
|
|
51
|
+
This project is a fork of [plyvel-ci](https://github.com/liviaerxin/plyvel), which itself is based on the original [plyvel](https://github.com/wbolster/plyvel) by Wouter Bolsterlee. The goal of this fork is to support newer Python versions and publish updated wheels.
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
## Installation
|
|
56
|
+
|
|
57
|
+
```shell
|
|
58
|
+
uv add plyvel-next
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
or
|
|
62
|
+
|
|
63
|
+
```shell
|
|
64
|
+
pip install plyvel-next
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## Usage
|
|
70
|
+
|
|
71
|
+
```python
|
|
72
|
+
import plyvel_next as plyvel
|
|
73
|
+
|
|
74
|
+
db = plyvel.DB("/tmp/testdb/", create_if_missing=True)
|
|
75
|
+
db.put(b"key", b"value")
|
|
76
|
+
print(db.get(b"key")) # b'value'
|
|
77
|
+
db.close()
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## Platform Support
|
|
83
|
+
|
|
84
|
+
| Platform | Architecture | Python 3.12 | Python 3.13 | Python 3.14 |
|
|
85
|
+
| --------------------- | ------------------------ | ----------- | ----------- | ----------- |
|
|
86
|
+
| Linux (manylinux2014) | x86_64 | yes | yes | yes |
|
|
87
|
+
| Linux (manylinux2014) | aarch64 | yes | yes | yes |
|
|
88
|
+
| macOS | x86_64 (Intel) | yes | yes | yes |
|
|
89
|
+
| macOS | universal2 (ARM + Intel) | yes | yes | yes |
|
|
90
|
+
| Windows | x86 | yes | yes | yes |
|
|
91
|
+
| Windows | x86_64 | yes | yes | yes |
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
## Changelog
|
|
96
|
+
|
|
97
|
+
See [CHANGELOG.md](CHANGELOG.md) for the full history.
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
## License
|
|
102
|
+
|
|
103
|
+
Dual licensed: See [LICENSE](LICENSE).
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
## About Modding Forge
|
|
108
|
+
|
|
109
|
+
**plyvel-next** was made for the Python tooling powering [Modding Forge](https://moddingforge.com) - a community dedicated to Skyrim modding. If you enjoy modding or want to connect with other modders, come say hi!
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# plyvel-next
|
|
2
|
+
|
|
3
|
+
**plyvel-next** is a fast and feature-rich Python interface to [LevelDB](https://github.com/google/leveldb).
|
|
4
|
+
|
|
5
|
+
This project is a fork of [plyvel-ci](https://github.com/liviaerxin/plyvel), which itself is based on the original [plyvel](https://github.com/wbolster/plyvel) by Wouter Bolsterlee. The goal of this fork is to support newer Python versions and publish updated wheels.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```shell
|
|
12
|
+
uv add plyvel-next
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
or
|
|
16
|
+
|
|
17
|
+
```shell
|
|
18
|
+
pip install plyvel-next
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```python
|
|
26
|
+
import plyvel_next as plyvel
|
|
27
|
+
|
|
28
|
+
db = plyvel.DB("/tmp/testdb/", create_if_missing=True)
|
|
29
|
+
db.put(b"key", b"value")
|
|
30
|
+
print(db.get(b"key")) # b'value'
|
|
31
|
+
db.close()
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Platform Support
|
|
37
|
+
|
|
38
|
+
| Platform | Architecture | Python 3.12 | Python 3.13 | Python 3.14 |
|
|
39
|
+
| --------------------- | ------------------------ | ----------- | ----------- | ----------- |
|
|
40
|
+
| Linux (manylinux2014) | x86_64 | yes | yes | yes |
|
|
41
|
+
| Linux (manylinux2014) | aarch64 | yes | yes | yes |
|
|
42
|
+
| macOS | x86_64 (Intel) | yes | yes | yes |
|
|
43
|
+
| macOS | universal2 (ARM + Intel) | yes | yes | yes |
|
|
44
|
+
| Windows | x86 | yes | yes | yes |
|
|
45
|
+
| Windows | x86_64 | yes | yes | yes |
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## Changelog
|
|
50
|
+
|
|
51
|
+
See [CHANGELOG.md](CHANGELOG.md) for the full history.
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
## License
|
|
56
|
+
|
|
57
|
+
Dual licensed: See [LICENSE](LICENSE).
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## About Modding Forge
|
|
62
|
+
|
|
63
|
+
**plyvel-next** was made for the Python tooling powering [Modding Forge](https://moddingforge.com) - a community dedicated to Skyrim modding. If you enjoy modding or want to connect with other modders, come say hi!
|