keyten 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.
@@ -0,0 +1,7 @@
1
+ /.venv/
2
+ /dist/
3
+ /target/
4
+ __pycache__/
5
+ *.py[cod]
6
+ *.so
7
+
keyten-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Anton Kundenko
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
keyten-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.4
2
+ Name: keyten
3
+ Version: 0.0.1
4
+ Summary: Python bindings for the Keyten columnar dataframe engine
5
+ Project-URL: Homepage, https://k10.works/
6
+ Project-URL: Documentation, https://k10.works/docs/
7
+ Project-URL: Repository, https://github.com/k10works/keyten-py
8
+ Project-URL: Issues, https://github.com/k10works/keyten-py/issues
9
+ Author: K10 Works
10
+ License-Expression: MIT OR Apache-2.0
11
+ License-File: LICENSE
12
+ Keywords: analytics,columnar,dataframe,query-engine
13
+ Classifier: Development Status :: 2 - Pre-Alpha
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Intended Audience :: Science/Research
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3 :: Only
18
+ Classifier: Topic :: Database :: Database Engines/Servers
19
+ Requires-Python: >=3.9
20
+ Description-Content-Type: text/markdown
21
+
22
+ # keyten
23
+
24
+ Python bindings for [Keyten](https://github.com/k10works/keyten), a tiny
25
+ columnar dataframe engine with compressed blocks and a lazy query optimizer.
26
+
27
+ > [!IMPORTANT]
28
+ > `0.0.1` is the packaging bootstrap release. The native dataframe API is
29
+ > under active development and will arrive in a subsequent release.
30
+
31
+ The planned interface follows Keyten's lazy query model:
32
+
33
+ ```python
34
+ import keyten as kt
35
+
36
+ result = (
37
+ kt.scan_csv("trades.csv")
38
+ .filter(kt.col("qty") > 1)
39
+ .select("sym", "qty")
40
+ .collect()
41
+ )
42
+ ```
43
+
44
+ Keyten is licensed under either the MIT License or Apache License 2.0, at your
45
+ option.
46
+
keyten-0.0.1/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # keyten
2
+
3
+ Python bindings for [Keyten](https://github.com/k10works/keyten), a tiny
4
+ columnar dataframe engine with compressed blocks and a lazy query optimizer.
5
+
6
+ > [!IMPORTANT]
7
+ > `0.0.1` is the packaging bootstrap release. The native dataframe API is
8
+ > under active development and will arrive in a subsequent release.
9
+
10
+ The planned interface follows Keyten's lazy query model:
11
+
12
+ ```python
13
+ import keyten as kt
14
+
15
+ result = (
16
+ kt.scan_csv("trades.csv")
17
+ .filter(kt.col("qty") > 1)
18
+ .select("sym", "qty")
19
+ .collect()
20
+ )
21
+ ```
22
+
23
+ Keyten is licensed under either the MIT License or Apache License 2.0, at your
24
+ option.
25
+
@@ -0,0 +1,37 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.27"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "keyten"
7
+ version = "0.0.1"
8
+ description = "Python bindings for the Keyten columnar dataframe engine"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = "MIT OR Apache-2.0"
12
+ license-files = ["LICENSE"]
13
+ authors = [
14
+ { name = "K10 Works" },
15
+ ]
16
+ keywords = ["dataframe", "columnar", "query-engine", "analytics"]
17
+ classifiers = [
18
+ "Development Status :: 2 - Pre-Alpha",
19
+ "Intended Audience :: Developers",
20
+ "Intended Audience :: Science/Research",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3 :: Only",
23
+ "Topic :: Database :: Database Engines/Servers",
24
+ ]
25
+
26
+ [project.urls]
27
+ Homepage = "https://k10.works/"
28
+ Documentation = "https://k10.works/docs/"
29
+ Repository = "https://github.com/k10works/keyten-py"
30
+ Issues = "https://github.com/k10works/keyten-py/issues"
31
+
32
+ [tool.hatch.build.targets.wheel]
33
+ packages = ["src/keyten"]
34
+
35
+ [tool.pytest.ini_options]
36
+ testpaths = ["tests"]
37
+
@@ -0,0 +1,10 @@
1
+ """Python interface for the Keyten columnar dataframe engine.
2
+
3
+ The native dataframe API is under active development. This initial package
4
+ establishes the distribution and its version metadata.
5
+ """
6
+
7
+ __all__ = ["__version__"]
8
+
9
+ __version__ = "0.0.1"
10
+
@@ -0,0 +1,6 @@
1
+ import keyten
2
+
3
+
4
+ def test_version() -> None:
5
+ assert keyten.__version__ == "0.0.1"
6
+