Files
TestPostsBot/config.py

15 lines
441 B
Python
Raw Normal View History

2026-03-04 23:01:36 +00:00
# config.py
# Fetches config from subreddit wiki page
import json
def fetch_config_from_wiki(reddit, subreddit_name, wiki_page):
subreddit = reddit.subreddit(subreddit_name)
try:
wiki = subreddit.wiki[wiki_page]
config_text = wiki.content_md
config = json.loads(config_text)
return config
except Exception as e:
print(f"Error fetching config from wiki: {e}")
return {'posts': []}