jpit 0.1.0__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.
- jpit-0.1.0/.gitignore +50 -0
- jpit-0.1.0/PKG-INFO +51 -0
- jpit-0.1.0/README.md +34 -0
- jpit-0.1.0/jpit/__init__.py +5 -0
- jpit-0.1.0/pyproject.toml +30 -0
jpit-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# Distribution / packaging
|
|
7
|
+
.Python
|
|
8
|
+
build/
|
|
9
|
+
develop-eggs/
|
|
10
|
+
dist/
|
|
11
|
+
downloads/
|
|
12
|
+
eggs/
|
|
13
|
+
.eggs/
|
|
14
|
+
lib/
|
|
15
|
+
lib64/
|
|
16
|
+
parts/
|
|
17
|
+
sdist/
|
|
18
|
+
var/
|
|
19
|
+
wheels/
|
|
20
|
+
share/python-wheels/
|
|
21
|
+
*.egg-info/
|
|
22
|
+
.installed.cfg
|
|
23
|
+
*.egg
|
|
24
|
+
MANIFEST
|
|
25
|
+
|
|
26
|
+
# Virtual environments
|
|
27
|
+
.venv/
|
|
28
|
+
venv/
|
|
29
|
+
ENV/
|
|
30
|
+
env/
|
|
31
|
+
|
|
32
|
+
# IDE / Editor
|
|
33
|
+
.vscode/
|
|
34
|
+
.idea/
|
|
35
|
+
*.swp
|
|
36
|
+
*.swo
|
|
37
|
+
*~
|
|
38
|
+
.DS_Store
|
|
39
|
+
|
|
40
|
+
# Testing & Type checking
|
|
41
|
+
.pytest_cache/
|
|
42
|
+
.mypy_cache/
|
|
43
|
+
.ruff_cache/
|
|
44
|
+
.coverage
|
|
45
|
+
htmlcov/
|
|
46
|
+
|
|
47
|
+
# Local test scratch / temp
|
|
48
|
+
scratch/
|
|
49
|
+
tmp/
|
|
50
|
+
*.tmp
|
jpit-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: jpit
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: CLI companion and alias for jsonpit — daemon-free distributed storage over Cloud Drives.
|
|
5
|
+
Author-email: "Dr. Rainer Burkhardt" <Rainer@Burkhardt.com>, "Adele (7010)" <adele@aia.software>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Classifier: Development Status :: 4 - Beta
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Classifier: Topic :: Database :: Database Engines/Servers
|
|
14
|
+
Requires-Python: >=3.12
|
|
15
|
+
Requires-Dist: jsonpit>=0.1.0
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# jpit
|
|
19
|
+
|
|
20
|
+
The developer and agent companion CLI for [jsonpit](https://pypi.org/project/jsonpit/) — daemon-free distributed storage over Cloud Drives.
|
|
21
|
+
|
|
22
|
+
## Quick Install
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
pip install jpit
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Installing `jpit` installs the core `jsonpit` storage engine and provides both `jpit` and `jsonpit` command-line executables:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
# Fast semantic search across one or all pits ("Pit-Grep"):
|
|
32
|
+
jpit grep "Adele" Person
|
|
33
|
+
jpit grep "Burkhardt" --root AIA
|
|
34
|
+
|
|
35
|
+
# Pipe search results directly into jq:
|
|
36
|
+
jpit grep "Jazz" Person --json | jq '.[].Genre'
|
|
37
|
+
|
|
38
|
+
# Inspect entity living state or full immutable history:
|
|
39
|
+
jpit get Person Rainer
|
|
40
|
+
jpit history Person Rainer
|
|
41
|
+
|
|
42
|
+
# Pipe JSON5 / JSON mutations directly into a pit:
|
|
43
|
+
cat update.json5 | jpit put Person
|
|
44
|
+
echo '{id: "AlanKay", dynabook: true}' | jpit put Person
|
|
45
|
+
|
|
46
|
+
# Set individual properties or tombstone an entity:
|
|
47
|
+
jpit set Person AlanKay Status "Visionary"
|
|
48
|
+
jpit del Person ObsoleteEntity
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
For full library documentation, distributed architecture details, and multi-agent coordination protocols, visit the official [jsonpit repository on GitHub](https://github.com/Burkhardt/jsonpit-python).
|
jpit-0.1.0/README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# jpit
|
|
2
|
+
|
|
3
|
+
The developer and agent companion CLI for [jsonpit](https://pypi.org/project/jsonpit/) — daemon-free distributed storage over Cloud Drives.
|
|
4
|
+
|
|
5
|
+
## Quick Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install jpit
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Installing `jpit` installs the core `jsonpit` storage engine and provides both `jpit` and `jsonpit` command-line executables:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# Fast semantic search across one or all pits ("Pit-Grep"):
|
|
15
|
+
jpit grep "Adele" Person
|
|
16
|
+
jpit grep "Burkhardt" --root AIA
|
|
17
|
+
|
|
18
|
+
# Pipe search results directly into jq:
|
|
19
|
+
jpit grep "Jazz" Person --json | jq '.[].Genre'
|
|
20
|
+
|
|
21
|
+
# Inspect entity living state or full immutable history:
|
|
22
|
+
jpit get Person Rainer
|
|
23
|
+
jpit history Person Rainer
|
|
24
|
+
|
|
25
|
+
# Pipe JSON5 / JSON mutations directly into a pit:
|
|
26
|
+
cat update.json5 | jpit put Person
|
|
27
|
+
echo '{id: "AlanKay", dynabook: true}' | jpit put Person
|
|
28
|
+
|
|
29
|
+
# Set individual properties or tombstone an entity:
|
|
30
|
+
jpit set Person AlanKay Status "Visionary"
|
|
31
|
+
jpit del Person ObsoleteEntity
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
For full library documentation, distributed architecture details, and multi-agent coordination protocols, visit the official [jsonpit repository on GitHub](https://github.com/Burkhardt/jsonpit-python).
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "jpit"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "CLI companion and alias for jsonpit — daemon-free distributed storage over Cloud Drives."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.12"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Dr. Rainer Burkhardt", email = "Rainer@Burkhardt.com" },
|
|
14
|
+
{ name = "Adele (7010)", email = "adele@aia.software" },
|
|
15
|
+
]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 4 - Beta",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Operating System :: OS Independent",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.12",
|
|
22
|
+
"Programming Language :: Python :: 3.13",
|
|
23
|
+
"Topic :: Database :: Database Engines/Servers",
|
|
24
|
+
]
|
|
25
|
+
dependencies = [
|
|
26
|
+
"jsonpit>=0.1.0",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[project.scripts]
|
|
30
|
+
jpit = "jsonpit.cli:main"
|