zlmdb 25.10.1__cp312-cp312-win_amd64.whl
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.
Potentially problematic release.
This version of zlmdb might be problematic. Click here for more details.
- flatbuffers/__init__.py +19 -0
- flatbuffers/_version.py +17 -0
- flatbuffers/builder.py +776 -0
- flatbuffers/compat.py +86 -0
- flatbuffers/encode.py +42 -0
- flatbuffers/flexbuffers.py +1527 -0
- flatbuffers/number_types.py +181 -0
- flatbuffers/packer.py +42 -0
- flatbuffers/reflection/AdvancedFeatures.py +10 -0
- flatbuffers/reflection/BaseType.py +24 -0
- flatbuffers/reflection/Enum.py +169 -0
- flatbuffers/reflection/EnumVal.py +96 -0
- flatbuffers/reflection/Field.py +208 -0
- flatbuffers/reflection/KeyValue.py +56 -0
- flatbuffers/reflection/Object.py +175 -0
- flatbuffers/reflection/RPCCall.py +131 -0
- flatbuffers/reflection/Schema.py +206 -0
- flatbuffers/reflection/SchemaFile.py +77 -0
- flatbuffers/reflection/Service.py +145 -0
- flatbuffers/reflection/Type.py +98 -0
- flatbuffers/reflection/__init__.py +0 -0
- flatbuffers/table.py +129 -0
- flatbuffers/util.py +43 -0
- zlmdb/__init__.py +312 -0
- zlmdb/_database.py +990 -0
- zlmdb/_errors.py +31 -0
- zlmdb/_meta.py +27 -0
- zlmdb/_pmap.py +1667 -0
- zlmdb/_schema.py +137 -0
- zlmdb/_transaction.py +181 -0
- zlmdb/_types.py +1596 -0
- zlmdb/_version.py +27 -0
- zlmdb/cli.py +41 -0
- zlmdb/flatbuffers/__init__.py +5 -0
- zlmdb/flatbuffers/reflection/AdvancedFeatures.py +10 -0
- zlmdb/flatbuffers/reflection/BaseType.py +25 -0
- zlmdb/flatbuffers/reflection/Enum.py +252 -0
- zlmdb/flatbuffers/reflection/EnumVal.py +144 -0
- zlmdb/flatbuffers/reflection/Field.py +325 -0
- zlmdb/flatbuffers/reflection/KeyValue.py +84 -0
- zlmdb/flatbuffers/reflection/Object.py +260 -0
- zlmdb/flatbuffers/reflection/RPCCall.py +195 -0
- zlmdb/flatbuffers/reflection/Schema.py +301 -0
- zlmdb/flatbuffers/reflection/SchemaFile.py +112 -0
- zlmdb/flatbuffers/reflection/Service.py +213 -0
- zlmdb/flatbuffers/reflection/Type.py +148 -0
- zlmdb/flatbuffers/reflection/__init__.py +0 -0
- zlmdb/flatbuffers/reflection.fbs +152 -0
- zlmdb/lmdb/__init__.py +37 -0
- zlmdb/lmdb/__main__.py +25 -0
- zlmdb/lmdb/_config.py +10 -0
- zlmdb/lmdb/cffi.py +2606 -0
- zlmdb/lmdb/tool.py +670 -0
- zlmdb/tests/lmdb/__init__.py +0 -0
- zlmdb/tests/lmdb/address_book.py +287 -0
- zlmdb/tests/lmdb/crash_test.py +339 -0
- zlmdb/tests/lmdb/cursor_test.py +333 -0
- zlmdb/tests/lmdb/env_test.py +919 -0
- zlmdb/tests/lmdb/getmulti_test.py +92 -0
- zlmdb/tests/lmdb/iteration_test.py +258 -0
- zlmdb/tests/lmdb/package_test.py +70 -0
- zlmdb/tests/lmdb/test_lmdb.py +188 -0
- zlmdb/tests/lmdb/testlib.py +185 -0
- zlmdb/tests/lmdb/tool_test.py +60 -0
- zlmdb/tests/lmdb/txn_test.py +575 -0
- zlmdb/tests/orm/MNodeLog.py +853 -0
- zlmdb/tests/orm/__init__.py +0 -0
- zlmdb/tests/orm/_schema_fbs.py +215 -0
- zlmdb/tests/orm/_schema_mnode_log.py +1201 -0
- zlmdb/tests/orm/_schema_py2.py +250 -0
- zlmdb/tests/orm/_schema_py3.py +307 -0
- zlmdb/tests/orm/_test_flatbuffers.py +144 -0
- zlmdb/tests/orm/_test_serialization.py +144 -0
- zlmdb/tests/orm/test_basic.py +217 -0
- zlmdb/tests/orm/test_etcd.py +275 -0
- zlmdb/tests/orm/test_pmap_indexes.py +466 -0
- zlmdb/tests/orm/test_pmap_types.py +90 -0
- zlmdb/tests/orm/test_pmaps.py +295 -0
- zlmdb/tests/orm/test_select.py +619 -0
- zlmdb-25.10.1.dist-info/METADATA +264 -0
- zlmdb-25.10.1.dist-info/RECORD +86 -0
- zlmdb-25.10.1.dist-info/WHEEL +5 -0
- zlmdb-25.10.1.dist-info/entry_points.txt +2 -0
- zlmdb-25.10.1.dist-info/licenses/LICENSE +137 -0
- zlmdb-25.10.1.dist-info/licenses/NOTICE +41 -0
- zlmdb-25.10.1.dist-info/top_level.txt +2 -0
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: zlmdb
|
|
3
|
+
Version: 25.10.1
|
|
4
|
+
Summary: Object-relational zero-copy in-memory database layer for LMDB
|
|
5
|
+
Author-email: typedef int GmbH <contact@typedefint.eu>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/crossbario/zlmdb
|
|
8
|
+
Project-URL: Documentation, https://zlmdb.readthedocs.io
|
|
9
|
+
Project-URL: Repository, https://github.com/crossbario/zlmdb
|
|
10
|
+
Project-URL: Changelog, https://github.com/crossbario/zlmdb/blob/master/docs/changelog.rst
|
|
11
|
+
Keywords: zlmdb,lmdb,database,key-value,embedded,zero-copy,flatbuffers,cbor,wamp,crossbar
|
|
12
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Natural Language :: English
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
24
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
25
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
26
|
+
Classifier: Topic :: Database
|
|
27
|
+
Classifier: Topic :: Database :: Database Engines/Servers
|
|
28
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
29
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
30
|
+
Requires-Python: >=3.9
|
|
31
|
+
Description-Content-Type: text/x-rst
|
|
32
|
+
License-File: LICENSE
|
|
33
|
+
License-File: NOTICE
|
|
34
|
+
Requires-Dist: cffi>=1.15.1
|
|
35
|
+
Requires-Dist: setuptools>=40.8.0
|
|
36
|
+
Requires-Dist: cbor2>=5.4.6
|
|
37
|
+
Requires-Dist: click>=8.1.3
|
|
38
|
+
Requires-Dist: flatbuffers>=23.1.4
|
|
39
|
+
Requires-Dist: pynacl>=1.5.0
|
|
40
|
+
Requires-Dist: pyyaml>=6.0
|
|
41
|
+
Requires-Dist: txaio>=23.1.1
|
|
42
|
+
Requires-Dist: numpy>=1.24.1
|
|
43
|
+
Provides-Extra: dev
|
|
44
|
+
Requires-Dist: build>=1.0.0; extra == "dev"
|
|
45
|
+
Requires-Dist: wheel>=0.36.2; extra == "dev"
|
|
46
|
+
Requires-Dist: pytest>=3.4.2; extra == "dev"
|
|
47
|
+
Requires-Dist: pytest-runner>=2.11.1; extra == "dev"
|
|
48
|
+
Requires-Dist: twisted>=20.3.0; extra == "dev"
|
|
49
|
+
Requires-Dist: autobahn[twisted]>=25.10.2; extra == "dev"
|
|
50
|
+
Requires-Dist: sphinx>=1.7.1; extra == "dev"
|
|
51
|
+
Requires-Dist: sphinx-rtd-theme>=0.1.9; extra == "dev"
|
|
52
|
+
Requires-Dist: sphinxcontrib-spelling>=7.0.0; extra == "dev"
|
|
53
|
+
Requires-Dist: sphinxcontrib-images>=0.9.0; extra == "dev"
|
|
54
|
+
Requires-Dist: sphinx-autoapi>=2.0.0; extra == "dev"
|
|
55
|
+
Requires-Dist: pyenchant>=3.0.0; extra == "dev"
|
|
56
|
+
Requires-Dist: twine>=3.3.0; extra == "dev"
|
|
57
|
+
Requires-Dist: auditwheel>=5.0.0; extra == "dev"
|
|
58
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
59
|
+
Requires-Dist: mypy>=1.0.0; extra == "dev"
|
|
60
|
+
Requires-Dist: types-PyYAML>=6.0.0; extra == "dev"
|
|
61
|
+
Requires-Dist: types-cffi>=1.0.0; extra == "dev"
|
|
62
|
+
Requires-Dist: coverage>=5.0.0; extra == "dev"
|
|
63
|
+
Dynamic: license-file
|
|
64
|
+
|
|
65
|
+
Introduction to zLMDB
|
|
66
|
+
=====================
|
|
67
|
+
|
|
68
|
+
.. image:: https://img.shields.io/pypi/v/zlmdb.svg
|
|
69
|
+
:target: https://pypi.python.org/pypi/zlmdb
|
|
70
|
+
:alt: PyPI
|
|
71
|
+
|
|
72
|
+
.. image:: https://github.com/crossbario/zlmdb/workflows/main/badge.svg
|
|
73
|
+
:target: https://github.com/crossbario/zlmdb/actions?query=workflow%3Amain
|
|
74
|
+
:alt: Build
|
|
75
|
+
|
|
76
|
+
.. image:: https://readthedocs.org/projects/zlmdb/badge/?version=latest
|
|
77
|
+
:target: https://zlmdb.readthedocs.io/en/latest/?badge=latest
|
|
78
|
+
:alt: Documentation
|
|
79
|
+
|
|
80
|
+
.. image:: https://github.com/crossbario/zlmdb/workflows/deploy/badge.svg
|
|
81
|
+
:target: https://github.com/crossbario/zlmdb/actions?query=workflow%3Adeploy
|
|
82
|
+
:alt: Deploy
|
|
83
|
+
|
|
84
|
+
zlmdb is a complete LMDB solution for Python providing **two APIs in one package**:
|
|
85
|
+
|
|
86
|
+
1. **Low-level py-lmdb compatible API** - Direct LMDB access with full control
|
|
87
|
+
2. **High-level object-relational API** - Type-safe ORM with automatic serialization
|
|
88
|
+
|
|
89
|
+
Key Features
|
|
90
|
+
------------
|
|
91
|
+
|
|
92
|
+
**Low-level LMDB API (py-lmdb compatible):**
|
|
93
|
+
|
|
94
|
+
* Drop-in replacement for py-lmdb
|
|
95
|
+
* Direct access to LMDB transactions, cursors, and databases
|
|
96
|
+
* Full LMDB feature set (subdatabases, duplicate keys, etc.)
|
|
97
|
+
* Works with all py-lmdb examples and code
|
|
98
|
+
|
|
99
|
+
**High-level Object-Relational API:**
|
|
100
|
+
|
|
101
|
+
* Type-safe persistent objects with automatic serialization
|
|
102
|
+
* Multiple serializers (JSON, CBOR, Pickle, Flatbuffers)
|
|
103
|
+
* Export/import from/to Apache Arrow
|
|
104
|
+
* Native Numpy arrays and Pandas data frames support
|
|
105
|
+
* Automatic indexes and relationships
|
|
106
|
+
* Schema management
|
|
107
|
+
|
|
108
|
+
**Implementation:**
|
|
109
|
+
|
|
110
|
+
* CFFI-only (no CPyExt) for maximum compatibility
|
|
111
|
+
* Works on both CPython and PyPy
|
|
112
|
+
* Native binary wheels for x86-64 and ARM64
|
|
113
|
+
* Vendored LMDB (no external dependencies)
|
|
114
|
+
* High-performance with zero-copy operations
|
|
115
|
+
* Free software (MIT license)
|
|
116
|
+
|
|
117
|
+
Usage Examples
|
|
118
|
+
--------------
|
|
119
|
+
|
|
120
|
+
**Low-level API (py-lmdb compatible):**
|
|
121
|
+
|
|
122
|
+
.. code-block:: python
|
|
123
|
+
|
|
124
|
+
import zlmdb.lmdb as lmdb
|
|
125
|
+
|
|
126
|
+
# Open database
|
|
127
|
+
env = lmdb.open('/tmp/mydb', max_dbs=10)
|
|
128
|
+
db = env.open_db(b'users')
|
|
129
|
+
|
|
130
|
+
# Write data
|
|
131
|
+
with env.begin(write=True) as txn:
|
|
132
|
+
txn.put(b'alice', b'alice@example.com', db=db)
|
|
133
|
+
txn.put(b'bob', b'bob@example.com', db=db)
|
|
134
|
+
|
|
135
|
+
# Read data
|
|
136
|
+
with env.begin() as txn:
|
|
137
|
+
email = txn.get(b'alice', db=db)
|
|
138
|
+
print(email) # b'alice@example.com'
|
|
139
|
+
|
|
140
|
+
**High-level API (zlmdb ORM):**
|
|
141
|
+
|
|
142
|
+
.. code-block:: python
|
|
143
|
+
|
|
144
|
+
import zlmdb
|
|
145
|
+
|
|
146
|
+
# Define schema
|
|
147
|
+
class User(object):
|
|
148
|
+
def __init__(self, oid, name, email):
|
|
149
|
+
self.oid = oid
|
|
150
|
+
self.name = name
|
|
151
|
+
self.email = email
|
|
152
|
+
|
|
153
|
+
schema = zlmdb.Schema()
|
|
154
|
+
schema.users = zlmdb.MapUuidCbor(1, marshal=lambda obj: obj.__dict__)
|
|
155
|
+
|
|
156
|
+
# Use it
|
|
157
|
+
db = zlmdb.Database('/tmp/mydb', schema=schema)
|
|
158
|
+
with db.begin(write=True) as txn:
|
|
159
|
+
user = User(uuid.uuid4(), 'Alice', 'alice@example.com')
|
|
160
|
+
schema.users[txn, user.oid] = user
|
|
161
|
+
|
|
162
|
+
Development Workflow
|
|
163
|
+
====================
|
|
164
|
+
|
|
165
|
+
This project uses `just <https://github.com/casey/just>`_ as a modern task runner and `uv <https://github.com/astral-sh/uv>`_ for fast Python package management.
|
|
166
|
+
|
|
167
|
+
Complete Recipe List
|
|
168
|
+
--------------------
|
|
169
|
+
|
|
170
|
+
**Virtual Environment Management:**
|
|
171
|
+
|
|
172
|
+
* [x] ``just create [venv]`` - Create Python venv (auto-detects system Python if no arg)
|
|
173
|
+
* [x] ``just create-all`` - Create all venvs (cpy314, cpy313, cpy312, cpy311, pypy311)
|
|
174
|
+
* [x] ``just version [venv]`` - Show Python version
|
|
175
|
+
* [x] ``just list-all`` - List all available Python runtimes
|
|
176
|
+
|
|
177
|
+
**Installation:**
|
|
178
|
+
|
|
179
|
+
* [x] ``just install [venv]`` - Install zlmdb (runtime deps only)
|
|
180
|
+
* [x] ``just install-dev [venv]`` - Install in editable mode
|
|
181
|
+
* [x] ``just install-tools [venv]`` - Install dev tools (pytest, sphinx, etc.)
|
|
182
|
+
* [x] ``just install-all`` - Install in all venvs
|
|
183
|
+
|
|
184
|
+
**Testing - LMDB:** 🧪
|
|
185
|
+
|
|
186
|
+
* [x] ``just test-examples-lmdb`` - Test all LMDB examples (in default venv)
|
|
187
|
+
* [x] ``just test-examples-lmdb-addressbook [venv]`` - Test example LMDB address book
|
|
188
|
+
* [x] ``just test-examples-lmdb-dirtybench [venv]`` - Test example LMDB dirtybench
|
|
189
|
+
* [x] ``just test-examples-lmdb-dirtybench-gdbm [venv]`` - Test example LMDB dirtybench-gdbm
|
|
190
|
+
* [x] ``just test-examples-lmdb-nastybench [venv]`` - Test example LMDB nastybench
|
|
191
|
+
* [x] ``just test-examples-lmdb-parabench [venv]`` - Test example LMDB parabench
|
|
192
|
+
|
|
193
|
+
**Testing - ORM:** 🧪
|
|
194
|
+
|
|
195
|
+
* [ ] ``just test [venv]`` - Run full test suite (both test directories)
|
|
196
|
+
* [ ] ``just test-quick [venv]`` - Quick pytest run (no tox)
|
|
197
|
+
* [x] ``just test-single [venv]`` - Run test_basic.py
|
|
198
|
+
* [x] ``just test-pmaps [venv]`` - Run pmap tests
|
|
199
|
+
* [x] ``just test-indexes [venv]`` - Run index tests
|
|
200
|
+
* [x] ``just test-select [venv]`` - Run select tests
|
|
201
|
+
* [ ] ``just test-zdb-etcd/df/dyn/fbs [venv]`` - Individual zdb tests
|
|
202
|
+
* [ ] ``just test-zdb [venv]`` - All zdb tests
|
|
203
|
+
* [ ] ``just test-all`` - Test in all venvs
|
|
204
|
+
* [ ] ``just test-tox`` - Run tox (py39-py313, flake8, coverage, mypy, yapf, sphinx)
|
|
205
|
+
* [ ] ``just test-tox-all`` - All tox environments
|
|
206
|
+
* [ ] ``just coverage [venv]`` - Generate HTML coverage report
|
|
207
|
+
|
|
208
|
+
**Code Quality:** ✨
|
|
209
|
+
|
|
210
|
+
* [x] ``just autoformat [venv]`` - Auto-format code with Ruff (modifies files!)
|
|
211
|
+
* [x] ``just check-format [venv]`` - Check formatting with Ruff (dry run)
|
|
212
|
+
* [x] ``just check-typing [venv]`` - Run static type checking with mypy
|
|
213
|
+
|
|
214
|
+
**Building:** 📦
|
|
215
|
+
|
|
216
|
+
* [x] ``just build [venv]`` - Build wheel
|
|
217
|
+
* [x] ``just build-sourcedist [venv]`` - Build sdist
|
|
218
|
+
* [x] ``just build-all`` - Build wheels for all venvs
|
|
219
|
+
* [!] ``just dist [venv]`` - Build both sdist and wheels
|
|
220
|
+
* [x] ``just verify-wheels [venv]`` - Verify all built wheels.
|
|
221
|
+
|
|
222
|
+
**Publishing:** 🚀
|
|
223
|
+
|
|
224
|
+
* [ ] ``just publish [venv]`` - Upload to PyPI with twine
|
|
225
|
+
|
|
226
|
+
**Documentation:** 📚
|
|
227
|
+
|
|
228
|
+
* [x] ``just docs [venv]`` - Build HTML docs with Sphinx
|
|
229
|
+
* [x] ``just docs-view [venv]`` - Build and open in browser
|
|
230
|
+
* [x] ``just docs-clean`` - Clean doc build artifacts
|
|
231
|
+
|
|
232
|
+
**Cleaning:** 🧹
|
|
233
|
+
|
|
234
|
+
* [x] ``just clean`` - Clean everything (alias for distclean)
|
|
235
|
+
* [x] ``just clean-build`` - Remove build/ dist/ \*.egg-info
|
|
236
|
+
* [x] ``just clean-pyc`` - Remove \*.pyc __pycache__
|
|
237
|
+
* [x] ``just clean-test`` - Remove .tox .coverage .pytest_cache
|
|
238
|
+
* [x] ``just distclean`` - Nuclear clean (removes venvs too!)
|
|
239
|
+
|
|
240
|
+
**Utilities:** 🔧
|
|
241
|
+
|
|
242
|
+
* [ ] ``just update-flatbuffers`` - Update from deps/ submodule
|
|
243
|
+
* [ ] ``just generate-flatbuffers-reflection`` - Generate reflection code
|
|
244
|
+
* [ ] ``just fix-copyright`` - Update copyright headers
|
|
245
|
+
* [ ] ``just setup-completion`` - Setup bash tab completion
|
|
246
|
+
|
|
247
|
+
Quick Start
|
|
248
|
+
-----------
|
|
249
|
+
|
|
250
|
+
.. code-block:: bash
|
|
251
|
+
|
|
252
|
+
# Install just and uv (if not already installed)
|
|
253
|
+
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash
|
|
254
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
255
|
+
|
|
256
|
+
# Create virtual environment and install in development mode
|
|
257
|
+
just create
|
|
258
|
+
just install-dev
|
|
259
|
+
|
|
260
|
+
# Run tests
|
|
261
|
+
just test
|
|
262
|
+
|
|
263
|
+
# Build wheel
|
|
264
|
+
just build
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
flatbuffers/__init__.py,sha256=4HeZkuU4kSpk9L-lYTrLHblQVN090xv9EZ9uxeQiAMM,770
|
|
2
|
+
flatbuffers/_version.py,sha256=RQiBf4uPzNwSxjCegI37O3DWwiWsKnLnx7JCmiK5Bqw,712
|
|
3
|
+
flatbuffers/builder.py,sha256=hh9RBC43AVRwgNQcCS1_MvI24nQKzXSTfFcmK70iNQQ,26813
|
|
4
|
+
flatbuffers/compat.py,sha256=FHcBfjCGz3ZcIttZ8JOjFq1f7HO-YpOavB7z_SQSSFE,2605
|
|
5
|
+
flatbuffers/encode.py,sha256=exgfxAJNR8TFjoFu2u4FDu-DAPLhCN0tr0BQWu7iRaw,1623
|
|
6
|
+
flatbuffers/flexbuffers.py,sha256=91MTetPNG-FDuKPFVo-RCuXMlZkKgzhpLEr5sEAsIhE,45554
|
|
7
|
+
flatbuffers/number_types.py,sha256=DVlXKCItvyXjfQydZxMC6NkswR516zkvQP42w6njnSk,4136
|
|
8
|
+
flatbuffers/packer.py,sha256=HLoQ42jpxi8FL_nG8Bo_MBzEXROrEtZAg2FX2dqScqo,1207
|
|
9
|
+
flatbuffers/table.py,sha256=r_jeo3KPnjN5JQM-K9Pi-1heZD1axJttl55AehFgc1c,4837
|
|
10
|
+
flatbuffers/util.py,sha256=K9CBmSYAlh0hB4XiGXPgurlQgUAAZLCUegBqHHVYrzI,1712
|
|
11
|
+
flatbuffers/reflection/AdvancedFeatures.py,sha256=c4pEIEoMk-U5liKEoGgpsAB27You1SYIg-wfxVfzhpM,332
|
|
12
|
+
flatbuffers/reflection/BaseType.py,sha256=RGJR4W4zARFueFFKkvqW2BC6exa-sdpqsBoMCgr7Dg8,420
|
|
13
|
+
flatbuffers/reflection/Enum.py,sha256=7Eac_Cd65oFfnViMSrajvAfmhetDsox0SUd3IPCxdbI,6724
|
|
14
|
+
flatbuffers/reflection/EnumVal.py,sha256=w5Rhys7Vecn5SElr-SU9tQxhPgQq_PGmpdtKsS9GUZU,3723
|
|
15
|
+
flatbuffers/reflection/Field.py,sha256=2biu-7GwoECuGfZd61Pc95MXgZoMSyS_Q3R9HcTEMYE,8375
|
|
16
|
+
flatbuffers/reflection/KeyValue.py,sha256=kUeuwnNLGVtWhh31YTwCOH0Ks1yTDdatTMRUXecB4yc,2004
|
|
17
|
+
flatbuffers/reflection/Object.py,sha256=gK29P6q2EExLtFd3tPn3q21C-yqHIauw2YNTcNMqtpM,7020
|
|
18
|
+
flatbuffers/reflection/RPCCall.py,sha256=zthZ79J7--pLsoHKSz7DmSgozUSya9153gEI9rV2SY4,5192
|
|
19
|
+
flatbuffers/reflection/Schema.py,sha256=Jzgmodd15vUMKQ4YCK9idsG-17aCR5ToQuh3v3uUSdU,8162
|
|
20
|
+
flatbuffers/reflection/SchemaFile.py,sha256=pRF2PwdWfIVmaOz3XgcW-sSnvm6FNF3dhjXnlv4XbA8,3124
|
|
21
|
+
flatbuffers/reflection/Service.py,sha256=z3qDkrz0SqF08QTKd33qjbvZTjPceMhhO_d54b3CnAs,5777
|
|
22
|
+
flatbuffers/reflection/Type.py,sha256=i9F0okv16RNUpZZptYqLNGaZ5jQ3HfINZ4V5g4UZQ4Y,3743
|
|
23
|
+
flatbuffers/reflection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
+
zlmdb/__init__.py,sha256=yst8122jUZDrMRVDI3Sk0LSC-AERjtAy0OZo6xzusno,9442
|
|
25
|
+
zlmdb/_database.py,sha256=9L-Z5I9ooMbT-hXxHEJeriHZv-rtZRSx7FNUQSf0g6g,32612
|
|
26
|
+
zlmdb/_errors.py,sha256=sjJmSYyIdcqp4b8e4Def6enLqql4y_PLYTcOKJD30Ag,1433
|
|
27
|
+
zlmdb/_meta.py,sha256=2t9NTFv7clnvEdtCrbe0yHC5Sy4YrS38fQ0qEfOtP9w,1326
|
|
28
|
+
zlmdb/_pmap.py,sha256=nLSgggfhImzvUoPebSK_GSd85nLuv2uzXWM_mKruW8g,53721
|
|
29
|
+
zlmdb/_schema.py,sha256=dn30MejNlNu6N55rU1YsXjfhqjLeNO57OXEWBgQauRk,3840
|
|
30
|
+
zlmdb/_transaction.py,sha256=p96jTPFmL9VnD49k8b5lvzYaTxkriRr-DVlaaCsotHc,4992
|
|
31
|
+
zlmdb/_types.py,sha256=RfVHiEyrz0XwJKeYZEXA3kBcpQxHDu3TEViyIpYsu6w,47694
|
|
32
|
+
zlmdb/_version.py,sha256=hY3LzgfQwI7wjZqkcNUms5nnw08_Sk5D0slZyUT5nMc,1332
|
|
33
|
+
zlmdb/cli.py,sha256=Qr1kgrBC8hJXPGvLhpoA6EmAruCnNCpjnWKuphvgKoI,1686
|
|
34
|
+
zlmdb/flatbuffers/__init__.py,sha256=1mnjaVTeoclMm0Q38bi8foBL4AzJ-bq8xvwzV5XbegU,274
|
|
35
|
+
zlmdb/flatbuffers/reflection.fbs,sha256=gZ1NqMRYpdGRLjS0IUZpk-F8R6Tg-EI0RNmK6_One9U,4362
|
|
36
|
+
zlmdb/flatbuffers/reflection/AdvancedFeatures.py,sha256=c4pEIEoMk-U5liKEoGgpsAB27You1SYIg-wfxVfzhpM,332
|
|
37
|
+
zlmdb/flatbuffers/reflection/BaseType.py,sha256=1EtGOCQF6-83Pa_R9CBQ6SD3jMQEMMGOnFMEYyaXuYY,422
|
|
38
|
+
zlmdb/flatbuffers/reflection/Enum.py,sha256=JQyVv6oSrAgsoMjqygXNgZLnVgYxqIH1HzZEqIv-dg8,7130
|
|
39
|
+
zlmdb/flatbuffers/reflection/EnumVal.py,sha256=1EYA5h3OtPcShjtKSyYrNhSOg4qmL404s0Rdh_wh62c,3944
|
|
40
|
+
zlmdb/flatbuffers/reflection/Field.py,sha256=FPXnjO8ve-j_SqXWkwafTNlIAXhQVzO8VsIyre_4jow,9018
|
|
41
|
+
zlmdb/flatbuffers/reflection/KeyValue.py,sha256=wUkrLVGS30Rns6nV2LGM2dTSKsK2qxrsAS3HjWWcTKI,2118
|
|
42
|
+
zlmdb/flatbuffers/reflection/Object.py,sha256=rgy8LhRKAgIcJkeadxG2zzMeB6iNIuaYPq9fI3mTseE,7403
|
|
43
|
+
zlmdb/flatbuffers/reflection/RPCCall.py,sha256=nckLdGby5_wE7ZwOlaokwDQNgnf9UEI5QtAf6EIUnA8,5511
|
|
44
|
+
zlmdb/flatbuffers/reflection/Schema.py,sha256=t5BoJuNQwyjs4LT2kU-U773Y0XLQFIPfT_w2f2FJLyk,8618
|
|
45
|
+
zlmdb/flatbuffers/reflection/SchemaFile.py,sha256=flP0p3R20pIRuGQaxNkDk0nNb8V4IagIdI1CeCF7C5k,3283
|
|
46
|
+
zlmdb/flatbuffers/reflection/Service.py,sha256=423ZlrT37v5rNV__ZHm-Ek2VZPHsLo-xUbs0QTCOlEc,6089
|
|
47
|
+
zlmdb/flatbuffers/reflection/Type.py,sha256=kr4HTewCOTktTYmpG5-m1M5uQoFp3AzU06NaT8xmaSk,3973
|
|
48
|
+
zlmdb/flatbuffers/reflection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
+
zlmdb/lmdb/__init__.py,sha256=H6mB2Gnhz5u1cO89oR_mFfKYDOgmZgH8z1KFEeeWa-Y,1198
|
|
50
|
+
zlmdb/lmdb/__main__.py,sha256=MKF-Bf12o-jAjANypNk6GyKcZqyB00uesLBU8AyYw74,930
|
|
51
|
+
zlmdb/lmdb/_config.py,sha256=9reyJ_rpUI1BmpBKV8ebVM_r60oiox5hGg0Q2igLMME,387
|
|
52
|
+
zlmdb/lmdb/cffi.py,sha256=o9TKqfa-aZNp3rnIU8X4LlobfsMyoXxrxYqnRdqyDTo,96298
|
|
53
|
+
zlmdb/lmdb/tool.py,sha256=ZBYBqbN8wRf_y88dk4EQMDBadNxXEWrTA0m6fBFN6Hg,20282
|
|
54
|
+
zlmdb/tests/lmdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
+
zlmdb/tests/lmdb/address_book.py,sha256=C5ItX82s30UEO3lpufcF1u5cH7yHj12qA-YQmPO-flc,8911
|
|
56
|
+
zlmdb/tests/lmdb/crash_test.py,sha256=vf5zonQwJfyDaGhFjdB0vEs0gBQnUh2GSzNnBdp2_bc,11130
|
|
57
|
+
zlmdb/tests/lmdb/cursor_test.py,sha256=pgqZKJbmvCIPq4z5L4G-3w1nAL1D5eRC8ByRV1bSzX4,11492
|
|
58
|
+
zlmdb/tests/lmdb/env_test.py,sha256=LiXfvOsZ3ABZ0b8BaMIpMo3oBTgDyYO67eAZOfig5oI,29087
|
|
59
|
+
zlmdb/tests/lmdb/getmulti_test.py,sha256=8WnCrtawZkGJQ2hT8r7A0kB4zShlpaxOkrYO4hJpwgw,3069
|
|
60
|
+
zlmdb/tests/lmdb/iteration_test.py,sha256=seUzlFVXG-WlHBitrulNbchRhuD9mr5ip7EvncJmjHY,9100
|
|
61
|
+
zlmdb/tests/lmdb/package_test.py,sha256=ZaDmyhDvH-Eeco5Yh6392sF76ZAjNll_Nqrinz-XtYg,2143
|
|
62
|
+
zlmdb/tests/lmdb/test_lmdb.py,sha256=Cs6v4FYcXVMnmj0-oAGKtsTjvc0AfPxHjjg_36zsw0o,5882
|
|
63
|
+
zlmdb/tests/lmdb/testlib.py,sha256=nYwG_7Vil1Z6uBwsB5Qa-re41L74shZzOzQXALO2lpk,4496
|
|
64
|
+
zlmdb/tests/lmdb/tool_test.py,sha256=44QXIj69xAQK3M0cfhRdLNLye6LNTTx2fMFEtmgGnxU,1720
|
|
65
|
+
zlmdb/tests/lmdb/txn_test.py,sha256=u0iQRQU6ilfK8IgOAoQpLtfRqEa1gjbUFoASCqtZz_w,18108
|
|
66
|
+
zlmdb/tests/orm/MNodeLog.py,sha256=lVpipbLYY2KKtOFlGnt35WyjFIxPthQ0WOIGaLJ69aQ,26310
|
|
67
|
+
zlmdb/tests/orm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
+
zlmdb/tests/orm/_schema_fbs.py,sha256=kRs06SXKd_-hdm7MfacUy7pL8xjlm9Zc8LvrwBtH1fg,6954
|
|
69
|
+
zlmdb/tests/orm/_schema_mnode_log.py,sha256=h6p1tlLlSCHeQmbYwnleXCgFGVmPNSopW5mTnNZyPOo,41874
|
|
70
|
+
zlmdb/tests/orm/_schema_py2.py,sha256=gJVOBES-0sysQRwfsn5f1sr1F9UQ73Dgg7Xjkl5ETOs,9486
|
|
71
|
+
zlmdb/tests/orm/_schema_py3.py,sha256=AErUbKc1C2QOZvnq6-RQ6gXCtnfZhYolQ4pT6fiDiic,10993
|
|
72
|
+
zlmdb/tests/orm/_test_flatbuffers.py,sha256=VmhECTUqdsX5A16-XR8CIlq0vJ6OlUiBzwA7ghfP388,5233
|
|
73
|
+
zlmdb/tests/orm/_test_serialization.py,sha256=KLNw6c5WUb3BzMnEqBIN4LbXlw3yfWMOudnRXN96Nko,4707
|
|
74
|
+
zlmdb/tests/orm/test_basic.py,sha256=sWDN5dZUZJLAVciwKCnYPzIhnvVMdpfldp1WHftt0Eo,7328
|
|
75
|
+
zlmdb/tests/orm/test_etcd.py,sha256=6w-TwSFFWeSdUJolZJfXTphQs97lY-4yuTqlowWZaJI,9225
|
|
76
|
+
zlmdb/tests/orm/test_pmap_indexes.py,sha256=bTM2GKOy3SNyUvhdub7tXldXXJ3_zZC42IigtuXZYBE,17532
|
|
77
|
+
zlmdb/tests/orm/test_pmap_types.py,sha256=lt-lsFus2UbvJeib2zWxEueWzkjxl-fIGKpt4Zow7NM,3210
|
|
78
|
+
zlmdb/tests/orm/test_pmaps.py,sha256=9ta8dXwNwkjTbSeuEi34tROKtVwTmGMfHWX2Y7knwTY,9922
|
|
79
|
+
zlmdb/tests/orm/test_select.py,sha256=d_OfhhycEz-TiZfCkeWx-qriheOo5De4rAZLwXALoLo,24800
|
|
80
|
+
zlmdb-25.10.1.dist-info/licenses/LICENSE,sha256=DUohaixs2N3box3bbkpfoTiBt4bfx_ZO9VQslUZl1cQ,6199
|
|
81
|
+
zlmdb-25.10.1.dist-info/licenses/NOTICE,sha256=hGgPYlPYR6FmSc1FiX2PHy0GwYFwJNu-UqLsJR3bo-o,1654
|
|
82
|
+
zlmdb-25.10.1.dist-info/METADATA,sha256=a6Hb7U2--SfI5hSPy-oc8CpelMiOgeo9iJCDxudtmyM,9885
|
|
83
|
+
zlmdb-25.10.1.dist-info/WHEEL,sha256=8UP9x9puWI0P1V_d7K2oMTBqfeLNm21CTzZ_Ptr0NXU,101
|
|
84
|
+
zlmdb-25.10.1.dist-info/entry_points.txt,sha256=b5ah-DMF0Tf29ul6g_QTi6i7QBjC7VVio83seCkhn-c,41
|
|
85
|
+
zlmdb-25.10.1.dist-info/top_level.txt,sha256=anFpN8FN54ctOWt2N7EaH_aCXKPNiiE0jpmF4zLTVV8,18
|
|
86
|
+
zlmdb-25.10.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c), Crossbar.io Technologies GmbH
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
===============================================================================
|
|
24
|
+
Third-Party Component Licenses
|
|
25
|
+
===============================================================================
|
|
26
|
+
|
|
27
|
+
zlmdb includes and distributes the following third-party components:
|
|
28
|
+
|
|
29
|
+
1. LMDB (Lightning Memory-Mapped Database)
|
|
30
|
+
2. py-lmdb (Python LMDB bindings)
|
|
31
|
+
3. Flatbuffers
|
|
32
|
+
|
|
33
|
+
These components are included via git submodules and/or vendored code and are
|
|
34
|
+
built into the zlmdb distribution. The licenses for these components are
|
|
35
|
+
reproduced below.
|
|
36
|
+
|
|
37
|
+
-------------------------------------------------------------------------------
|
|
38
|
+
LMDB License (OpenLDAP Public License)
|
|
39
|
+
-------------------------------------------------------------------------------
|
|
40
|
+
|
|
41
|
+
LMDB is Copyright (C) 2011-2024 Howard Chu, Symas Corp.
|
|
42
|
+
Source: https://git.openldap.org/openldap/openldap/-/tree/LMDB_0.9.33
|
|
43
|
+
|
|
44
|
+
The OpenLDAP Public License
|
|
45
|
+
Version 2.8, 17 August 2003
|
|
46
|
+
|
|
47
|
+
Redistribution and use of this software and associated documentation
|
|
48
|
+
("Software"), with or without modification, are permitted provided
|
|
49
|
+
that the following conditions are met:
|
|
50
|
+
|
|
51
|
+
1. Redistributions in source form must retain copyright statements
|
|
52
|
+
and notices,
|
|
53
|
+
|
|
54
|
+
2. Redistributions in binary form must reproduce applicable copyright
|
|
55
|
+
statements and notices, this list of conditions, and the following
|
|
56
|
+
disclaimer in the documentation and/or other materials provided
|
|
57
|
+
with the distribution, and
|
|
58
|
+
|
|
59
|
+
3. Redistributions must contain a verbatim copy of this document.
|
|
60
|
+
|
|
61
|
+
The OpenLDAP Foundation may revise this license from time to time.
|
|
62
|
+
Each revision is distinguished by a version number. You may use
|
|
63
|
+
this Software under terms of this license revision or under the
|
|
64
|
+
terms of any subsequent revision of the license.
|
|
65
|
+
|
|
66
|
+
THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS
|
|
67
|
+
CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
|
|
68
|
+
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
69
|
+
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
|
70
|
+
SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S)
|
|
71
|
+
OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
72
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
73
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
74
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
75
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
76
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
77
|
+
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
78
|
+
POSSIBILITY OF SUCH DAMAGE.
|
|
79
|
+
|
|
80
|
+
The names of the authors and copyright holders must not be used in
|
|
81
|
+
advertising or otherwise to promote the sale, use or other dealing
|
|
82
|
+
in this Software without specific, written prior permission. Title
|
|
83
|
+
to copyright in this Software shall at all times remain with copyright
|
|
84
|
+
holders.
|
|
85
|
+
|
|
86
|
+
OpenLDAP is a registered trademark of the OpenLDAP Foundation.
|
|
87
|
+
|
|
88
|
+
Copyright 1999-2003 The OpenLDAP Foundation, Redwood City,
|
|
89
|
+
California, USA. All Rights Reserved. Permission to copy and
|
|
90
|
+
distribute verbatim copies of this document is granted.
|
|
91
|
+
|
|
92
|
+
-------------------------------------------------------------------------------
|
|
93
|
+
py-lmdb License (OpenLDAP Public License)
|
|
94
|
+
-------------------------------------------------------------------------------
|
|
95
|
+
|
|
96
|
+
py-lmdb is Copyright 2013-2024 The py-lmdb authors, all rights reserved.
|
|
97
|
+
Original author: David Wilson
|
|
98
|
+
Current maintainer: Nic Watson
|
|
99
|
+
Source: https://github.com/jnwatson/py-lmdb
|
|
100
|
+
|
|
101
|
+
zlmdb includes vendored Python CFFI bindings and patches from py-lmdb,
|
|
102
|
+
which are licensed under the OpenLDAP Public License 2.8 (same as above).
|
|
103
|
+
|
|
104
|
+
Redistribution and use in source and binary forms, with or without
|
|
105
|
+
modification, are permitted only as authorized by the OpenLDAP
|
|
106
|
+
Public License.
|
|
107
|
+
|
|
108
|
+
A copy of this license is available above in the LMDB License section,
|
|
109
|
+
or alternatively at <http://www.OpenLDAP.org/license.html>.
|
|
110
|
+
|
|
111
|
+
OpenLDAP is a registered trademark of the OpenLDAP Foundation.
|
|
112
|
+
|
|
113
|
+
Individual files and/or contributed packages may be copyright by
|
|
114
|
+
other parties and/or subject to additional restrictions.
|
|
115
|
+
|
|
116
|
+
-------------------------------------------------------------------------------
|
|
117
|
+
Flatbuffers License (Apache License 2.0)
|
|
118
|
+
-------------------------------------------------------------------------------
|
|
119
|
+
|
|
120
|
+
Flatbuffers is Copyright 2014 Google Inc.
|
|
121
|
+
Source: https://github.com/google/flatbuffers (v25.9.23)
|
|
122
|
+
|
|
123
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
124
|
+
you may not use this file except in compliance with the License.
|
|
125
|
+
You may obtain a copy of the License at
|
|
126
|
+
|
|
127
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
128
|
+
|
|
129
|
+
Unless required by applicable law or agreed to in writing, software
|
|
130
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
131
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
132
|
+
See the License for the specific language governing permissions and
|
|
133
|
+
limitations under the License.
|
|
134
|
+
|
|
135
|
+
Full Apache License 2.0 text available at:
|
|
136
|
+
http://www.apache.org/licenses/LICENSE-2.0.txt
|
|
137
|
+
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
zlmdb - Object-relational zero-copy in-memory database layer based on LMDB
|
|
2
|
+
===========================================================================
|
|
3
|
+
|
|
4
|
+
Copyright (c) typedef int GmbH and contributors
|
|
5
|
+
Licensed under the MIT License (see LICENSE file)
|
|
6
|
+
|
|
7
|
+
This software includes and distributes the following third-party components:
|
|
8
|
+
|
|
9
|
+
1. LMDB (Lightning Memory-Mapped Database)
|
|
10
|
+
Version: 0.9.33
|
|
11
|
+
Copyright: 2011-2024 Howard Chu, Symas Corp.
|
|
12
|
+
License: OpenLDAP Public License 2.8
|
|
13
|
+
Source: https://git.openldap.org/openldap/openldap
|
|
14
|
+
Git submodule: lmdb-upstream/
|
|
15
|
+
|
|
16
|
+
LMDB C sources are included via git submodule and compiled into zlmdb.
|
|
17
|
+
The OpenLDAP Public License is included in the LICENSE file.
|
|
18
|
+
|
|
19
|
+
2. py-lmdb (Python LMDB bindings)
|
|
20
|
+
Copyright: 2013-2024 The py-lmdb authors
|
|
21
|
+
Original author: David Wilson
|
|
22
|
+
Current maintainer: Nic Watson
|
|
23
|
+
License: OpenLDAP Public License 2.8
|
|
24
|
+
Source: https://github.com/jnwatson/py-lmdb
|
|
25
|
+
Vendored files: lmdb/ directory, lmdb-patches/ directory
|
|
26
|
+
|
|
27
|
+
Python CFFI bindings and patches from py-lmdb are vendored and built into zlmdb.
|
|
28
|
+
The OpenLDAP Public License is included in the LICENSE file.
|
|
29
|
+
|
|
30
|
+
3. Flatbuffers
|
|
31
|
+
Version: 25.9.23
|
|
32
|
+
Copyright: 2014 Google Inc.
|
|
33
|
+
License: Apache License 2.0
|
|
34
|
+
Source: https://github.com/google/flatbuffers
|
|
35
|
+
Git submodule: deps/flatbuffers/
|
|
36
|
+
|
|
37
|
+
Flatbuffers Python runtime is vendored and distributed with zlmdb.
|
|
38
|
+
The Apache License 2.0 is included in the LICENSE file.
|
|
39
|
+
|
|
40
|
+
For complete license texts, see the LICENSE file in the root directory.
|
|
41
|
+
For original license files, see the respective git submodule directories.
|