agentic-reddit 0.0.1__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,3 @@
1
+ """Agentic Reddit — an agentic crawler for Reddit (work in progress)."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentic-reddit
3
+ Version: 0.0.1
4
+ Summary: Agentic Reddit — an agentic crawler for Reddit (work in progress).
5
+ Project-URL: Homepage, https://github.com/tjdwls101010/Agentic-Reddit
6
+ Project-URL: Repository, https://github.com/tjdwls101010/Agentic-Reddit
7
+ Project-URL: Issues, https://github.com/tjdwls101010/Agentic-Reddit/issues
8
+ Author: seongjin
9
+ License: MIT
10
+ License-File: LICENSE
11
+ Keywords: agent,agentic,crawler,reddit
12
+ Classifier: Development Status :: 2 - Pre-Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Requires-Python: >=3.9
22
+ Description-Content-Type: text/markdown
23
+
24
+ # Agentic Reddit
25
+
26
+ An agentic crawler for Reddit. **Work in progress.**
27
+
28
+ ## Status
29
+
30
+ This is an initial placeholder release (`0.0.1`) published to establish the PyPI
31
+ publishing pipeline via GitHub Actions trusted publishing. Real functionality is
32
+ coming soon.
33
+
34
+ ## Installation
35
+
36
+ ```bash
37
+ pip install agentic-reddit
38
+ ```
39
+
40
+ ## License
41
+
42
+ [MIT](LICENSE)
@@ -0,0 +1,5 @@
1
+ agentic_reddit/__init__.py,sha256=FgIPDiAJxLGx-EEVpBKBIttRcLC3ME2l9UQflsmuI1U,98
2
+ agentic_reddit-0.0.1.dist-info/METADATA,sha256=cVPdAJblnn6-O_adHO0XeyOPc6et6yzm7PdqmX90yvM,1292
3
+ agentic_reddit-0.0.1.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
4
+ agentic_reddit-0.0.1.dist-info/licenses/LICENSE,sha256=dC2RlAryw1d992uZ32qGIu9Cxw_bLG1CF-iqFNcEtkg,1065
5
+ agentic_reddit-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.31.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 seongjin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.