vibium 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.
vibium-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License Copyright (c) 2025 Jason R. Huggins
2
+
3
+ Permission is hereby granted, free
4
+ of charge, to any person obtaining a copy of this software and associated
5
+ documentation files (the "Software"), to deal in the Software without
6
+ restriction, including without limitation the rights to use, copy, modify, merge,
7
+ publish, distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to the
9
+ following conditions:
10
+
11
+ The above copyright notice and this permission notice
12
+ (including the next paragraph) shall be included in all copies or substantial
13
+ portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
16
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
18
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
19
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
vibium-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,32 @@
1
+ Metadata-Version: 2.4
2
+ Name: vibium
3
+ Version: 0.0.1
4
+ Summary: AI for UI automation
5
+ Author-email: "Jason R. Huggins" <jrhuggins@gmail.com>
6
+ License-Expression: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Requires-Python: >=3.7
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Dynamic: license-file
12
+
13
+ # Vibium
14
+
15
+ A minimal AI interface for UI automation.
16
+
17
+ ## Installation
18
+
19
+ ```bash
20
+ pip install vibium
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ ```python
26
+ from vibium import Vibium
27
+
28
+ vibe = Vibium(device='iphone')
29
+ vibe.do("open pinthing.com")
30
+ vibe.check("do you see a clock?")
31
+ vibe.check("does the time match the current time?")
32
+ ```
vibium-0.0.1/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # Vibium
2
+
3
+ A minimal AI interface for UI automation.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install vibium
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ from vibium import Vibium
15
+
16
+ vibe = Vibium(device='iphone')
17
+ vibe.do("open pinthing.com")
18
+ vibe.check("do you see a clock?")
19
+ vibe.check("does the time match the current time?")
20
+ ```
@@ -0,0 +1,13 @@
1
+ [project]
2
+ name = "vibium"
3
+ version = "0.0.1"
4
+ description = "AI for UI automation"
5
+ authors = [{ name="Jason R. Huggins", email="jrhuggins@gmail.com" }]
6
+ license = "MIT"
7
+ readme = "README.md"
8
+ requires-python = ">=3.7"
9
+ classifiers = ["Programming Language :: Python :: 3"]
10
+
11
+ [build-system]
12
+ requires = ["setuptools>=61.0"]
13
+ build-backend = "setuptools.build_meta"
vibium-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,9 @@
1
+ class Vibium:
2
+ def __init__(self, device='default'):
3
+ self.device = device
4
+
5
+ def do(self, command):
6
+ print(f"[{self.device}] Doing: {command}")
7
+
8
+ def check(self, question):
9
+ print(f"[{self.device}] Checking: {question}")
@@ -0,0 +1,32 @@
1
+ Metadata-Version: 2.4
2
+ Name: vibium
3
+ Version: 0.0.1
4
+ Summary: AI for UI automation
5
+ Author-email: "Jason R. Huggins" <jrhuggins@gmail.com>
6
+ License-Expression: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Requires-Python: >=3.7
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Dynamic: license-file
12
+
13
+ # Vibium
14
+
15
+ A minimal AI interface for UI automation.
16
+
17
+ ## Installation
18
+
19
+ ```bash
20
+ pip install vibium
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ ```python
26
+ from vibium import Vibium
27
+
28
+ vibe = Vibium(device='iphone')
29
+ vibe.do("open pinthing.com")
30
+ vibe.check("do you see a clock?")
31
+ vibe.check("does the time match the current time?")
32
+ ```
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ vibium/__init__.py
5
+ vibium.egg-info/PKG-INFO
6
+ vibium.egg-info/SOURCES.txt
7
+ vibium.egg-info/dependency_links.txt
8
+ vibium.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ vibium