walkindb 0.0.1__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.
- walkindb-0.0.1/PKG-INFO +22 -0
- walkindb-0.0.1/README.md +7 -0
- walkindb-0.0.1/pyproject.toml +25 -0
- walkindb-0.0.1/walkindb/__init__.py +7 -0
walkindb-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: walkindb
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: walkindb — disposable SQLite for LLM agents (name reservation; SDK coming soon)
|
|
5
|
+
Project-URL: Homepage, https://walkindb.com
|
|
6
|
+
Author: walkindb
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Keywords: agents,database,ephemeral,llm,sqlite
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Database
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# walkindb
|
|
17
|
+
|
|
18
|
+
Disposable SQLite databases for LLM agents. No signup, 10-minute TTL.
|
|
19
|
+
|
|
20
|
+
This PyPI package is currently a **name reservation**. The real SDK will ship soon.
|
|
21
|
+
|
|
22
|
+
Learn more at https://walkindb.com
|
walkindb-0.0.1/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "walkindb"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "walkindb — disposable SQLite for LLM agents (name reservation; SDK coming soon)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
authors = [{ name = "walkindb" }]
|
|
13
|
+
keywords = ["sqlite", "llm", "agents", "ephemeral", "database"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"License :: OSI Approved :: Apache Software License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Topic :: Database",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://walkindb.com"
|
|
23
|
+
|
|
24
|
+
[tool.hatch.build.targets.wheel]
|
|
25
|
+
packages = ["walkindb"]
|