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.
- {coffy-0.1.1/coffy.egg-info → coffy-0.1.2}/PKG-INFO +4 -4
- {coffy-0.1.1 → coffy-0.1.2}/README.md +3 -3
- {coffy-0.1.1 → coffy-0.1.2/coffy.egg-info}/PKG-INFO +4 -4
- {coffy-0.1.1 → coffy-0.1.2}/setup.py +1 -1
- {coffy-0.1.1 → coffy-0.1.2}/LICENSE +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/MANIFEST.in +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/__init__.py +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/__pycache__/__init__.cpython-311.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/__pycache__/__init__.cpython-312.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/graph/__init__.py +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/graph/__pycache__/__init__.cpython-312.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/graph/__pycache__/graphdb_nx.cpython-312.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/graph/graphdb_nx.py +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/nosql/__init__.py +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/nosql/__pycache__/__init__.cpython-311.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/nosql/__pycache__/__init__.cpython-312.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/nosql/__pycache__/engine.cpython-311.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/nosql/__pycache__/engine.cpython-312.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/nosql/engine.py +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__init__.py +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__pycache__/__init__.cpython-311.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__pycache__/__init__.cpython-312.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__pycache__/engine.cpython-311.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__pycache__/engine.cpython-312.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__pycache__/io.cpython-312.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__pycache__/sqldict.cpython-311.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/__pycache__/sqldict.cpython-312.pyc +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/engine.py +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy/sql/sqldict.py +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy.egg-info/SOURCES.txt +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy.egg-info/dependency_links.txt +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy.egg-info/requires.txt +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/coffy.egg-info/top_level.txt +0 -0
- {coffy-0.1.1 → coffy-0.1.2}/pyproject.toml +0 -0
- {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.
|
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 →](
|
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 →](
|
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 →](
|
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 →](
|
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 →](
|
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 →](
|
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.
|
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 →](
|
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 →](
|
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 →](
|
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.
|
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
|
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
|