# PyToolKit **Repository Path**: QLTools/PyToolKit ## Basic Information - **Project Name**: PyToolKit - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-30 - **Last Updated**: 2026-06-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PyToolKit A comprehensive Python tool kit with automation and utility modules. ## Installation ```bash # Install base package pip install . # Install with automation dependencies (playwright, selenium, pywinauto, etc.) pip install .[autos] # Install with utility dependencies (rich) pip install .[utils] # Install all extras pip install .[autos,utils] # Development mode pip install -e .[autos,utils] ``` ## Project Structure ``` src/ └── py_tool_kit/ ├── info.py # Package metadata ├── autos/ # Automation modules │ ├── auto_playwright.py │ ├── auto_selenium.py │ ├── auto_pywinauto.py │ ├── auto_pyautogui.py │ ├── auto_common.py │ └── auto_constants.py └── utils/ # General utility modules ├── common.py # Shared types (Result, ErrorCode) ├── files.py # File operations ├── logs.py # Logging system ├── reqs.py # HTTP requests ├── progressor.py # Progress bars ├── system.py # System operations ├── constants.py # Global constants └── deprecated.py # Deprecation decorators ``` ## Development ```bash # Build wheel python -m build --wheel # Clean artifacts python scripts/clean.py # Run tests (coming soon) ```