toolboxv2 0.1.21__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.
- toolboxv2-0.1.21/AUTHORS.rst +13 -0
- toolboxv2-0.1.21/LICENSE +18 -0
- toolboxv2-0.1.21/MANIFEST.in +17 -0
- toolboxv2-0.1.21/PKG-INFO +334 -0
- toolboxv2-0.1.21/README.md +237 -0
- toolboxv2-0.1.21/pyproject.toml +147 -0
- toolboxv2-0.1.21/requirements.txt +22 -0
- toolboxv2-0.1.21/setup.cfg +25 -0
- toolboxv2-0.1.21/setup.py +92 -0
- toolboxv2-0.1.21/toolboxv2/__gui__.py +703 -0
- toolboxv2-0.1.21/toolboxv2/__init__.py +166 -0
- toolboxv2-0.1.21/toolboxv2/__main__.py +1147 -0
- toolboxv2-0.1.21/toolboxv2/flows/__init__.py +74 -0
- toolboxv2-0.1.21/toolboxv2/flows/bg.py +6 -0
- toolboxv2-0.1.21/toolboxv2/flows/bgws.py +28 -0
- toolboxv2-0.1.21/toolboxv2/flows/bottelUp.py +9 -0
- toolboxv2-0.1.21/toolboxv2/flows/core0.py +82 -0
- toolboxv2-0.1.21/toolboxv2/flows/docker.py +24 -0
- toolboxv2-0.1.21/toolboxv2/flows/folder_to_graph_query.py +64 -0
- toolboxv2-0.1.21/toolboxv2/flows/idle.py +5 -0
- toolboxv2-0.1.21/toolboxv2/flows/minicli.py +333 -0
- toolboxv2-0.1.21/toolboxv2/flows/univ.py +52 -0
- toolboxv2-0.1.21/toolboxv2/flows/vad_talk.py +2031 -0
- toolboxv2-0.1.21/toolboxv2/mods/CloudM/AuthManager.py +898 -0
- toolboxv2-0.1.21/toolboxv2/mods/CloudM/ModManager.py +527 -0
- toolboxv2-0.1.21/toolboxv2/mods/CloudM/UI/__init__.py +1 -0
- toolboxv2-0.1.21/toolboxv2/mods/CloudM/UI/widget.py +403 -0
- toolboxv2-0.1.21/toolboxv2/mods/CloudM/UserInstances.py +224 -0
- toolboxv2-0.1.21/toolboxv2/mods/CloudM/__init__.py +9 -0
- toolboxv2-0.1.21/toolboxv2/mods/CloudM/extras.py +360 -0
- toolboxv2-0.1.21/toolboxv2/mods/CloudM/mini.py +144 -0
- toolboxv2-0.1.21/toolboxv2/mods/CloudM/module.py +126 -0
- toolboxv2-0.1.21/toolboxv2/mods/CloudM/types.py +39 -0
- toolboxv2-0.1.21/toolboxv2/mods/CodeVerification.py +719 -0
- toolboxv2-0.1.21/toolboxv2/mods/DB/__init__.py +11 -0
- toolboxv2-0.1.21/toolboxv2/mods/DB/local_instance.py +148 -0
- toolboxv2-0.1.21/toolboxv2/mods/DB/reddis_instance.py +195 -0
- toolboxv2-0.1.21/toolboxv2/mods/DB/tb_adapter.py +332 -0
- toolboxv2-0.1.21/toolboxv2/mods/DB/types.py +32 -0
- toolboxv2-0.1.21/toolboxv2/mods/DashProvider.py +138 -0
- toolboxv2-0.1.21/toolboxv2/mods/DoNext.py +1104 -0
- toolboxv2-0.1.21/toolboxv2/mods/EventManager/__init__.py +4 -0
- toolboxv2-0.1.21/toolboxv2/mods/EventManager/module.py +766 -0
- toolboxv2-0.1.21/toolboxv2/mods/FastApi/__init__.py +4 -0
- toolboxv2-0.1.21/toolboxv2/mods/FastApi/fast_api.py +0 -0
- toolboxv2-0.1.21/toolboxv2/mods/FastApi/fast_api_install.py +460 -0
- toolboxv2-0.1.21/toolboxv2/mods/FastApi/fast_api_main.py +1094 -0
- toolboxv2-0.1.21/toolboxv2/mods/FastApi/fast_lit.py +328 -0
- toolboxv2-0.1.21/toolboxv2/mods/FastApi/fast_nice.py +426 -0
- toolboxv2-0.1.21/toolboxv2/mods/FastApi/manager.py +456 -0
- toolboxv2-0.1.21/toolboxv2/mods/FastApi/util.py +35 -0
- toolboxv2-0.1.21/toolboxv2/mods/FileWidget.py +691 -0
- toolboxv2-0.1.21/toolboxv2/mods/MinimalHtml.py +169 -0
- toolboxv2-0.1.21/toolboxv2/mods/ProcessManager.py +70 -0
- toolboxv2-0.1.21/toolboxv2/mods/SchedulerManager.py +606 -0
- toolboxv2-0.1.21/toolboxv2/mods/SocketManager.py +1358 -0
- toolboxv2-0.1.21/toolboxv2/mods/TestWidget/__init__.py +4 -0
- toolboxv2-0.1.21/toolboxv2/mods/TestWidget/wiget_test.py +145 -0
- toolboxv2-0.1.21/toolboxv2/mods/TruthSeeker/__init__.py +5 -0
- toolboxv2-0.1.21/toolboxv2/mods/TruthSeeker/arXivCrawler.py +472 -0
- toolboxv2-0.1.21/toolboxv2/mods/TruthSeeker/module.py +234 -0
- toolboxv2-0.1.21/toolboxv2/mods/TruthSeeker/nGui.py +1330 -0
- toolboxv2-0.1.21/toolboxv2/mods/TruthSeeker/newui.py +1536 -0
- toolboxv2-0.1.21/toolboxv2/mods/TruthSeeker/one.py +358 -0
- toolboxv2-0.1.21/toolboxv2/mods/TruthSeeker/tests.py +505 -0
- toolboxv2-0.1.21/toolboxv2/mods/WebSocketManager.py +651 -0
- toolboxv2-0.1.21/toolboxv2/mods/WhatsAppTb/__init__.py +4 -0
- toolboxv2-0.1.21/toolboxv2/mods/WhatsAppTb/client.py +1958 -0
- toolboxv2-0.1.21/toolboxv2/mods/WhatsAppTb/module.py +55 -0
- toolboxv2-0.1.21/toolboxv2/mods/WhatsAppTb/server.py +351 -0
- toolboxv2-0.1.21/toolboxv2/mods/WhatsAppTb/utils.py +102 -0
- toolboxv2-0.1.21/toolboxv2/mods/WidgetsProvider/StorageUtil.py +238 -0
- toolboxv2-0.1.21/toolboxv2/mods/WidgetsProvider/__init__.py +6 -0
- toolboxv2-0.1.21/toolboxv2/mods/WidgetsProvider/board_widget.py +168 -0
- toolboxv2-0.1.21/toolboxv2/mods/WidgetsProvider/module.py +65 -0
- toolboxv2-0.1.21/toolboxv2/mods/WidgetsProvider/types.py +16 -0
- toolboxv2-0.1.21/toolboxv2/mods/__init__.py +4 -0
- toolboxv2-0.1.21/toolboxv2/mods/cli_functions.py +617 -0
- toolboxv2-0.1.21/toolboxv2/mods/email_waiting_list.py +111 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/CodingAgent/__init__.py +0 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/CodingAgent/coder.py +276 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/CodingAgent/live.py +3474 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/CodingAgent/parser.py +179 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/CodingAgent/runner.py +419 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/CodingAgent/rust.py +469 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/SearchAgentCluster/__init__.py +0 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/SearchAgentCluster/entry.py +226 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/SearchAgentCluster/search_tool.py +1087 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/__init__.py +5 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/auto_docs.py +723 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/base/Agent/__init__.py +0 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/base/Agent/agent.py +2200 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/base/Agent/builder.py +1162 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/base/Agent/config.py +216 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/base/Agent/executors.py +362 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/base/Agent/utils.py +168 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/base/AgentUtils.py +1743 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/base/Agents.py +2441 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/base/KnowledgeBase.py +1914 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/base/VectorStores/__init__.py +38 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/base/VectorStores/defaults.py +1440 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/base/VectorStores/qdrant_store.py +436 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/base/__init__.py +0 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/extras/__init__.py +0 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/extras/adapter.py +177 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/extras/filter.py +159 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/extras/modes.py +716 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/extras/session.py +58 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/isaa_modi.py +1346 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/lnn/__init__.py +0 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/lnn/binary_test.py +103 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/lnn/dump.py +364 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/lnn/live.py +206 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/lnn/mnist_test.py +105 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/lnn/modality_test.py +74 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/lnn/numbertest.py +94 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/lnn/rand_test.py +59 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/lnn/test.py +742 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/lnn/text_test_mini.py +71 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/lnn/tf.py +295 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/lnn/ttt.py +240 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/module.py +1387 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/requirements.txt +52 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/subtools/__init__.py +7 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/subtools/audo_to_text_assemblyai.py +25 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/subtools/file_loder.py +178 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/subtools/open_weather_map.py +20 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/subtools/web_loder.py +159 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/subtools/youtube_audio.py +41 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/types.py +48 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/ui/__init__.py +0 -0
- toolboxv2-0.1.21/toolboxv2/mods/isaa/ui/nice.py +1132 -0
- toolboxv2-0.1.21/toolboxv2/mods/setup.py +76 -0
- toolboxv2-0.1.21/toolboxv2/mods/talk.py +720 -0
- toolboxv2-0.1.21/toolboxv2/mods/welcome.py +621 -0
- toolboxv2-0.1.21/toolboxv2/mods_dev/__init__.py +0 -0
- toolboxv2-0.1.21/toolboxv2/setup_helper.py +283 -0
- toolboxv2-0.1.21/toolboxv2/tests/__init__.py +2 -0
- toolboxv2-0.1.21/toolboxv2/tests/a_util.py +9 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_mods/__init__.py +0 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_mods/test_toolboxv2.py +347 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/__init__.py +0 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_deamon_proxy_integration.py +82 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_singelton_class.py +37 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_system/__init__.py +0 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_system/test_api.py +26 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_system/test_cache.py +88 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_system/test_conda_runner.py +155 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_system/test_file_handler.py +171 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_system/test_getting_and_closing_app.py +121 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_system/test_ipy_completer.py +110 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_system/test_logger.py +96 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_system/test_main_tool.py +121 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_system/test_session.py +117 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_system/test_state_system.py +69 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_system/test_types.py +110 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_utils/test_toolbox.py +1412 -0
- toolboxv2-0.1.21/toolboxv2/tests/test_web.py +150 -0
- toolboxv2-0.1.21/toolboxv2/tests/web_test/__init__.py +5 -0
- toolboxv2-0.1.21/toolboxv2/tests/web_test/test_main_page.py +163 -0
- toolboxv2-0.1.21/toolboxv2/tests/web_util.py +522 -0
- toolboxv2-0.1.21/toolboxv2/utils/__init__.py +34 -0
- toolboxv2-0.1.21/toolboxv2/utils/brodcast/__init__.py +0 -0
- toolboxv2-0.1.21/toolboxv2/utils/brodcast/client.py +43 -0
- toolboxv2-0.1.21/toolboxv2/utils/brodcast/server.py +37 -0
- toolboxv2-0.1.21/toolboxv2/utils/daemon/__init__.py +7 -0
- toolboxv2-0.1.21/toolboxv2/utils/daemon/daemon_app.py +8 -0
- toolboxv2-0.1.21/toolboxv2/utils/daemon/daemon_util.py +266 -0
- toolboxv2-0.1.21/toolboxv2/utils/extras/Style.py +605 -0
- toolboxv2-0.1.21/toolboxv2/utils/extras/__init__.py +25 -0
- toolboxv2-0.1.21/toolboxv2/utils/extras/base_widget.py +262 -0
- toolboxv2-0.1.21/toolboxv2/utils/extras/blobs.py +285 -0
- toolboxv2-0.1.21/toolboxv2/utils/extras/bottleup.py +223 -0
- toolboxv2-0.1.21/toolboxv2/utils/extras/gist_control.py +91 -0
- toolboxv2-0.1.21/toolboxv2/utils/extras/helper_test_functions.py +62 -0
- toolboxv2-0.1.21/toolboxv2/utils/extras/keword_matcher.py +142 -0
- toolboxv2-0.1.21/toolboxv2/utils/extras/qr.py +18 -0
- toolboxv2-0.1.21/toolboxv2/utils/extras/reqbuilder.py +35 -0
- toolboxv2-0.1.21/toolboxv2/utils/extras/show_and_hide_console.py +23 -0
- toolboxv2-0.1.21/toolboxv2/utils/proxy/__init__.py +7 -0
- toolboxv2-0.1.21/toolboxv2/utils/proxy/prox_util.py +173 -0
- toolboxv2-0.1.21/toolboxv2/utils/proxy/proxy_app.py +8 -0
- toolboxv2-0.1.21/toolboxv2/utils/security/__init__.py +3 -0
- toolboxv2-0.1.21/toolboxv2/utils/security/cryp.py +484 -0
- toolboxv2-0.1.21/toolboxv2/utils/singelton_class.py +15 -0
- toolboxv2-0.1.21/toolboxv2/utils/system/__init__.py +54 -0
- toolboxv2-0.1.21/toolboxv2/utils/system/all_functions_enums.py +392 -0
- toolboxv2-0.1.21/toolboxv2/utils/system/api.py +860 -0
- toolboxv2-0.1.21/toolboxv2/utils/system/cache.py +47 -0
- toolboxv2-0.1.21/toolboxv2/utils/system/conda_runner.py +231 -0
- toolboxv2-0.1.21/toolboxv2/utils/system/file_handler.py +254 -0
- toolboxv2-0.1.21/toolboxv2/utils/system/getting_and_closing_app.py +99 -0
- toolboxv2-0.1.21/toolboxv2/utils/system/ipy_completer.py +75 -0
- toolboxv2-0.1.21/toolboxv2/utils/system/main_tool.py +152 -0
- toolboxv2-0.1.21/toolboxv2/utils/system/session.py +370 -0
- toolboxv2-0.1.21/toolboxv2/utils/system/state_system.py +205 -0
- toolboxv2-0.1.21/toolboxv2/utils/system/tb_logger.py +176 -0
- toolboxv2-0.1.21/toolboxv2/utils/system/types.py +1979 -0
- toolboxv2-0.1.21/toolboxv2/utils/toolbox.py +2048 -0
- toolboxv2-0.1.21/toolboxv2/web/webapp/icon-1024.png +0 -0
- toolboxv2-0.1.21/toolboxv2/web/webapp/icon-192.png +0 -0
- toolboxv2-0.1.21/toolboxv2/web/webapp/icon-512.png +0 -0
- toolboxv2-0.1.21/toolboxv2/web/webapp/manifest.json +20 -0
- toolboxv2-0.1.21/toolboxv2.egg-info/PKG-INFO +334 -0
- toolboxv2-0.1.21/toolboxv2.egg-info/SOURCES.txt +209 -0
- toolboxv2-0.1.21/toolboxv2.egg-info/dependency_links.txt +23 -0
- toolboxv2-0.1.21/toolboxv2.egg-info/entry_points.txt +2 -0
- toolboxv2-0.1.21/toolboxv2.egg-info/not-zip-safe +1 -0
- toolboxv2-0.1.21/toolboxv2.egg-info/requires.txt +80 -0
- toolboxv2-0.1.21/toolboxv2.egg-info/top_level.txt +1 -0
toolboxv2-0.1.21/LICENSE
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
**ToolBoxV2 License v1.0 (Custom)**
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022โ2025, Markin Hausmanns
|
|
4
|
+
|
|
5
|
+
1. **Attribution:**
|
|
6
|
+
Any public or private use must include a visible reference to the original source ([https://github.com/MarkinHaus/ToolBoxV2](https://github.com/MarkinHaus/ToolBoxV2)).
|
|
7
|
+
|
|
8
|
+
2. **Free Use:**
|
|
9
|
+
Individuals, non-commercial projects, and groups with fewer than 10 members may modify, host, and use the code as long as this notice is retained.
|
|
10
|
+
|
|
11
|
+
3. **Commercial Use:**
|
|
12
|
+
Organizations with more than 10 employees or generating over โฌ100,000/year in revenue through or in connection with ToolBoxV2 must obtain a commercial license. Contact: [contact@simplecore.app](mailto:contact@simplecore.app)
|
|
13
|
+
|
|
14
|
+
4. **Modified Versions:**
|
|
15
|
+
Publicly accessible modified versions must link to the original project and clearly disclose that changes have been made.
|
|
16
|
+
|
|
17
|
+
5. **Liability:**
|
|
18
|
+
The code is provided without warranty. No liability is accepted for any damages resulting from its use.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
include LICENSE
|
|
2
|
+
include README.md
|
|
3
|
+
include requirements.txt
|
|
4
|
+
include pyproject.toml
|
|
5
|
+
include toolboxv2/web
|
|
6
|
+
include toolboxv2/runabel/minicli.MarkinHaus.d1dca19fde2d8557f997162043fd1dd7.gist
|
|
7
|
+
include toolboxv2/web/webapp
|
|
8
|
+
include toolboxv2/web/webapp/icon-192.png
|
|
9
|
+
include toolboxv2/web/webapp/icon-512.png
|
|
10
|
+
include toolboxv2/web/webapp/icon-1024.png
|
|
11
|
+
include toolboxv2/web/webapp/manifest.json
|
|
12
|
+
include toolboxv2/data/widgets.exe
|
|
13
|
+
exclude toolboxv2/client_secret.json
|
|
14
|
+
recursive-exclude * __pycache__
|
|
15
|
+
recursive-exclude * *.py[co]
|
|
16
|
+
recursive-exclude * node_modules
|
|
17
|
+
|
|
@@ -0,0 +1,334 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: toolboxv2
|
|
3
|
+
Version: 0.1.21
|
|
4
|
+
Summary: Add your description here
|
|
5
|
+
Home-page: https://github.com/MarkinHaus/ToolBoxV2
|
|
6
|
+
Author: Markin Hausmanns
|
|
7
|
+
Author-email: Markinhausmanns@gmail.com
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
License-File: AUTHORS.rst
|
|
12
|
+
Requires-Dist: aiohttp>=3.11.13
|
|
13
|
+
Requires-Dist: cachetools>=5.5.2
|
|
14
|
+
Requires-Dist: cryptography>=44.0.1
|
|
15
|
+
Requires-Dist: fastapi>=0.115.9
|
|
16
|
+
Requires-Dist: fuzzywuzzy>=0.18.0
|
|
17
|
+
Requires-Dist: ipython>=8.32.0
|
|
18
|
+
Requires-Dist: networkx>=3.4.2
|
|
19
|
+
Requires-Dist: numpy>=2.2.3
|
|
20
|
+
Requires-Dist: packaging>=24.2
|
|
21
|
+
Requires-Dist: pyjwt>=2.10.1
|
|
22
|
+
Requires-Dist: python-dotenv>=1.0.1
|
|
23
|
+
Requires-Dist: pyyaml>=6.0.2
|
|
24
|
+
Requires-Dist: qrcode>=8.0
|
|
25
|
+
Requires-Dist: radon>=6.0.1
|
|
26
|
+
Requires-Dist: redis>=5.2.1
|
|
27
|
+
Requires-Dist: reedsolo>=1.7.0
|
|
28
|
+
Requires-Dist: requests>=2.32.3
|
|
29
|
+
Requires-Dist: scikit-learn>=1.6.1
|
|
30
|
+
Requires-Dist: toml>=0.10.2
|
|
31
|
+
Requires-Dist: tqdm>=4.67.1
|
|
32
|
+
Requires-Dist: transformers>=4.49.0
|
|
33
|
+
Requires-Dist: watchfiles>=1.0.4
|
|
34
|
+
Requires-Dist: webauthn>=2.5.1
|
|
35
|
+
Requires-Dist: schedule>=1.2.2
|
|
36
|
+
Requires-Dist: websockets>=15.0.1
|
|
37
|
+
Requires-Dist: mailjet-rest>=1.3.4
|
|
38
|
+
Requires-Dist: psutil>=7.0.0
|
|
39
|
+
Provides-Extra: isaa
|
|
40
|
+
Requires-Dist: starlette; extra == "isaa"
|
|
41
|
+
Requires-Dist: litellm; extra == "isaa"
|
|
42
|
+
Requires-Dist: pebble; extra == "isaa"
|
|
43
|
+
Requires-Dist: transformers; extra == "isaa"
|
|
44
|
+
Requires-Dist: networkx; extra == "isaa"
|
|
45
|
+
Requires-Dist: numpy; extra == "isaa"
|
|
46
|
+
Requires-Dist: tiktoken; extra == "isaa"
|
|
47
|
+
Requires-Dist: chromadb; extra == "isaa"
|
|
48
|
+
Requires-Dist: openai; extra == "isaa"
|
|
49
|
+
Requires-Dist: whisper; extra == "isaa"
|
|
50
|
+
Requires-Dist: gtts; extra == "isaa"
|
|
51
|
+
Requires-Dist: pydub; extra == "isaa"
|
|
52
|
+
Requires-Dist: websockets; extra == "isaa"
|
|
53
|
+
Requires-Dist: keyboard; extra == "isaa"
|
|
54
|
+
Requires-Dist: pyperclip; extra == "isaa"
|
|
55
|
+
Requires-Dist: pygments; extra == "isaa"
|
|
56
|
+
Requires-Dist: beautifulsoup4; extra == "isaa"
|
|
57
|
+
Requires-Dist: duckduckgo_search; extra == "isaa"
|
|
58
|
+
Requires-Dist: langchain; extra == "isaa"
|
|
59
|
+
Requires-Dist: langchain_community; extra == "isaa"
|
|
60
|
+
Requires-Dist: langchain_core; extra == "isaa"
|
|
61
|
+
Requires-Dist: Pebble; extra == "isaa"
|
|
62
|
+
Requires-Dist: Requests; extra == "isaa"
|
|
63
|
+
Requires-Dist: torch; extra == "isaa"
|
|
64
|
+
Requires-Dist: tqdm; extra == "isaa"
|
|
65
|
+
Requires-Dist: utils; extra == "isaa"
|
|
66
|
+
Requires-Dist: tokenizers; extra == "isaa"
|
|
67
|
+
Requires-Dist: graphiti-core[anthropic,google-genai,groq]>=0.10.5; extra == "isaa"
|
|
68
|
+
Requires-Dist: sentence-transformers; extra == "isaa"
|
|
69
|
+
Requires-Dist: browser-use>=0.1.40; extra == "isaa"
|
|
70
|
+
Requires-Dist: python-git>=2018.2.1; extra == "isaa"
|
|
71
|
+
Requires-Dist: rapidfuzz>=3.12.2; extra == "isaa"
|
|
72
|
+
Requires-Dist: astor>=0.8.1; extra == "isaa"
|
|
73
|
+
Requires-Dist: taichi>=1.7.3; extra == "isaa"
|
|
74
|
+
Requires-Dist: nest-asyncio>=1.6.0; extra == "isaa"
|
|
75
|
+
Requires-Dist: schedule>=1.2.2; extra == "isaa"
|
|
76
|
+
Requires-Dist: python-levenshtein>=0.27.1; extra == "isaa"
|
|
77
|
+
Requires-Dist: langchain-google-genai>=2.1.2; extra == "isaa"
|
|
78
|
+
Requires-Dist: qdrant-client[fastembed]>=1.13.3; extra == "isaa"
|
|
79
|
+
Requires-Dist: pyvis>=0.3.2; extra == "isaa"
|
|
80
|
+
Requires-Dist: matplotlib>=3.10.1; extra == "isaa"
|
|
81
|
+
Requires-Dist: redis; extra == "isaa"
|
|
82
|
+
Requires-Dist: seaborn>=0.13.2; extra == "isaa"
|
|
83
|
+
Requires-Dist: google-adk>=0.3.0; extra == "isaa"
|
|
84
|
+
Requires-Dist: python-a2a[all]>=0.5.1; extra == "isaa"
|
|
85
|
+
Requires-Dist: mcp>=1.6.0; extra == "isaa"
|
|
86
|
+
Requires-Dist: google-cloud-aiplatform>=1.90.0; extra == "isaa"
|
|
87
|
+
Requires-Dist: pyyaml>=6.0.2; extra == "isaa"
|
|
88
|
+
Requires-Dist: restrictedpython>=8.0; extra == "isaa"
|
|
89
|
+
Requires-Dist: uvicorn>=0.34.0; extra == "isaa"
|
|
90
|
+
Requires-Dist: httpx>=0.28.1; extra == "isaa"
|
|
91
|
+
Requires-Dist: fastapi>=0.115.12; extra == "isaa"
|
|
92
|
+
Dynamic: author
|
|
93
|
+
Dynamic: author-email
|
|
94
|
+
Dynamic: home-page
|
|
95
|
+
Dynamic: license-file
|
|
96
|
+
Dynamic: requires-python
|
|
97
|
+
|
|
98
|
+
# ToolBoxV2 ๐งฐ
|
|
99
|
+
|
|
100
|
+
[](https://pypi.python.org/pypi/ToolBoxV2)
|
|
101
|
+
[](https://www.buymeacoffee.com/markinhaus)
|
|
102
|
+
|
|
103
|
+
A flexible modular framework for tools, functions, and complete applications โ deployable locally, on the web, or as a desktop/mobile app.
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
## ๐ Overview
|
|
108
|
+
|
|
109
|
+
ToolBoxV2 combines a Python backend library with a Rust web/desktop server (Actix) and a cross-platform UI framework (Tauri + tbjs). This architecture enables the creation of versatile applications accessible through various interfaces.
|
|
110
|
+
|
|
111
|
+

|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
## ๐ฏ Goal
|
|
116
|
+
|
|
117
|
+
The primary goal of ToolBoxV2 is to provide a flexible platform that enables developers, end-users, and small to medium-sized businesses to efficiently create, customize, and use applications. It aims to:
|
|
118
|
+
* Execute applications seamlessly.
|
|
119
|
+
* Integrate diverse functionalities.
|
|
120
|
+
* Ensure system-independence.
|
|
121
|
+
|
|
122
|
+
The underlying system, built on a monolithic modular architecture, combines the advantages of both approaches, enabling intuitive interaction with the digital world. It connects various components and provides utility functions accessible from anywhere. This platform promotes creative collaboration and eases access to digital resources.
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
## ๐ฏ Target Audiences & Use Cases
|
|
127
|
+
|
|
128
|
+
### ๐ฉโ๐ป For Developers
|
|
129
|
+
|
|
130
|
+
Utilize ToolBoxV2 as a framework to:
|
|
131
|
+
* Create custom functions, widgets, or complete mini-applications.
|
|
132
|
+
* Leverage existing modules (`mods`) or extend them with new components.
|
|
133
|
+
* Build web, desktop, or mobile applications using a unified code stack (Python, Rust, Web Technologies).
|
|
134
|
+
* Customize the user interface via the web frontend (tbjs).
|
|
135
|
+
|
|
136
|
+
### ๐ For End Users
|
|
137
|
+
|
|
138
|
+
Access and use a variety of pre-built applications and functions:
|
|
139
|
+
* Directly in a web browser, or as a native desktop/mobile application (powered by Tauri).
|
|
140
|
+
* No prior technical knowledge required.
|
|
141
|
+
* Access flexible tools for tasks such as calendar management, note-taking, image diffusion, quote generation, etc.
|
|
142
|
+
* Personalize the user interface to meet individual needs.
|
|
143
|
+
|
|
144
|
+
### ๐ข For Businesses / Operators
|
|
145
|
+
|
|
146
|
+
Deploy ToolBoxV2 as a customizable internal management system for:
|
|
147
|
+
* Self-hosted and highly adaptable solutions.
|
|
148
|
+
* Project, process, or employee management.
|
|
149
|
+
* Integration of proprietary modules and functions.
|
|
150
|
+
* Scalability suitable for small to medium-sized enterprises.
|
|
151
|
+
* Modular, API-ready, and easily extensible.
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
## ๐ Installation
|
|
156
|
+
|
|
157
|
+
We offer several ways to install ToolBoxV2, choose the one that best suits your needs!
|
|
158
|
+
|
|
159
|
+
### ๐ฅ Recommended: Zero the Hero Universal Installer (Easiest)
|
|
160
|
+
|
|
161
|
+
This is the recommended method for most users on **Linux, macOS, and Windows (via WSL or Git Bash)**. The "Zero the Hero" script intelligently handles Python installation (if needed), sets up a dedicated virtual environment, installs ToolBoxV2 Core, and makes the `tb` command available.
|
|
162
|
+
|
|
163
|
+
1. **Download the installer:**
|
|
164
|
+
```bash
|
|
165
|
+
# Using curl
|
|
166
|
+
curl -sSL -o install_toolbox.sh https://raw.githubusercontent.com/MarkinHaus/ToolBoxV2/refs/heads/master/installer.sh
|
|
167
|
+
# Or using wget
|
|
168
|
+
wget -qO install_toolbox.sh https://raw.githubusercontent.com/MarkinHaus/ToolBoxV2/refs/heads/master/installer.sh
|
|
169
|
+
```
|
|
170
|
+
2. **Make it executable:**
|
|
171
|
+
```bash
|
|
172
|
+
chmod +x install_toolbox.sh
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
3. **Run the installer:**
|
|
176
|
+
```bash
|
|
177
|
+
./install_toolbox.sh
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
4. **Follow on-screen instructions.** The script will:
|
|
181
|
+
* โ
Check for and offer to install required Python version (default: 3.11).
|
|
182
|
+
* โ
Create an isolated environment for ToolBoxV2 (usually in `~/.local/share/ToolBoxV2` or `~/Applications/ToolBoxV2`).
|
|
183
|
+
* โ
Install ToolBoxV2 Core using `pip` by default.
|
|
184
|
+
* โ
Expose the `tb` command (usually via a symlink in `~/.local/bin/`).
|
|
185
|
+
* ๐ Run `tb -init` to finalize setup.
|
|
186
|
+
|
|
187
|
+
**Customization:**
|
|
188
|
+
The script accepts optional arguments (e.g., `--version=0.5.0`, `--source=git`, `--manager=uv`, `--isaa`, `--dev`). If no arguments are given, it looks for an `init.config` file in the same directory. For details, run:
|
|
189
|
+
```bash
|
|
190
|
+
./install_toolbox.sh --help
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
### ๐ป Advanced / Alternative Methods
|
|
196
|
+
|
|
197
|
+
#### 1. Python Package (Direct Installation)
|
|
198
|
+
|
|
199
|
+
For users who prefer to manage their Python environments manually.
|
|
200
|
+
|
|
201
|
+
**Using `pip`:**
|
|
202
|
+
```bash
|
|
203
|
+
# Ensure you have Python 3.11 and pip installed
|
|
204
|
+
# Recommended: Create and activate a virtual environment first!
|
|
205
|
+
# python -m venv .venv && source .venv/bin/activate
|
|
206
|
+
|
|
207
|
+
pip install ToolBoxV2
|
|
208
|
+
# To install with optional extras (e.g., isaa, dev):
|
|
209
|
+
# pip install "ToolBoxV2[isaa,dev]"
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
**Using `uv` (a fast Python package installer & resolver):**
|
|
213
|
+
```bash
|
|
214
|
+
|
|
215
|
+
uv pip install ToolBoxV2
|
|
216
|
+
# To install with optional extras:
|
|
217
|
+
# uv pip install "ToolBoxV2[isaa,dev]"
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
After installation with pip or uv, you may need to initialize ToolBoxV2 manually:
|
|
221
|
+
```bash
|
|
222
|
+
tb -init
|
|
223
|
+
```
|
|
224
|
+
Ensure the directory containing the `tb` script (e.g., `~/.local/bin` for user installs, or your venv's `bin` directory) is in your system's `PATH`.
|
|
225
|
+
|
|
226
|
+
#### 2. From Source (For Developers / Bleeding Edge)
|
|
227
|
+
|
|
228
|
+
If you want to contribute or use the very latest (potentially unstable) code:
|
|
229
|
+
|
|
230
|
+
```bash
|
|
231
|
+
git clone https://github.com/MarkinHaus/ToolBoxV2.git
|
|
232
|
+
cd ToolBoxV2
|
|
233
|
+
|
|
234
|
+
# IMPORTANT: Set up and activate a Python virtual environment
|
|
235
|
+
# Example using Python's built-in venv:
|
|
236
|
+
# python3 -m venv .venv
|
|
237
|
+
# source .venv/bin/activate
|
|
238
|
+
#
|
|
239
|
+
# Example using uv:
|
|
240
|
+
# uv venv .venv --python 3.11 # or your desired Python version
|
|
241
|
+
# source .venv/bin/activate
|
|
242
|
+
|
|
243
|
+
# Install in editable mode:
|
|
244
|
+
echo "Choose your preferred installation method:"
|
|
245
|
+
|
|
246
|
+
echo " Option A: Using pip"
|
|
247
|
+
echo " pip install -e \".[dev,isaa]\" # Install with dev and isaa extras"
|
|
248
|
+
echo " # or just: pip install -e ."
|
|
249
|
+
|
|
250
|
+
echo " Option B: Using uv"
|
|
251
|
+
echo " uv pip install -e \".[dev,isaa]\" # Install with dev and isaa extras"
|
|
252
|
+
echo " # or just: uv pip install -e ."
|
|
253
|
+
|
|
254
|
+
# Your existing script for Python environment setup (if it offers more specific dev setup):
|
|
255
|
+
# If you have specific Python dev environment needs beyond a simple venv, you can use:
|
|
256
|
+
# chmod +x install_python_env.sh
|
|
257
|
+
# ./install_python_env.sh
|
|
258
|
+
|
|
259
|
+
# Initialize Git hooks (for contributors)
|
|
260
|
+
bash .github/hooks/setup_hooks.sh
|
|
261
|
+
|
|
262
|
+
# Initialize ToolBoxV2
|
|
263
|
+
tb -init
|
|
264
|
+
```
|
|
265
|
+
|
|
266
|
+
---
|
|
267
|
+
|
|
268
|
+
### ๐ฆ Platform-Specific Installers (Desktop Application)
|
|
269
|
+
|
|
270
|
+
If ToolBoxV2 includes a bundled desktop application, look for platform-specific installers (e.g., `.dmg`, `.exe`, `.deb`, `.rpm`) on our [**GitHub Releases Page**](https://github.com/MarkinHaus/ToolBoxV2/releases).
|
|
271
|
+
|
|
272
|
+
These installers typically bundle everything needed and provide a native installation experience.
|
|
273
|
+
|
|
274
|
+
1. Go to the [Releases Page](https://github.com/MarkinHaus/ToolBoxV2/releases).
|
|
275
|
+
2. Download the appropriate installer for your operating system (e.g., `simple-core_0.1.0_aarch64.dmg` for macOS, `simple-core_0.1.0_x64-setup.exe
|
|
276
|
+
` for Windows).
|
|
277
|
+
3. Run the installer and follow the on-screen instructions.
|
|
278
|
+
|
|
279
|
+
---
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
### ๐ฅ๏ธ Full Stack Desktop/Web Application (Tauri + Web)
|
|
283
|
+
|
|
284
|
+
This setup includes the Python backend, Rust server, and Tauri/Web frontend.
|
|
285
|
+
|
|
286
|
+
**Prerequisites:**
|
|
287
|
+
* Python 3.11 or higher
|
|
288
|
+
* [Rust and Cargo](https://www.rust-lang.org/tools/install)
|
|
289
|
+
* [Node.js](https://nodejs.org/) (which includes npm)
|
|
290
|
+
* Tauri CLI: `cargo install tauri-cli`
|
|
291
|
+
|
|
292
|
+
for execution details use [package.json](toolboxv2/package.json)
|
|
293
|
+
or run tb --help
|
|
294
|
+
|
|
295
|
+
---
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
## ๐งช CI/CD & Deployment
|
|
299
|
+
|
|
300
|
+
Automated processes are managed using GitHub Actions for:
|
|
301
|
+
* ๐ **Build & Test**: Validating both Rust and Python components.
|
|
302
|
+
* ๐ **Release**: Publishing to PyPI, building Tauri applications, and potentially Docker images.
|
|
303
|
+
|
|
304
|
+
---
|
|
305
|
+
|
|
306
|
+
## ๐ฑ Example Projects & Ideas
|
|
307
|
+
|
|
308
|
+
ToolBoxV2 can be used to build a wide range of applications, including:
|
|
309
|
+
* ๐ Link shortener
|
|
310
|
+
* ๐ง Live notes with versioning
|
|
311
|
+
* ๐จ Diffusion system for generating visual assets
|
|
312
|
+
* ๐
Calendar and scheduling tools
|
|
313
|
+
* ๐ Quote/Offer generation system
|
|
314
|
+
* ๐ฎ Multiplayer TicTacToe
|
|
315
|
+
* ๐ค Chat/Voice bots with P2P communication capabilities
|
|
316
|
+
|
|
317
|
+
---
|
|
318
|
+
|
|
319
|
+
## ๐ Learn More / Further Information
|
|
320
|
+
|
|
321
|
+
* [๐ฆ Current Installer (Web Demo/Entry)](https://simplecore.app/web/core0/Installer.html)
|
|
322
|
+
* [๐ Documentation (WIP)](https://markinhaus.github.io/ToolBoxV2/)
|
|
323
|
+
* [๐ PyPI Package](https://pypi.org/project/ToolBoxV2)
|
|
324
|
+
* [๐ GitHub Repository](https://github.com/MarkinHaus/ToolBoxV2)
|
|
325
|
+
|
|
326
|
+
---
|
|
327
|
+
## ๐ License
|
|
328
|
+
|
|
329
|
+
This project is distributed under a custom license. Please refer to the [LICENSE](./LICENSE) file in the repository for detailed terms and conditions.
|
|
330
|
+
|
|
331
|
+
---
|
|
332
|
+
|
|
333
|
+
ยฉ 2022โ2025 Markin Hausmanns โ All rights reserved.
|
|
334
|
+
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
# ToolBoxV2 ๐งฐ
|
|
2
|
+
|
|
3
|
+
[](https://pypi.python.org/pypi/ToolBoxV2)
|
|
4
|
+
[](https://www.buymeacoffee.com/markinhaus)
|
|
5
|
+
|
|
6
|
+
A flexible modular framework for tools, functions, and complete applications โ deployable locally, on the web, or as a desktop/mobile app.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## ๐ Overview
|
|
11
|
+
|
|
12
|
+
ToolBoxV2 combines a Python backend library with a Rust web/desktop server (Actix) and a cross-platform UI framework (Tauri + tbjs). This architecture enables the creation of versatile applications accessible through various interfaces.
|
|
13
|
+
|
|
14
|
+

|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## ๐ฏ Goal
|
|
19
|
+
|
|
20
|
+
The primary goal of ToolBoxV2 is to provide a flexible platform that enables developers, end-users, and small to medium-sized businesses to efficiently create, customize, and use applications. It aims to:
|
|
21
|
+
* Execute applications seamlessly.
|
|
22
|
+
* Integrate diverse functionalities.
|
|
23
|
+
* Ensure system-independence.
|
|
24
|
+
|
|
25
|
+
The underlying system, built on a monolithic modular architecture, combines the advantages of both approaches, enabling intuitive interaction with the digital world. It connects various components and provides utility functions accessible from anywhere. This platform promotes creative collaboration and eases access to digital resources.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## ๐ฏ Target Audiences & Use Cases
|
|
30
|
+
|
|
31
|
+
### ๐ฉโ๐ป For Developers
|
|
32
|
+
|
|
33
|
+
Utilize ToolBoxV2 as a framework to:
|
|
34
|
+
* Create custom functions, widgets, or complete mini-applications.
|
|
35
|
+
* Leverage existing modules (`mods`) or extend them with new components.
|
|
36
|
+
* Build web, desktop, or mobile applications using a unified code stack (Python, Rust, Web Technologies).
|
|
37
|
+
* Customize the user interface via the web frontend (tbjs).
|
|
38
|
+
|
|
39
|
+
### ๐ For End Users
|
|
40
|
+
|
|
41
|
+
Access and use a variety of pre-built applications and functions:
|
|
42
|
+
* Directly in a web browser, or as a native desktop/mobile application (powered by Tauri).
|
|
43
|
+
* No prior technical knowledge required.
|
|
44
|
+
* Access flexible tools for tasks such as calendar management, note-taking, image diffusion, quote generation, etc.
|
|
45
|
+
* Personalize the user interface to meet individual needs.
|
|
46
|
+
|
|
47
|
+
### ๐ข For Businesses / Operators
|
|
48
|
+
|
|
49
|
+
Deploy ToolBoxV2 as a customizable internal management system for:
|
|
50
|
+
* Self-hosted and highly adaptable solutions.
|
|
51
|
+
* Project, process, or employee management.
|
|
52
|
+
* Integration of proprietary modules and functions.
|
|
53
|
+
* Scalability suitable for small to medium-sized enterprises.
|
|
54
|
+
* Modular, API-ready, and easily extensible.
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## ๐ Installation
|
|
59
|
+
|
|
60
|
+
We offer several ways to install ToolBoxV2, choose the one that best suits your needs!
|
|
61
|
+
|
|
62
|
+
### ๐ฅ Recommended: Zero the Hero Universal Installer (Easiest)
|
|
63
|
+
|
|
64
|
+
This is the recommended method for most users on **Linux, macOS, and Windows (via WSL or Git Bash)**. The "Zero the Hero" script intelligently handles Python installation (if needed), sets up a dedicated virtual environment, installs ToolBoxV2 Core, and makes the `tb` command available.
|
|
65
|
+
|
|
66
|
+
1. **Download the installer:**
|
|
67
|
+
```bash
|
|
68
|
+
# Using curl
|
|
69
|
+
curl -sSL -o install_toolbox.sh https://raw.githubusercontent.com/MarkinHaus/ToolBoxV2/refs/heads/master/installer.sh
|
|
70
|
+
# Or using wget
|
|
71
|
+
wget -qO install_toolbox.sh https://raw.githubusercontent.com/MarkinHaus/ToolBoxV2/refs/heads/master/installer.sh
|
|
72
|
+
```
|
|
73
|
+
2. **Make it executable:**
|
|
74
|
+
```bash
|
|
75
|
+
chmod +x install_toolbox.sh
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
3. **Run the installer:**
|
|
79
|
+
```bash
|
|
80
|
+
./install_toolbox.sh
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
4. **Follow on-screen instructions.** The script will:
|
|
84
|
+
* โ
Check for and offer to install required Python version (default: 3.11).
|
|
85
|
+
* โ
Create an isolated environment for ToolBoxV2 (usually in `~/.local/share/ToolBoxV2` or `~/Applications/ToolBoxV2`).
|
|
86
|
+
* โ
Install ToolBoxV2 Core using `pip` by default.
|
|
87
|
+
* โ
Expose the `tb` command (usually via a symlink in `~/.local/bin/`).
|
|
88
|
+
* ๐ Run `tb -init` to finalize setup.
|
|
89
|
+
|
|
90
|
+
**Customization:**
|
|
91
|
+
The script accepts optional arguments (e.g., `--version=0.5.0`, `--source=git`, `--manager=uv`, `--isaa`, `--dev`). If no arguments are given, it looks for an `init.config` file in the same directory. For details, run:
|
|
92
|
+
```bash
|
|
93
|
+
./install_toolbox.sh --help
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
---
|
|
97
|
+
|
|
98
|
+
### ๐ป Advanced / Alternative Methods
|
|
99
|
+
|
|
100
|
+
#### 1. Python Package (Direct Installation)
|
|
101
|
+
|
|
102
|
+
For users who prefer to manage their Python environments manually.
|
|
103
|
+
|
|
104
|
+
**Using `pip`:**
|
|
105
|
+
```bash
|
|
106
|
+
# Ensure you have Python 3.11 and pip installed
|
|
107
|
+
# Recommended: Create and activate a virtual environment first!
|
|
108
|
+
# python -m venv .venv && source .venv/bin/activate
|
|
109
|
+
|
|
110
|
+
pip install ToolBoxV2
|
|
111
|
+
# To install with optional extras (e.g., isaa, dev):
|
|
112
|
+
# pip install "ToolBoxV2[isaa,dev]"
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
**Using `uv` (a fast Python package installer & resolver):**
|
|
116
|
+
```bash
|
|
117
|
+
|
|
118
|
+
uv pip install ToolBoxV2
|
|
119
|
+
# To install with optional extras:
|
|
120
|
+
# uv pip install "ToolBoxV2[isaa,dev]"
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
After installation with pip or uv, you may need to initialize ToolBoxV2 manually:
|
|
124
|
+
```bash
|
|
125
|
+
tb -init
|
|
126
|
+
```
|
|
127
|
+
Ensure the directory containing the `tb` script (e.g., `~/.local/bin` for user installs, or your venv's `bin` directory) is in your system's `PATH`.
|
|
128
|
+
|
|
129
|
+
#### 2. From Source (For Developers / Bleeding Edge)
|
|
130
|
+
|
|
131
|
+
If you want to contribute or use the very latest (potentially unstable) code:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
git clone https://github.com/MarkinHaus/ToolBoxV2.git
|
|
135
|
+
cd ToolBoxV2
|
|
136
|
+
|
|
137
|
+
# IMPORTANT: Set up and activate a Python virtual environment
|
|
138
|
+
# Example using Python's built-in venv:
|
|
139
|
+
# python3 -m venv .venv
|
|
140
|
+
# source .venv/bin/activate
|
|
141
|
+
#
|
|
142
|
+
# Example using uv:
|
|
143
|
+
# uv venv .venv --python 3.11 # or your desired Python version
|
|
144
|
+
# source .venv/bin/activate
|
|
145
|
+
|
|
146
|
+
# Install in editable mode:
|
|
147
|
+
echo "Choose your preferred installation method:"
|
|
148
|
+
|
|
149
|
+
echo " Option A: Using pip"
|
|
150
|
+
echo " pip install -e \".[dev,isaa]\" # Install with dev and isaa extras"
|
|
151
|
+
echo " # or just: pip install -e ."
|
|
152
|
+
|
|
153
|
+
echo " Option B: Using uv"
|
|
154
|
+
echo " uv pip install -e \".[dev,isaa]\" # Install with dev and isaa extras"
|
|
155
|
+
echo " # or just: uv pip install -e ."
|
|
156
|
+
|
|
157
|
+
# Your existing script for Python environment setup (if it offers more specific dev setup):
|
|
158
|
+
# If you have specific Python dev environment needs beyond a simple venv, you can use:
|
|
159
|
+
# chmod +x install_python_env.sh
|
|
160
|
+
# ./install_python_env.sh
|
|
161
|
+
|
|
162
|
+
# Initialize Git hooks (for contributors)
|
|
163
|
+
bash .github/hooks/setup_hooks.sh
|
|
164
|
+
|
|
165
|
+
# Initialize ToolBoxV2
|
|
166
|
+
tb -init
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
---
|
|
170
|
+
|
|
171
|
+
### ๐ฆ Platform-Specific Installers (Desktop Application)
|
|
172
|
+
|
|
173
|
+
If ToolBoxV2 includes a bundled desktop application, look for platform-specific installers (e.g., `.dmg`, `.exe`, `.deb`, `.rpm`) on our [**GitHub Releases Page**](https://github.com/MarkinHaus/ToolBoxV2/releases).
|
|
174
|
+
|
|
175
|
+
These installers typically bundle everything needed and provide a native installation experience.
|
|
176
|
+
|
|
177
|
+
1. Go to the [Releases Page](https://github.com/MarkinHaus/ToolBoxV2/releases).
|
|
178
|
+
2. Download the appropriate installer for your operating system (e.g., `simple-core_0.1.0_aarch64.dmg` for macOS, `simple-core_0.1.0_x64-setup.exe
|
|
179
|
+
` for Windows).
|
|
180
|
+
3. Run the installer and follow the on-screen instructions.
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
### ๐ฅ๏ธ Full Stack Desktop/Web Application (Tauri + Web)
|
|
186
|
+
|
|
187
|
+
This setup includes the Python backend, Rust server, and Tauri/Web frontend.
|
|
188
|
+
|
|
189
|
+
**Prerequisites:**
|
|
190
|
+
* Python 3.11 or higher
|
|
191
|
+
* [Rust and Cargo](https://www.rust-lang.org/tools/install)
|
|
192
|
+
* [Node.js](https://nodejs.org/) (which includes npm)
|
|
193
|
+
* Tauri CLI: `cargo install tauri-cli`
|
|
194
|
+
|
|
195
|
+
for execution details use [package.json](toolboxv2/package.json)
|
|
196
|
+
or run tb --help
|
|
197
|
+
|
|
198
|
+
---
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
## ๐งช CI/CD & Deployment
|
|
202
|
+
|
|
203
|
+
Automated processes are managed using GitHub Actions for:
|
|
204
|
+
* ๐ **Build & Test**: Validating both Rust and Python components.
|
|
205
|
+
* ๐ **Release**: Publishing to PyPI, building Tauri applications, and potentially Docker images.
|
|
206
|
+
|
|
207
|
+
---
|
|
208
|
+
|
|
209
|
+
## ๐ฑ Example Projects & Ideas
|
|
210
|
+
|
|
211
|
+
ToolBoxV2 can be used to build a wide range of applications, including:
|
|
212
|
+
* ๐ Link shortener
|
|
213
|
+
* ๐ง Live notes with versioning
|
|
214
|
+
* ๐จ Diffusion system for generating visual assets
|
|
215
|
+
* ๐
Calendar and scheduling tools
|
|
216
|
+
* ๐ Quote/Offer generation system
|
|
217
|
+
* ๐ฎ Multiplayer TicTacToe
|
|
218
|
+
* ๐ค Chat/Voice bots with P2P communication capabilities
|
|
219
|
+
|
|
220
|
+
---
|
|
221
|
+
|
|
222
|
+
## ๐ Learn More / Further Information
|
|
223
|
+
|
|
224
|
+
* [๐ฆ Current Installer (Web Demo/Entry)](https://simplecore.app/web/core0/Installer.html)
|
|
225
|
+
* [๐ Documentation (WIP)](https://markinhaus.github.io/ToolBoxV2/)
|
|
226
|
+
* [๐ PyPI Package](https://pypi.org/project/ToolBoxV2)
|
|
227
|
+
* [๐ GitHub Repository](https://github.com/MarkinHaus/ToolBoxV2)
|
|
228
|
+
|
|
229
|
+
---
|
|
230
|
+
## ๐ License
|
|
231
|
+
|
|
232
|
+
This project is distributed under a custom license. Please refer to the [LICENSE](./LICENSE) file in the repository for detailed terms and conditions.
|
|
233
|
+
|
|
234
|
+
---
|
|
235
|
+
|
|
236
|
+
ยฉ 2022โ2025 Markin Hausmanns โ All rights reserved.
|
|
237
|
+
|