apider 0.1.0__tar.gz

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.
apider-0.1.0/PKG-INFO ADDED
@@ -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)
apider-0.1.0/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Apider
2
+
3
+ **Python automation without boilerplate.**
4
+
5
+ Apider lets you connect Email, Telegram, Discord, Slack, and Google Sheets with simple Python code โ€” while execution runs entirely in the cloud.
6
+
7
+ ```python
8
+ from apider import Email, Telegram, CloudScheduler
9
+
10
+ def monitor():
11
+ emails = Email.read(unread_only=True)
12
+ Telegram.send(f"๐Ÿ“ฌ {len(emails)} new emails")
13
+
14
+ CloudScheduler.every_minutes(10, monitor)
15
+ ```
16
+
17
+ โœ” No servers ยท โœ” No cron jobs ยท โœ” No API boilerplate ยท โœ” No infrastructure
18
+
19
+ ## Install
20
+
21
+ ```bash
22
+ pip install apider
23
+ ```
24
+
25
+ ## Links
26
+
27
+ - [Documentation](https://apider-io.github.io)
28
+ - [GitHub](https://github.com/Apider-io)
@@ -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,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ apider.egg-info/PKG-INFO
4
+ apider.egg-info/SOURCES.txt
5
+ apider.egg-info/dependency_links.txt
6
+ apider.egg-info/requires.txt
7
+ apider.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ requests>=2.32.0
2
+ python-dotenv>=1.2.0
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,22 @@
1
+ [project]
2
+ name = "apider"
3
+ version = "0.1.0"
4
+ description = "Python automation without boilerplate โ€” run scripts in the cloud with one line."
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ dependencies = [
8
+ "requests>=2.32.0",
9
+ "python-dotenv>=1.2.0",
10
+ ]
11
+
12
+ [project.urls]
13
+ Homepage = "https://apider-io.github.io"
14
+ Repository = "https://github.com/apider-io/apider"
15
+
16
+ [build-system]
17
+ requires = ["setuptools>=68"]
18
+ build-backend = "setuptools.build_meta"
19
+
20
+ [tool.setuptools.packages.find]
21
+ where = ["."]
22
+ include = ["apider_client*"]
apider-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+