nedb-engine 2.0.6__tar.gz → 2.0.8__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.
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/PKG-INFO +7 -6
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/README.md +6 -5
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/pyproject.toml +1 -1
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/__init__.py +1 -1
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/.gitignore +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/LICENSE +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/client/python/README.md +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/autoindex.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/backends/__init__.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/backends/redis_backend.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/cascade.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/concurrent.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/crypto.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/engine.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/index.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/log.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/merkle.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/mongo.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/query.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/redis_compat.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/relations.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/resp2.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/server.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/snapshot.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/sql.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/store.py +0 -0
- {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/wrap_redis.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nedb-engine
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.8
|
|
4
4
|
Summary: NEDB — a versioned, self-compressing, time-traveling embedded database (replay-protected, idempotent, relational, searchable) with durable AOF persistence and a server daemon (nedbd).
|
|
5
5
|
Project-URL: Homepage, https://github.com/Eth-Interchained/nedb
|
|
6
6
|
Project-URL: Repository, https://github.com/Eth-Interchained/nedb
|
|
@@ -29,7 +29,8 @@ One Rust core → ships to **PyPI** and **npm** from a single source.
|
|
|
29
29
|
[](https://pypi.org/project/nedb-engine/)
|
|
30
30
|
[](https://www.npmjs.com/package/nedb-engine)
|
|
31
31
|
[](https://github.com/Eth-Interchained/nedb/actions)
|
|
32
|
-
[](https://pypi.org/project/nedb-client/)
|
|
32
|
+
[](https://pypi.org/project/nedb-engine-client/)
|
|
33
|
+
[](https://www.npmjs.com/package/nedb-engine-client)
|
|
33
34
|
|
|
34
35
|
**[Studio → studio.interchained.org](https://studio.interchained.org)** · **[nedb.aiassist.net](https://nedb.aiassist.net)**
|
|
35
36
|
|
|
@@ -337,8 +338,8 @@ Encryption: AES-256-GCM at-rest (TMK/DEK double-envelope)
|
|
|
337
338
|
Connect to any running nedbd instance from Python or TypeScript without embedding the engine:
|
|
338
339
|
|
|
339
340
|
```bash
|
|
340
|
-
pip install nedb-client # async Python
|
|
341
|
-
npm install nedb-client
|
|
341
|
+
pip install nedb-engine-client # async Python
|
|
342
|
+
npm install nedb-engine-client # TypeScript / Node.js 18+
|
|
342
343
|
```
|
|
343
344
|
|
|
344
345
|
```python
|
|
@@ -352,7 +353,7 @@ async with NedbClient("http://127.0.0.1:7070", db="mydb") as db:
|
|
|
352
353
|
```
|
|
353
354
|
|
|
354
355
|
```typescript
|
|
355
|
-
import { NedbClient } from "nedb-client";
|
|
356
|
+
import { NedbClient } from "nedb-engine-client";
|
|
356
357
|
const db = new NedbClient({ url: "http://127.0.0.1:7070", db: "mydb" });
|
|
357
358
|
await db.put("blocks", "618000", { height: 618000 });
|
|
358
359
|
const rows = await db.query("FROM blocks LIMIT 10");
|
|
@@ -370,7 +371,7 @@ rust/
|
|
|
370
371
|
nedb-node/ napi-rs binding → npm native addons
|
|
371
372
|
nedb-v2/ v2 DAG engine (tokio + axum + BLAKE2b DAG)
|
|
372
373
|
client/
|
|
373
|
-
python/ nedb-client — async Python HTTP client (pip install nedb-client)
|
|
374
|
+
python/ nedb-client — async Python HTTP client (pip install nedb-engine-client)
|
|
374
375
|
node/ nedb-client — TypeScript HTTP client (npm install nedb-client)
|
|
375
376
|
tests/ engine + concurrent + causal + bitemporal + deploy + perf benchmarks
|
|
376
377
|
examples/ resp2_python.py resp2_demo.sh
|
|
@@ -10,7 +10,8 @@ One Rust core → ships to **PyPI** and **npm** from a single source.
|
|
|
10
10
|
[](https://pypi.org/project/nedb-engine/)
|
|
11
11
|
[](https://www.npmjs.com/package/nedb-engine)
|
|
12
12
|
[](https://github.com/Eth-Interchained/nedb/actions)
|
|
13
|
-
[](https://pypi.org/project/nedb-client/)
|
|
13
|
+
[](https://pypi.org/project/nedb-engine-client/)
|
|
14
|
+
[](https://www.npmjs.com/package/nedb-engine-client)
|
|
14
15
|
|
|
15
16
|
**[Studio → studio.interchained.org](https://studio.interchained.org)** · **[nedb.aiassist.net](https://nedb.aiassist.net)**
|
|
16
17
|
|
|
@@ -318,8 +319,8 @@ Encryption: AES-256-GCM at-rest (TMK/DEK double-envelope)
|
|
|
318
319
|
Connect to any running nedbd instance from Python or TypeScript without embedding the engine:
|
|
319
320
|
|
|
320
321
|
```bash
|
|
321
|
-
pip install nedb-client # async Python
|
|
322
|
-
npm install nedb-client
|
|
322
|
+
pip install nedb-engine-client # async Python
|
|
323
|
+
npm install nedb-engine-client # TypeScript / Node.js 18+
|
|
323
324
|
```
|
|
324
325
|
|
|
325
326
|
```python
|
|
@@ -333,7 +334,7 @@ async with NedbClient("http://127.0.0.1:7070", db="mydb") as db:
|
|
|
333
334
|
```
|
|
334
335
|
|
|
335
336
|
```typescript
|
|
336
|
-
import { NedbClient } from "nedb-client";
|
|
337
|
+
import { NedbClient } from "nedb-engine-client";
|
|
337
338
|
const db = new NedbClient({ url: "http://127.0.0.1:7070", db: "mydb" });
|
|
338
339
|
await db.put("blocks", "618000", { height: 618000 });
|
|
339
340
|
const rows = await db.query("FROM blocks LIMIT 10");
|
|
@@ -351,7 +352,7 @@ rust/
|
|
|
351
352
|
nedb-node/ napi-rs binding → npm native addons
|
|
352
353
|
nedb-v2/ v2 DAG engine (tokio + axum + BLAKE2b DAG)
|
|
353
354
|
client/
|
|
354
|
-
python/ nedb-client — async Python HTTP client (pip install nedb-client)
|
|
355
|
+
python/ nedb-client — async Python HTTP client (pip install nedb-engine-client)
|
|
355
356
|
node/ nedb-client — TypeScript HTTP client (npm install nedb-client)
|
|
356
357
|
tests/ engine + concurrent + causal + bitemporal + deploy + perf benchmarks
|
|
357
358
|
examples/ resp2_python.py resp2_demo.sh
|
|
@@ -10,7 +10,7 @@ build-backend = "hatchling.build"
|
|
|
10
10
|
|
|
11
11
|
[project]
|
|
12
12
|
name = "nedb-engine"
|
|
13
|
-
version = "2.0.
|
|
13
|
+
version = "2.0.8"
|
|
14
14
|
description = "NEDB — a versioned, self-compressing, time-traveling embedded database (replay-protected, idempotent, relational, searchable) with durable AOF persistence and a server daemon (nedbd)."
|
|
15
15
|
readme = "README.md"
|
|
16
16
|
requires-python = ">=3.8"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|