Metadata-Version: 2.4
Name: apider
Version: 0.1.0
Summary: Python automation without boilerplate — run scripts in the cloud with one line.
Project-URL: Homepage, https://apider-io.github.io
Project-URL: Repository, https://github.com/apider-io/apider
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.32.0
Requires-Dist: python-dotenv>=1.2.0

# Apider

**Python automation without boilerplate.**

Apider lets you connect Email, Telegram, Discord, Slack, and Google Sheets with simple Python code — while execution runs entirely in the cloud.

```python
from apider import Email, Telegram, CloudScheduler

def monitor():
    emails = Email.read(unread_only=True)
    Telegram.send(f"📬 {len(emails)} new emails")

CloudScheduler.every_minutes(10, monitor)
```

✔ No servers · ✔ No cron jobs · ✔ No API boilerplate · ✔ No infrastructure

## Install

```bash
pip install apider
```

## Links

- [Documentation](https://apider-io.github.io)
- [GitHub](https://github.com/Apider-io)
