Compare commits
3 Commits
5989d88002
...
7999cb488f
Author | SHA1 | Date | |
---|---|---|---|
7999cb488f | |||
c741d85458 | |||
e8101a3352 |
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
__pycache__/
|
@ -1,11 +1,14 @@
|
|||||||
"""
|
"""
|
||||||
title: Reddit Feeds
|
title: Reddit
|
||||||
author: @nathanwindisch
|
author: @nathanwindisch
|
||||||
author_url: https://github.com/nathanwindisch
|
author_url: https://git.wnd.sh/owui-tools/reddit
|
||||||
funding_url: https://patreon.com/NathanWindisch
|
funding_url: https://patreon.com/NathanWindisch
|
||||||
version: 0.0.1
|
version: 0.0.1
|
||||||
changelog:
|
changelog:
|
||||||
- 0.0.1 - Initial upload to openwebui community.
|
- 0.0.1 - Initial upload to openwebui community.
|
||||||
|
- 0.0.2 - Renamed from "Reddit Feeds" to just "Reddit".
|
||||||
|
- 0.0.3 - Updated author_url in docstring to point to
|
||||||
|
git repo.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
18
test/reddit.test.py
Normal file
18
test/reddit.test.py
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# First, we need to add the src to the path so we can import the class
|
||||||
|
import sys, os
|
||||||
|
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "../src")))
|
||||||
|
# Unfortunately, we don't get any type hinting, but this does work :)
|
||||||
|
from reddit import Tools
|
||||||
|
|
||||||
|
async def main():
|
||||||
|
__user__ = {
|
||||||
|
"valves": Tools.UserValves(
|
||||||
|
USER_AGENT="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
async def mock_event_emitter(event: dict): print("Event Emitted:", event["data"])
|
||||||
|
await Tools().get_subreddit_feed("sysadmin", mock_event_emitter, __user__)
|
||||||
|
await Tools().get_user_feed("NathanWindisch", mock_event_emitter, __user__)
|
||||||
|
|
||||||
|
import asyncio
|
||||||
|
if __name__ == "__main__": asyncio.run(main())
|
Loading…
Reference in New Issue
Block a user