coffy 0.1.5__tar.gz → 0.1.6__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.
- {coffy-0.1.5/coffy.egg-info → coffy-0.1.6}/PKG-INFO +6 -4
- {coffy-0.1.5 → coffy-0.1.6}/README.md +5 -3
- coffy-0.1.6/coffy/__init__.py +2 -0
- coffy-0.1.6/coffy/__pycache__/__init__.cpython-312.pyc +0 -0
- coffy-0.1.6/coffy/graph/__init__.py +6 -0
- coffy-0.1.6/coffy/graph/__pycache__/__init__.cpython-312.pyc +0 -0
- coffy-0.1.6/coffy/graph/__pycache__/graphdb_nx.cpython-312.pyc +0 -0
- coffy-0.1.6/coffy/graph/graphdb_nx.py +663 -0
- {coffy-0.1.5 → coffy-0.1.6}/coffy/nosql/__init__.py +4 -0
- coffy-0.1.6/coffy/nosql/__pycache__/__init__.cpython-312.pyc +0 -0
- coffy-0.1.6/coffy/nosql/__pycache__/engine.cpython-312.pyc +0 -0
- coffy-0.1.6/coffy/nosql/engine.py +689 -0
- {coffy-0.1.5 → coffy-0.1.6}/coffy/sql/__init__.py +7 -0
- coffy-0.1.6/coffy/sql/__pycache__/__init__.cpython-312.pyc +0 -0
- coffy-0.1.6/coffy/sql/__pycache__/engine.cpython-312.pyc +0 -0
- coffy-0.1.6/coffy/sql/__pycache__/sqldict.cpython-312.pyc +0 -0
- {coffy-0.1.5 → coffy-0.1.6}/coffy/sql/engine.py +30 -3
- coffy-0.1.6/coffy/sql/sqldict.py +98 -0
- {coffy-0.1.5 → coffy-0.1.6/coffy.egg-info}/PKG-INFO +6 -4
- {coffy-0.1.5 → coffy-0.1.6}/coffy.egg-info/SOURCES.txt +3 -3
- {coffy-0.1.5 → coffy-0.1.6}/setup.py +2 -4
- coffy-0.1.5/coffy/graph/graph_tests.py → coffy-0.1.6/tests/test_graph.py +10 -4
- coffy-0.1.5/coffy/nosql/nosql_tests.py → coffy-0.1.6/tests/test_nosql.py +17 -14
- coffy-0.1.5/coffy/__init__.py +0 -2
- coffy-0.1.5/coffy/__pycache__/__init__.cpython-312.pyc +0 -0
- coffy-0.1.5/coffy/graph/__init__.py +0 -4
- coffy-0.1.5/coffy/graph/__pycache__/__init__.cpython-312.pyc +0 -0
- coffy-0.1.5/coffy/graph/__pycache__/graphdb_nx.cpython-312.pyc +0 -0
- coffy-0.1.5/coffy/graph/graphdb_nx.py +0 -379
- coffy-0.1.5/coffy/nosql/__pycache__/__init__.cpython-312.pyc +0 -0
- coffy-0.1.5/coffy/nosql/__pycache__/engine.cpython-312.pyc +0 -0
- coffy-0.1.5/coffy/nosql/engine.py +0 -326
- coffy-0.1.5/coffy/sql/__pycache__/__init__.cpython-312.pyc +0 -0
- coffy-0.1.5/coffy/sql/__pycache__/engine.cpython-312.pyc +0 -0
- coffy-0.1.5/coffy/sql/__pycache__/sqldict.cpython-312.pyc +0 -0
- coffy-0.1.5/coffy/sql/sqldict.py +0 -58
- {coffy-0.1.5 → coffy-0.1.6}/LICENSE +0 -0
- {coffy-0.1.5 → coffy-0.1.6}/MANIFEST.in +0 -0
- {coffy-0.1.5 → coffy-0.1.6}/coffy/__pycache__/__init__.cpython-311.pyc +0 -0
- {coffy-0.1.5 → coffy-0.1.6}/coffy/nosql/__pycache__/__init__.cpython-311.pyc +0 -0
- {coffy-0.1.5 → coffy-0.1.6}/coffy/nosql/__pycache__/engine.cpython-311.pyc +0 -0
- {coffy-0.1.5 → coffy-0.1.6}/coffy/sql/__pycache__/__init__.cpython-311.pyc +0 -0
- {coffy-0.1.5 → coffy-0.1.6}/coffy/sql/__pycache__/engine.cpython-311.pyc +0 -0
- {coffy-0.1.5 → coffy-0.1.6}/coffy/sql/__pycache__/io.cpython-312.pyc +0 -0
- {coffy-0.1.5 → coffy-0.1.6}/coffy/sql/__pycache__/sqldict.cpython-311.pyc +0 -0
- {coffy-0.1.5 → coffy-0.1.6}/coffy.egg-info/dependency_links.txt +0 -0
- {coffy-0.1.5 → coffy-0.1.6}/coffy.egg-info/requires.txt +0 -0
- {coffy-0.1.5 → coffy-0.1.6}/coffy.egg-info/top_level.txt +0 -0
- {coffy-0.1.5 → coffy-0.1.6}/pyproject.toml +0 -0
- {coffy-0.1.5 → coffy-0.1.6}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: coffy
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.6
|
4
4
|
Summary: Lightweight local NoSQL, SQL, and Graph embedded database engine
|
5
5
|
Author: nsarathy
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
@@ -21,6 +21,8 @@ Dynamic: summary
|
|
21
21
|
|
22
22
|
# ☕ Coffy
|
23
23
|
|
24
|
+
[](https://pypi.org/project/coffy/)
|
25
|
+
|
24
26
|
**Coffy** is a lightweight embedded database engine for Python, designed for local-first apps, scripts, and tools. It includes:
|
25
27
|
|
26
28
|
- `coffy.nosql`: A simple JSON-backed NoSQL engine with a fluent, chainable query interface
|
@@ -52,7 +54,7 @@ pip install coffy
|
|
52
54
|
- Supports nested fields, logical filters, aggregations, projections, and joins
|
53
55
|
- Built for local usage with optional persistence; minimal setup, fast iteration
|
54
56
|
|
55
|
-
📄 [NoSQL Documentation →](https://github.com/nsarathy/Coffy/blob/main/NOSQL_DOCS.md)
|
57
|
+
📄 [NoSQL Documentation →](https://github.com/nsarathy/Coffy/blob/main/Documentation/NOSQL_DOCS.md)
|
56
58
|
|
57
59
|
---
|
58
60
|
|
@@ -62,7 +64,7 @@ pip install coffy
|
|
62
64
|
- Supports pattern matching, label/type filtering, logical conditions, and projections
|
63
65
|
- Query results can be saved, updated, or transformed; ideal for local, schema-flexible graph data
|
64
66
|
|
65
|
-
📄 [Graph Documentation →](https://github.com/nsarathy/Coffy/blob/main/GRAPH_DOCS.md)
|
67
|
+
📄 [Graph Documentation →](https://github.com/nsarathy/Coffy/blob/main/Documentation/GRAPH_DOCS.md)
|
66
68
|
|
67
69
|
---
|
68
70
|
|
@@ -72,7 +74,7 @@ pip install coffy
|
|
72
74
|
- Outputs as readable tables or exportable lists
|
73
75
|
- Uses in-memory DB by default, or json-based if initialized with a path
|
74
76
|
|
75
|
-
📄 [SQL Documentation →](https://github.com/nsarathy/Coffy/blob/main/SQL_DOCS.md)
|
77
|
+
📄 [SQL Documentation →](https://github.com/nsarathy/Coffy/blob/main/Documentation/SQL_DOCS.md)
|
76
78
|
|
77
79
|
---
|
78
80
|
|
@@ -1,5 +1,7 @@
|
|
1
1
|
# ☕ Coffy
|
2
2
|
|
3
|
+
[](https://pypi.org/project/coffy/)
|
4
|
+
|
3
5
|
**Coffy** is a lightweight embedded database engine for Python, designed for local-first apps, scripts, and tools. It includes:
|
4
6
|
|
5
7
|
- `coffy.nosql`: A simple JSON-backed NoSQL engine with a fluent, chainable query interface
|
@@ -31,7 +33,7 @@ pip install coffy
|
|
31
33
|
- Supports nested fields, logical filters, aggregations, projections, and joins
|
32
34
|
- Built for local usage with optional persistence; minimal setup, fast iteration
|
33
35
|
|
34
|
-
📄 [NoSQL Documentation →](https://github.com/nsarathy/Coffy/blob/main/NOSQL_DOCS.md)
|
36
|
+
📄 [NoSQL Documentation →](https://github.com/nsarathy/Coffy/blob/main/Documentation/NOSQL_DOCS.md)
|
35
37
|
|
36
38
|
---
|
37
39
|
|
@@ -41,7 +43,7 @@ pip install coffy
|
|
41
43
|
- Supports pattern matching, label/type filtering, logical conditions, and projections
|
42
44
|
- Query results can be saved, updated, or transformed; ideal for local, schema-flexible graph data
|
43
45
|
|
44
|
-
📄 [Graph Documentation →](https://github.com/nsarathy/Coffy/blob/main/GRAPH_DOCS.md)
|
46
|
+
📄 [Graph Documentation →](https://github.com/nsarathy/Coffy/blob/main/Documentation/GRAPH_DOCS.md)
|
45
47
|
|
46
48
|
---
|
47
49
|
|
@@ -51,7 +53,7 @@ pip install coffy
|
|
51
53
|
- Outputs as readable tables or exportable lists
|
52
54
|
- Uses in-memory DB by default, or json-based if initialized with a path
|
53
55
|
|
54
|
-
📄 [SQL Documentation →](https://github.com/nsarathy/Coffy/blob/main/SQL_DOCS.md)
|
56
|
+
📄 [SQL Documentation →](https://github.com/nsarathy/Coffy/blob/main/Documentation/SQL_DOCS.md)
|
55
57
|
|
56
58
|
---
|
57
59
|
|
Binary file
|
Binary file
|
Binary file
|