pycoze 0.1.255__tar.gz → 0.1.257__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {pycoze-0.1.255 → pycoze-0.1.257}/PKG-INFO +1 -1
- pycoze-0.1.257/pycoze/api/__init__.py +5 -0
- pycoze-0.1.257/pycoze/api/api.py +7 -0
- {pycoze-0.1.255/pycoze/reference → pycoze-0.1.257/pycoze/api/lib}/__init__.py +0 -0
- pycoze-0.1.257/pycoze/api/lib/window_cls.py +51 -0
- pycoze-0.1.257/pycoze/reference/__init__.py +0 -0
- pycoze-0.1.257/pycoze/utils/__init__.py +9 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/utils/socket.py +3 -2
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze.egg-info/PKG-INFO +1 -1
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze.egg-info/SOURCES.txt +4 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/setup.py +1 -1
- pycoze-0.1.255/pycoze/utils/__init__.py +0 -5
- {pycoze-0.1.255 → pycoze-0.1.257}/LICENSE +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/README.md +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/__init__.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/ai/__init__.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/ai/llm/__init__.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/ai/llm/chat.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/ai/llm/text_to_image_prompt.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/ai/llm/think.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/ai/vram_reserve.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/bot/__init__.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/bot/agent/__init__.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/bot/agent/agent.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/bot/agent/agent_types/__init__.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/bot/agent/agent_types/const.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/bot/agent/assistant.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/bot/agent/chat.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/bot/agent_chat.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/bot/bot.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/reference/bot.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/reference/lib.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/reference/tool.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/reference/workflow.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/ui/__init__.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/ui/base.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/ui/color.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/ui/typ.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/ui/ui_def.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/utils/arg.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/utils/env.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze/utils/text_or_file.py +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze.egg-info/dependency_links.txt +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/pycoze.egg-info/top_level.txt +0 -0
- {pycoze-0.1.255 → pycoze-0.1.257}/setup.cfg +0 -0
File without changes
|
@@ -0,0 +1,51 @@
|
|
1
|
+
import sys
|
2
|
+
import subprocess
|
3
|
+
import os
|
4
|
+
from pycoze import utils
|
5
|
+
|
6
|
+
|
7
|
+
socket = utils.socket
|
8
|
+
|
9
|
+
class WindowCls:
|
10
|
+
|
11
|
+
def get_slected_text(self) -> str:
|
12
|
+
result = socket.post_and_recv_result("get-selected-text", {})
|
13
|
+
return result
|
14
|
+
|
15
|
+
def append_msg(self, message: str, type='info'):
|
16
|
+
if not isinstance(message, str):
|
17
|
+
message = repr(message)
|
18
|
+
socket.post("append-msg", {"message": message, "type": type})
|
19
|
+
|
20
|
+
def show_operation(self, text: str):
|
21
|
+
socket.post("show-operation", {"text": text})
|
22
|
+
|
23
|
+
def screenshot(self, name):
|
24
|
+
socket.post("screenshot", {"name": name})
|
25
|
+
|
26
|
+
def confirm(self, message: str) -> bool:
|
27
|
+
return socket.post_and_recv_result("confirm", {"message": message})
|
28
|
+
|
29
|
+
def maximize(self):
|
30
|
+
socket.post("maximize", {})
|
31
|
+
|
32
|
+
def open_file_with_system(self, file_path, wait: bool):
|
33
|
+
process_fn = subprocess.run if wait else subprocess.Popen
|
34
|
+
if sys.platform.startswith('linux'):
|
35
|
+
process_fn(['xdg-open', file_path])
|
36
|
+
elif sys.platform.startswith('darwin'):
|
37
|
+
process_fn(['open', file_path])
|
38
|
+
elif sys.platform.startswith('win32') or sys.platform.startswith('cygwin'):
|
39
|
+
os.startfile(file_path)
|
40
|
+
else:
|
41
|
+
raise OSError('Unsupported operating system')
|
42
|
+
|
43
|
+
def open_program(self, file_path, wait: bool):
|
44
|
+
process_fn = subprocess.run if wait else subprocess.Popen
|
45
|
+
process_fn([file_path])
|
46
|
+
|
47
|
+
def execute_javaScript(self, js_code: str):
|
48
|
+
result = socket.post_and_recv_result("executeJavaScript", {"code": js_code})
|
49
|
+
if not result["ok"]:
|
50
|
+
raise Exception(result["value"])
|
51
|
+
return result["value"] if "value" in result else None
|
File without changes
|
@@ -0,0 +1,9 @@
|
|
1
|
+
from .arg import read_arg
|
2
|
+
from .env import read_params_file, params, read_json_file
|
3
|
+
from .socket import TcpSocket, socket, socket_subscribe
|
4
|
+
from .text_or_file import to_text
|
5
|
+
|
6
|
+
__all__ = [read_arg,
|
7
|
+
read_params_file, params, read_json_file,
|
8
|
+
TcpSocket, socket, socket_subscribe,
|
9
|
+
to_text]
|
@@ -12,6 +12,10 @@ pycoze/ai/llm/__init__.py
|
|
12
12
|
pycoze/ai/llm/chat.py
|
13
13
|
pycoze/ai/llm/text_to_image_prompt.py
|
14
14
|
pycoze/ai/llm/think.py
|
15
|
+
pycoze/api/__init__.py
|
16
|
+
pycoze/api/api.py
|
17
|
+
pycoze/api/lib/__init__.py
|
18
|
+
pycoze/api/lib/window_cls.py
|
15
19
|
pycoze/bot/__init__.py
|
16
20
|
pycoze/bot/agent_chat.py
|
17
21
|
pycoze/bot/bot.py
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|