Getting Started
Requirements
Python 3.10 or higher
pip (Python package manager)
Installation
Install PyBreeze from PyPI:
pip install pybreeze
Launching PyBreeze
Method 1: Command Line
python -m pybreeze
Method 2: Python Script
from pybreeze import start_editor
start_editor()
Method 3: With Options
from pybreeze import start_editor
# Available themes: dark_amber.xml (default), dark_teal.xml,
# dark_blue.xml, light_blue.xml, etc.
start_editor(theme="dark_teal.xml")
Parameters
Parameter |
Type |
Default |
Description |
|---|---|---|---|
|
bool |
|
Auto-close after 10 seconds (for CI testing) |
|
str |
|
Qt Material theme name |
First Launch
When PyBreeze starts, the main window opens maximized with:
Menu Bar at the top with all available menus
File Tree on the left side for project navigation
Code Editor (tabbed) in the center for editing files
Output Panel at the bottom for execution results
PyBreeze inherits its core editor functionality from JEditor and extends it with automation-specific menus, tools, and integrations.