eelEasy Examples

Simple Electron-like library for making HTML/JS GUI apps

Getting started with eel

Installation and basic usage of eel.

python
# Install: pip install eel
import eel

# Basic eel usage
print(f"Using eel")
# See documentation for detailed examples
Expected Output
# Expected output shown below
# (Run locally with: eel)

eel is a third-party package. Simple Electron-like library for making HTML/JS GUI apps. Install with: pip install eel

Common eel operations

Frequently used features of eel.

python
# Install: pip install eel
import eel

# Common eel patterns
print(f"eel version: {eel.__version__}")

These are the most commonly used features of eel in everyday development.

Want to try these examples interactively?

Open Easy Playground