Automation Made Simple

Just import opress and start automating. No complex setup, no frameworks to learn. Find what you see, click what you want.

import opress
click(image("button.png"))
find(text("Hi, mom!"))
Background

Ridiculously Simple API

Three functions. That's it. See something? Click it. Need text? Find it.

👁️

See & Click

click(image("login.png"))

Find any visual element and click it instantly

📝

Find Text

find(text("Submit"))

Locate any text on screen with OCR

⌨️

Type & Press

write("Hello!")
press("enter")

Human-like typing and key presses

Complete Login Example

import opress

# Find and click the login button
click(image("login_button.png"))

# Fill in the form
click(text("Username"))
write("john_doe")
press("tab")
write("password123")

# Submit
click(text("Login"))

# Verify success
find(text("Welcome back!"))

That's it! No complex setup, no learning curve. Just see it and automate it.