Metadata-Version: 2.4
Name: autoclick-scheduler
Version: 1.0.0
Summary: Schedule a mouse click or enter key press after a delay
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pyautogui

# autoclick

Schedule a mouse click or enter key press after a specified delay.

## Installation

```bash
pip install autoclick-scheduler
```

## Usage

```bash
# Click in 5 seconds
autoclick -S 5

# Click in 4 hours, 15 minutes, 30 seconds
autoclick -H 4 -M 15 -S 30

# Press Enter in 2 minutes, 30 seconds
autoclick -M 2 -S 30 --enter
```

## Options

| Flag | Description |
|------|-------------|
| `-H` | Hours to wait |
| `-M` | Minutes to wait |
| `-S` | Seconds to wait |
| `--click` | Perform a mouse click (default) |
| `--enter` | Press the Enter key instead |
