Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 3,028 Bytes
79167e6 b93b4d0 52cf119 160ab39 48e5a20 9cc1b3d 48e5a20 79167e6 d5b3997 d796dcd 79167e6 e01453a d5b3997 10d3721 d5b3997 48e5a20 ddfdc79 52cf119 10d3721 52cf119 48e5a20 10d3721 ddfdc79 b4ca5a7 48e5a20 ddfdc79 d5b3997 f843a29 160ab39 52cf119 93fb91c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
import os
import praw
import threading
import gradio as gr
from slack_sdk import WebClient
from slack_sdk.errors import SlackApiError
SLACK_BOT_TOKEN = os.getenv('BOT_USER_OAUTH_TOKEN_HF')
SLACK_CHANNEL_ID = 'C079VG7D03V'
SLACK_CHANNEL_ID_TEST = 'C07B4KNU5BQ'
slack_client = WebClient(token=SLACK_BOT_TOKEN)
print("Initializing Reddit instance...")
client_id = os.getenv('CLIENT_ID')
client_secret = os.getenv('CLIENT_SECRET')
user_agent = os.getenv('USER_AGENT')
username = os.getenv('REDDIT_USERNAME')
password = os.getenv('REDDIT_PASSWORD')
print(f"Client ID: {client_id}")
print(f"Client Secret is set: {'Yes' if client_secret else 'No'}")
print(f"User Agent: {user_agent}")
print(f"Username: {username}")
print(f"Password is set: {'Yes' if password else 'No'}")
# Check if all credentials are retrieved successfully
if not all([client_id, client_secret, user_agent, username, password]):
print("Error: One or more environment variables are missing.")
exit(1)
try:
reddit = praw.Reddit(
client_id=client_id,
client_secret=client_secret,
user_agent=user_agent,
username=username,
password=password
)
print("Reddit instance created successfully.")
except Exception as e:
print(f"Error creating Reddit instance: {e}")
exit(1)
def monitor_new_posts():
try:
print("Attempting to access subreddit...")
subreddit_name = 'huggingface' # test
subreddit = reddit.subreddit(subreddit_name)
print(f"Successfully accessed subreddit: {subreddit.display_name}")
except Exception as e:
print(f"Error accessing subreddit: {e}")
return
print("Starting to monitor new posts...")
try:
for submission in subreddit.stream.submissions(skip_existing=True):
print(f"New post detected in r/{subreddit.display_name}:")
print(f"Title: {submission.title}")
print(f"Author: {submission.author}")
print(f"URL: {submission.url}")
print(f"Content: {submission.selftext}\n")
text_content = f"*{submission.title}*"
if submission.selftext:
text_content += f"\n{submission.selftext}"
else:
text_content += "\n_No content available (may be a link or image post)_"
text_content += f"{submission.url}"
response = slack_client.chat_postMessage(
channel=SLACK_CHANNEL_ID,
text=text_content,
thread_ts=None,
unfurl_links=False,
unfurl_media=False
)
except Exception as e:
print(f"Error during streaming submissions: {e}")
REPORT = ""
def log(msg):
global REPORT
REPORT += "\n\n" + msg
with gr.Blocks() as demo:
gr.Markdown("Background job running to check for access requests...")
report = gr.Markdown()
report.attach_load_event(lambda: REPORT, every=1)
threading.Thread(target=monitor_new_posts, daemon=True).start()
demo.launch()
|