apider 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: apider
3
+ Version: 0.1.0
4
+ Summary: Python automation without boilerplate — run scripts in the cloud with one line.
5
+ Project-URL: Homepage, https://apider-io.github.io
6
+ Project-URL: Repository, https://github.com/apider-io/apider
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: requests>=2.32.0
10
+ Requires-Dist: python-dotenv>=1.2.0
11
+
12
+ # Apider
13
+
14
+ **Python automation without boilerplate.**
15
+
16
+ Apider lets you connect Email, Telegram, Discord, Slack, and Google Sheets with simple Python code — while execution runs entirely in the cloud.
17
+
18
+ ```python
19
+ from apider import Email, Telegram, CloudScheduler
20
+
21
+ def monitor():
22
+ emails = Email.read(unread_only=True)
23
+ Telegram.send(f"📬 {len(emails)} new emails")
24
+
25
+ CloudScheduler.every_minutes(10, monitor)
26
+ ```
27
+
28
+ ✔ No servers · ✔ No cron jobs · ✔ No API boilerplate · ✔ No infrastructure
29
+
30
+ ## Install
31
+
32
+ ```bash
33
+ pip install apider
34
+ ```
35
+
36
+ ## Links
37
+
38
+ - [Documentation](https://apider-io.github.io)
39
+ - [GitHub](https://github.com/Apider-io)
@@ -0,0 +1,4 @@
1
+ apider-0.1.0.dist-info/METADATA,sha256=ZHg-0xSnjzV3pPASGtixjReUN5jEst6zPhCIPQt6kGE,1036
2
+ apider-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
3
+ apider-0.1.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
4
+ apider-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+