pycoze 0.1.186__tar.gz → 0.1.188__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {pycoze-0.1.186 → pycoze-0.1.188}/PKG-INFO +1 -1
- pycoze-0.1.188/pycoze/automation/browser/__init__.py +0 -0
- pycoze-0.1.188/pycoze/automation/browser/edge_driver_manager.py +72 -0
- pycoze-0.1.188/pycoze/reference/__init__.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze.egg-info/PKG-INFO +1 -1
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze.egg-info/SOURCES.txt +3 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/setup.py +1 -1
- {pycoze-0.1.186 → pycoze-0.1.188}/LICENSE +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/README.md +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/__init__.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/ai/__init__.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/ai/vram_reserve.py +0 -0
- {pycoze-0.1.186/pycoze/reference → pycoze-0.1.188/pycoze/automation}/__init__.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/bot/__init__.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/bot/agent/__init__.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/bot/agent/agent.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/bot/agent/agent_types/__init__.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/bot/agent/agent_types/const.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/bot/agent/agent_types/openai_func_call_agent.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/bot/agent/assistant.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/bot/agent/chat.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/bot/agent_chat.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/bot/bot.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/reference/bot.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/reference/lib.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/reference/tool.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/ui/__init__.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/ui/base.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/ui/color.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/ui/typ.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/ui/ui_def.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/utils/__init__.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/utils/arg.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/utils/env.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze/utils/text_or_file.py +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze.egg-info/dependency_links.txt +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/pycoze.egg-info/top_level.txt +0 -0
- {pycoze-0.1.186 → pycoze-0.1.188}/setup.cfg +0 -0
File without changes
|
@@ -0,0 +1,72 @@
|
|
1
|
+
import os
|
2
|
+
import requests
|
3
|
+
from selenium.webdriver.edge.service import Service
|
4
|
+
from webdriver_manager.microsoft import EdgeChromiumDriverManager
|
5
|
+
|
6
|
+
|
7
|
+
# Function to check network availability
|
8
|
+
def is_network_available():
|
9
|
+
try:
|
10
|
+
# Attempt to access the download URL for Edge Chromium driver to check network connection
|
11
|
+
response = requests.get("https://msedgedriver.azureedge.net/", timeout=5)
|
12
|
+
return response.status_code == 200
|
13
|
+
except requests.ConnectionError:
|
14
|
+
return False
|
15
|
+
|
16
|
+
|
17
|
+
# Function to get the default download path for Edge Chromium driver
|
18
|
+
def get_default_driver_path():
|
19
|
+
manager = EdgeChromiumDriverManager()
|
20
|
+
return manager.install()
|
21
|
+
|
22
|
+
|
23
|
+
# Function to get the driver version from cache
|
24
|
+
def get_cached_driver_version(manager):
|
25
|
+
cache_dir = manager._cache_manager._root_dir # Get the root path of the cache directory
|
26
|
+
os_type = manager._os_system_manager.get_os_type() # Get the OS type
|
27
|
+
driver_name = manager.driver.get_name()
|
28
|
+
|
29
|
+
# List all versions in the cache directory
|
30
|
+
versions_dir = os.path.join(cache_dir, "drivers", driver_name, os_type)
|
31
|
+
if os.path.exists(versions_dir):
|
32
|
+
versions = os.listdir(versions_dir)
|
33
|
+
if versions:
|
34
|
+
# Return the latest version found in the cache
|
35
|
+
return max(versions)
|
36
|
+
return None
|
37
|
+
|
38
|
+
|
39
|
+
# Function to check if the driver has already been downloaded
|
40
|
+
def get_driver_path():
|
41
|
+
network_available = is_network_available()
|
42
|
+
print("Network status:", "Available" if network_available else "Unavailable")
|
43
|
+
manager = EdgeChromiumDriverManager()
|
44
|
+
if network_available:
|
45
|
+
return get_default_driver_path()
|
46
|
+
else:
|
47
|
+
# If no network, check the cache directory
|
48
|
+
driver_version = get_cached_driver_version(manager)
|
49
|
+
if driver_version:
|
50
|
+
driver_name = manager.driver.get_name()
|
51
|
+
os_type = manager._os_system_manager.get_os_type()
|
52
|
+
cache_dir = manager._cache_manager._root_dir
|
53
|
+
|
54
|
+
# Construct the driver path
|
55
|
+
driver_path = os.path.join(cache_dir, "drivers", driver_name, os_type, driver_version)
|
56
|
+
# Check if the driver path exists
|
57
|
+
if os.path.exists(driver_path):
|
58
|
+
return driver_path
|
59
|
+
raise Exception("Network unavailable and no downloaded driver found")
|
60
|
+
|
61
|
+
|
62
|
+
# Function to get the Edge driver service
|
63
|
+
def get_edge_driver_service():
|
64
|
+
driver_path = get_driver_path()
|
65
|
+
|
66
|
+
# Check if the driver path exists
|
67
|
+
if os.path.exists(driver_path):
|
68
|
+
return Service(driver_path)
|
69
|
+
else:
|
70
|
+
raise Exception("Network unavailable and no downloaded driver found")
|
71
|
+
|
72
|
+
|
File without changes
|
@@ -8,6 +8,9 @@ pycoze.egg-info/dependency_links.txt
|
|
8
8
|
pycoze.egg-info/top_level.txt
|
9
9
|
pycoze/ai/__init__.py
|
10
10
|
pycoze/ai/vram_reserve.py
|
11
|
+
pycoze/automation/__init__.py
|
12
|
+
pycoze/automation/browser/__init__.py
|
13
|
+
pycoze/automation/browser/edge_driver_manager.py
|
11
14
|
pycoze/bot/__init__.py
|
12
15
|
pycoze/bot/agent_chat.py
|
13
16
|
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
|