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.
Files changed (27) hide show
  1. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/PKG-INFO +7 -6
  2. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/README.md +6 -5
  3. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/pyproject.toml +1 -1
  4. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/__init__.py +1 -1
  5. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/.gitignore +0 -0
  6. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/LICENSE +0 -0
  7. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/client/python/README.md +0 -0
  8. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/autoindex.py +0 -0
  9. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/backends/__init__.py +0 -0
  10. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/backends/redis_backend.py +0 -0
  11. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/cascade.py +0 -0
  12. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/concurrent.py +0 -0
  13. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/crypto.py +0 -0
  14. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/engine.py +0 -0
  15. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/index.py +0 -0
  16. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/log.py +0 -0
  17. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/merkle.py +0 -0
  18. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/mongo.py +0 -0
  19. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/query.py +0 -0
  20. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/redis_compat.py +0 -0
  21. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/relations.py +0 -0
  22. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/resp2.py +0 -0
  23. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/server.py +0 -0
  24. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/snapshot.py +0 -0
  25. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/sql.py +0 -0
  26. {nedb_engine-2.0.6 → nedb_engine-2.0.8}/python/nedb/store.py +0 -0
  27. {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.6
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
  [![PyPI](https://img.shields.io/pypi/v/nedb-engine?label=PyPI&color=6366f1)](https://pypi.org/project/nedb-engine/)
30
30
  [![npm](https://img.shields.io/npm/v/nedb-engine?label=npm&color=00d4ff)](https://www.npmjs.com/package/nedb-engine)
31
31
  [![Tests](https://img.shields.io/badge/tests-266%20passing-34d399)](https://github.com/Eth-Interchained/nedb/actions)
32
- [![nedb-client PyPI](https://img.shields.io/pypi/v/nedb-client?label=nedb-client&color=34d399)](https://pypi.org/project/nedb-client/)
32
+ [![nedb-engine-client PyPI](https://img.shields.io/pypi/v/nedb-engine-client?label=nedb-engine-client&color=34d399)](https://pypi.org/project/nedb-engine-client/)
33
+ [![nedb-engine-client npm](https://img.shields.io/npm/v/nedb-engine-client?label=nedb-engine-client&color=34d399)](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 # TypeScript / Node.js 18+
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
  [![PyPI](https://img.shields.io/pypi/v/nedb-engine?label=PyPI&color=6366f1)](https://pypi.org/project/nedb-engine/)
11
11
  [![npm](https://img.shields.io/npm/v/nedb-engine?label=npm&color=00d4ff)](https://www.npmjs.com/package/nedb-engine)
12
12
  [![Tests](https://img.shields.io/badge/tests-266%20passing-34d399)](https://github.com/Eth-Interchained/nedb/actions)
13
- [![nedb-client PyPI](https://img.shields.io/pypi/v/nedb-client?label=nedb-client&color=34d399)](https://pypi.org/project/nedb-client/)
13
+ [![nedb-engine-client PyPI](https://img.shields.io/pypi/v/nedb-engine-client?label=nedb-engine-client&color=34d399)](https://pypi.org/project/nedb-engine-client/)
14
+ [![nedb-engine-client npm](https://img.shields.io/npm/v/nedb-engine-client?label=nedb-engine-client&color=34d399)](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 # TypeScript / Node.js 18+
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.6"
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"
@@ -47,4 +47,4 @@ __all__ = [
47
47
  "wrap_redis", "WrappedRedis",
48
48
  "_native", "__has_native__",
49
49
  ]
50
- __version__ = "2.0.6"
50
+ __version__ = "2.0.8"
File without changes
File without changes