coffy 0.1.1__tar.gz → 0.1.2__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 (35) hide show
  1. {coffy-0.1.1/coffy.egg-info → coffy-0.1.2}/PKG-INFO +4 -4
  2. {coffy-0.1.1 → coffy-0.1.2}/README.md +3 -3
  3. {coffy-0.1.1 → coffy-0.1.2/coffy.egg-info}/PKG-INFO +4 -4
  4. {coffy-0.1.1 → coffy-0.1.2}/setup.py +1 -1
  5. {coffy-0.1.1 → coffy-0.1.2}/LICENSE +0 -0
  6. {coffy-0.1.1 → coffy-0.1.2}/MANIFEST.in +0 -0
  7. {coffy-0.1.1 → coffy-0.1.2}/coffy/__init__.py +0 -0
  8. {coffy-0.1.1 → coffy-0.1.2}/coffy/__pycache__/__init__.cpython-311.pyc +0 -0
  9. {coffy-0.1.1 → coffy-0.1.2}/coffy/__pycache__/__init__.cpython-312.pyc +0 -0
  10. {coffy-0.1.1 → coffy-0.1.2}/coffy/graph/__init__.py +0 -0
  11. {coffy-0.1.1 → coffy-0.1.2}/coffy/graph/__pycache__/__init__.cpython-312.pyc +0 -0
  12. {coffy-0.1.1 → coffy-0.1.2}/coffy/graph/__pycache__/graphdb_nx.cpython-312.pyc +0 -0
  13. {coffy-0.1.1 → coffy-0.1.2}/coffy/graph/graphdb_nx.py +0 -0
  14. {coffy-0.1.1 → coffy-0.1.2}/coffy/nosql/__init__.py +0 -0
  15. {coffy-0.1.1 → coffy-0.1.2}/coffy/nosql/__pycache__/__init__.cpython-311.pyc +0 -0
  16. {coffy-0.1.1 → coffy-0.1.2}/coffy/nosql/__pycache__/__init__.cpython-312.pyc +0 -0
  17. {coffy-0.1.1 → coffy-0.1.2}/coffy/nosql/__pycache__/engine.cpython-311.pyc +0 -0
  18. {coffy-0.1.1 → coffy-0.1.2}/coffy/nosql/__pycache__/engine.cpython-312.pyc +0 -0
  19. {coffy-0.1.1 → coffy-0.1.2}/coffy/nosql/engine.py +0 -0
  20. {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__init__.py +0 -0
  21. {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__pycache__/__init__.cpython-311.pyc +0 -0
  22. {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__pycache__/__init__.cpython-312.pyc +0 -0
  23. {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__pycache__/engine.cpython-311.pyc +0 -0
  24. {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__pycache__/engine.cpython-312.pyc +0 -0
  25. {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__pycache__/io.cpython-312.pyc +0 -0
  26. {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__pycache__/sqldict.cpython-311.pyc +0 -0
  27. {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__pycache__/sqldict.cpython-312.pyc +0 -0
  28. {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/engine.py +0 -0
  29. {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/sqldict.py +0 -0
  30. {coffy-0.1.1 → coffy-0.1.2}/coffy.egg-info/SOURCES.txt +0 -0
  31. {coffy-0.1.1 → coffy-0.1.2}/coffy.egg-info/dependency_links.txt +0 -0
  32. {coffy-0.1.1 → coffy-0.1.2}/coffy.egg-info/requires.txt +0 -0
  33. {coffy-0.1.1 → coffy-0.1.2}/coffy.egg-info/top_level.txt +0 -0
  34. {coffy-0.1.1 → coffy-0.1.2}/pyproject.toml +0 -0
  35. {coffy-0.1.1 → coffy-0.1.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: coffy
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Lightweight local NoSQL, SQL, and Graph embedded database engine
5
5
  Author: nsarathy
6
6
  Classifier: Programming Language :: Python :: 3
@@ -47,7 +47,7 @@ pip install coffy
47
47
  - Joins, updates, filters, aggregation, export/import
48
48
  - All data saved to human-readable `.json` files
49
49
 
50
- 📄 [NoSQL Documentation →](./NOSQL_DOCS.md)
50
+ 📄 [NoSQL Documentation →](https://github.com/nsarathy/Coffy/blob/main/NOSQL_DOCS.md)
51
51
 
52
52
  ---
53
53
 
@@ -57,7 +57,7 @@ pip install coffy
57
57
  - Outputs as readable tables or exportable lists
58
58
  - Uses in-memory DB by default, or json-based if initialized with a path
59
59
 
60
- 📄 [SQL Documentation →](./SQL_DOCS.md)
60
+ 📄 [SQL Documentation →](https://github.com/nsarathy/Coffy/blob/main/SQL_DOCS.md)
61
61
 
62
62
  ---
63
63
 
@@ -67,7 +67,7 @@ pip install coffy
67
67
  - Query nodes and relationships using filters like `gt`, `lt`, `eq`, `or`, `not`
68
68
  - Uses in-memory DB by default, or json-based if initialized with a path
69
69
 
70
- 📄 [Graph Documentation →](./GRAPH_DOCS.md)
70
+ 📄 [Graph Documentation →](https://github.com/nsarathy/Coffy/blob/main/GRAPH_DOCS.md)
71
71
 
72
72
  ---
73
73
 
@@ -26,7 +26,7 @@ pip install coffy
26
26
  - Joins, updates, filters, aggregation, export/import
27
27
  - All data saved to human-readable `.json` files
28
28
 
29
- 📄 [NoSQL Documentation →](./NOSQL_DOCS.md)
29
+ 📄 [NoSQL Documentation →](https://github.com/nsarathy/Coffy/blob/main/NOSQL_DOCS.md)
30
30
 
31
31
  ---
32
32
 
@@ -36,7 +36,7 @@ pip install coffy
36
36
  - Outputs as readable tables or exportable lists
37
37
  - Uses in-memory DB by default, or json-based if initialized with a path
38
38
 
39
- 📄 [SQL Documentation →](./SQL_DOCS.md)
39
+ 📄 [SQL Documentation →](https://github.com/nsarathy/Coffy/blob/main/SQL_DOCS.md)
40
40
 
41
41
  ---
42
42
 
@@ -46,7 +46,7 @@ pip install coffy
46
46
  - Query nodes and relationships using filters like `gt`, `lt`, `eq`, `or`, `not`
47
47
  - Uses in-memory DB by default, or json-based if initialized with a path
48
48
 
49
- 📄 [Graph Documentation →](./GRAPH_DOCS.md)
49
+ 📄 [Graph Documentation →](https://github.com/nsarathy/Coffy/blob/main/GRAPH_DOCS.md)
50
50
 
51
51
  ---
52
52
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: coffy
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Lightweight local NoSQL, SQL, and Graph embedded database engine
5
5
  Author: nsarathy
6
6
  Classifier: Programming Language :: Python :: 3
@@ -47,7 +47,7 @@ pip install coffy
47
47
  - Joins, updates, filters, aggregation, export/import
48
48
  - All data saved to human-readable `.json` files
49
49
 
50
- 📄 [NoSQL Documentation →](./NOSQL_DOCS.md)
50
+ 📄 [NoSQL Documentation →](https://github.com/nsarathy/Coffy/blob/main/NOSQL_DOCS.md)
51
51
 
52
52
  ---
53
53
 
@@ -57,7 +57,7 @@ pip install coffy
57
57
  - Outputs as readable tables or exportable lists
58
58
  - Uses in-memory DB by default, or json-based if initialized with a path
59
59
 
60
- 📄 [SQL Documentation →](./SQL_DOCS.md)
60
+ 📄 [SQL Documentation →](https://github.com/nsarathy/Coffy/blob/main/SQL_DOCS.md)
61
61
 
62
62
  ---
63
63
 
@@ -67,7 +67,7 @@ pip install coffy
67
67
  - Query nodes and relationships using filters like `gt`, `lt`, `eq`, `or`, `not`
68
68
  - Uses in-memory DB by default, or json-based if initialized with a path
69
69
 
70
- 📄 [Graph Documentation →](./GRAPH_DOCS.md)
70
+ 📄 [Graph Documentation →](https://github.com/nsarathy/Coffy/blob/main/GRAPH_DOCS.md)
71
71
 
72
72
  ---
73
73
 
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="coffy",
5
- version="0.1.1",
5
+ version="0.1.2",
6
6
  author="nsarathy",
7
7
  description="Lightweight local NoSQL, SQL, and Graph embedded database engine",
8
8
  long_description=open("README.md", encoding="utf-8").read(),
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