yodb 0.0.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.
yodb-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.5
2
+ Name: yodb
3
+ Version: 0.0.0
4
+ Summary: Placeholder. yo is an embedded multi-model database in Rust; this package will hold its Python binding. Not yet usable.
5
+ Project-URL: Homepage, https://github.com/tamnd/yo
6
+ Project-URL: Repository, https://github.com/tamnd/yo
7
+ Project-URL: Issues, https://github.com/tamnd/yo/issues
8
+ License-Expression: MIT OR Apache-2.0
9
+ Keywords: database,embedded,placeholder
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Topic :: Database :: Database Engines/Servers
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+
16
+ Placeholder. yo is an embedded multi-model database in Rust; this package will hold its Python binding. Not yet usable.
17
+
18
+ The real release lands at milestone DX6 (M7). Until then this package does nothing.
19
+
20
+ This name is reserved for a project that exists and is being built, not held
21
+ against one that might be. The engine is at https://github.com/tamnd/yo, it has a changelog and a
22
+ milestone track, and this package is a signpost to it.
23
+
24
+ Nothing here works yet. There is one symbol and calling it raises. That is the
25
+ whole package, on purpose: a placeholder that fails at import or resolution
26
+ time is a cost imposed on a stranger's build, and a placeholder that pretends
27
+ to work is worse.
yodb-0.0.0/README.md ADDED
@@ -0,0 +1,12 @@
1
+ Placeholder. yo is an embedded multi-model database in Rust; this package will hold its Python binding. Not yet usable.
2
+
3
+ The real release lands at milestone DX6 (M7). Until then this package does nothing.
4
+
5
+ This name is reserved for a project that exists and is being built, not held
6
+ against one that might be. The engine is at https://github.com/tamnd/yo, it has a changelog and a
7
+ milestone track, and this package is a signpost to it.
8
+
9
+ Nothing here works yet. There is one symbol and calling it raises. That is the
10
+ whole package, on purpose: a placeholder that fails at import or resolution
11
+ time is a cost imposed on a stranger's build, and a placeholder that pretends
12
+ to work is worse.
@@ -0,0 +1,25 @@
1
+ [project]
2
+ name = "yodb"
3
+ version = "0.0.0"
4
+ description = "Placeholder. yo is an embedded multi-model database in Rust; this package will hold its Python binding. Not yet usable."
5
+ readme = "README.md"
6
+ requires-python = ">=3.9"
7
+ license = "MIT OR Apache-2.0"
8
+ keywords = ["database", "embedded", "placeholder"]
9
+ classifiers = [
10
+ "Development Status :: 1 - Planning",
11
+ "Intended Audience :: Developers",
12
+ "Topic :: Database :: Database Engines/Servers",
13
+ ]
14
+
15
+ [project.urls]
16
+ Homepage = "https://github.com/tamnd/yo"
17
+ Repository = "https://github.com/tamnd/yo"
18
+ Issues = "https://github.com/tamnd/yo/issues"
19
+
20
+ [build-system]
21
+ requires = ["hatchling"]
22
+ build-backend = "hatchling.build"
23
+
24
+ [tool.hatch.build.targets.wheel]
25
+ packages = ["src/yodb"]
@@ -0,0 +1,20 @@
1
+ """Placeholder. yo is an embedded multi-model database in Rust; this package will hold its Python binding. Not yet usable.
2
+
3
+ The real release lands at milestone DX6 (M7). Until then this package does nothing.
4
+ """
5
+
6
+ __all__ = ["NOT_YET", "open"]
7
+ __version__ = "0.0.0"
8
+
9
+ #: The message every placeholder in every ecosystem raises with.
10
+ NOT_YET = "yo is not usable yet. This is a reserved placeholder at 0.0.0; see https://github.com/tamnd/yo"
11
+
12
+
13
+ def open(path): # noqa: A001 — matches the API this will eventually have
14
+ """Open a database. Always raises: this version is a reserved placeholder.
15
+
16
+ It raises rather than returning None because a caller cannot tell a None
17
+ from a database that failed to open, and a placeholder that is quiet is a
18
+ placeholder that reaches production.
19
+ """
20
+ raise NotImplementedError(NOT_YET)