coffy 0.1.4__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.
Files changed (50) hide show
  1. {coffy-0.1.4/coffy.egg-info → coffy-0.1.6}/PKG-INFO +6 -4
  2. {coffy-0.1.4 → coffy-0.1.6}/README.md +5 -3
  3. coffy-0.1.6/coffy/__init__.py +2 -0
  4. coffy-0.1.6/coffy/__pycache__/__init__.cpython-312.pyc +0 -0
  5. coffy-0.1.6/coffy/graph/__init__.py +6 -0
  6. coffy-0.1.6/coffy/graph/__pycache__/__init__.cpython-312.pyc +0 -0
  7. coffy-0.1.6/coffy/graph/__pycache__/graphdb_nx.cpython-312.pyc +0 -0
  8. coffy-0.1.6/coffy/graph/graphdb_nx.py +663 -0
  9. {coffy-0.1.4 → coffy-0.1.6}/coffy/nosql/__init__.py +4 -0
  10. coffy-0.1.6/coffy/nosql/__pycache__/__init__.cpython-312.pyc +0 -0
  11. coffy-0.1.6/coffy/nosql/__pycache__/engine.cpython-312.pyc +0 -0
  12. coffy-0.1.6/coffy/nosql/engine.py +689 -0
  13. {coffy-0.1.4 → coffy-0.1.6}/coffy/sql/__init__.py +7 -0
  14. coffy-0.1.6/coffy/sql/__pycache__/__init__.cpython-312.pyc +0 -0
  15. coffy-0.1.6/coffy/sql/__pycache__/engine.cpython-312.pyc +0 -0
  16. coffy-0.1.6/coffy/sql/__pycache__/sqldict.cpython-312.pyc +0 -0
  17. {coffy-0.1.4 → coffy-0.1.6}/coffy/sql/engine.py +30 -3
  18. coffy-0.1.6/coffy/sql/sqldict.py +98 -0
  19. {coffy-0.1.4 → coffy-0.1.6/coffy.egg-info}/PKG-INFO +6 -4
  20. {coffy-0.1.4 → coffy-0.1.6}/coffy.egg-info/SOURCES.txt +3 -3
  21. {coffy-0.1.4 → coffy-0.1.6}/setup.py +2 -4
  22. coffy-0.1.4/coffy/graph/graph_tests.py → coffy-0.1.6/tests/test_graph.py +10 -4
  23. coffy-0.1.4/coffy/nosql/nosql_tests.py → coffy-0.1.6/tests/test_nosql.py +17 -14
  24. coffy-0.1.4/coffy/__init__.py +0 -2
  25. coffy-0.1.4/coffy/__pycache__/__init__.cpython-312.pyc +0 -0
  26. coffy-0.1.4/coffy/graph/__init__.py +0 -4
  27. coffy-0.1.4/coffy/graph/__pycache__/__init__.cpython-312.pyc +0 -0
  28. coffy-0.1.4/coffy/graph/__pycache__/graphdb_nx.cpython-312.pyc +0 -0
  29. coffy-0.1.4/coffy/graph/graphdb_nx.py +0 -379
  30. coffy-0.1.4/coffy/nosql/__pycache__/__init__.cpython-312.pyc +0 -0
  31. coffy-0.1.4/coffy/nosql/__pycache__/engine.cpython-312.pyc +0 -0
  32. coffy-0.1.4/coffy/nosql/engine.py +0 -326
  33. coffy-0.1.4/coffy/sql/__pycache__/__init__.cpython-312.pyc +0 -0
  34. coffy-0.1.4/coffy/sql/__pycache__/engine.cpython-312.pyc +0 -0
  35. coffy-0.1.4/coffy/sql/__pycache__/sqldict.cpython-312.pyc +0 -0
  36. coffy-0.1.4/coffy/sql/sqldict.py +0 -58
  37. {coffy-0.1.4 → coffy-0.1.6}/LICENSE +0 -0
  38. {coffy-0.1.4 → coffy-0.1.6}/MANIFEST.in +0 -0
  39. {coffy-0.1.4 → coffy-0.1.6}/coffy/__pycache__/__init__.cpython-311.pyc +0 -0
  40. {coffy-0.1.4 → coffy-0.1.6}/coffy/nosql/__pycache__/__init__.cpython-311.pyc +0 -0
  41. {coffy-0.1.4 → coffy-0.1.6}/coffy/nosql/__pycache__/engine.cpython-311.pyc +0 -0
  42. {coffy-0.1.4 → coffy-0.1.6}/coffy/sql/__pycache__/__init__.cpython-311.pyc +0 -0
  43. {coffy-0.1.4 → coffy-0.1.6}/coffy/sql/__pycache__/engine.cpython-311.pyc +0 -0
  44. {coffy-0.1.4 → coffy-0.1.6}/coffy/sql/__pycache__/io.cpython-312.pyc +0 -0
  45. {coffy-0.1.4 → coffy-0.1.6}/coffy/sql/__pycache__/sqldict.cpython-311.pyc +0 -0
  46. {coffy-0.1.4 → coffy-0.1.6}/coffy.egg-info/dependency_links.txt +0 -0
  47. {coffy-0.1.4 → coffy-0.1.6}/coffy.egg-info/requires.txt +0 -0
  48. {coffy-0.1.4 → coffy-0.1.6}/coffy.egg-info/top_level.txt +0 -0
  49. {coffy-0.1.4 → coffy-0.1.6}/pyproject.toml +0 -0
  50. {coffy-0.1.4 → 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.4
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
+ [![PyPI version](https://img.shields.io/pypi/v/coffy)](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
+ [![PyPI version](https://img.shields.io/pypi/v/coffy)](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
 
@@ -0,0 +1,2 @@
1
+ # coffy/__init__.py
2
+ # author: nsarathy
@@ -0,0 +1,6 @@
1
+ # coffy/graph/__init__.py
2
+ # author: nsarathy
3
+
4
+ from .graphdb_nx import GraphDB as GraphDB
5
+
6
+ __all__ = ["GraphDB"]