Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
while loop instead of native discord one + added sleeps
Browse files
app.py
CHANGED
@@ -53,57 +53,55 @@ async def on_ready():
|
|
53 |
global_df = test_merge
|
54 |
print(f"csv successfully retrieved: \n {global_df}")
|
55 |
print(f"We have logged in as {bot.user}")
|
56 |
-
|
57 |
-
give_verified_roles.start()
|
58 |
-
|
59 |
-
@tasks.loop(minutes=1)
|
60 |
-
async def give_verified_roles():
|
61 |
-
try:
|
62 |
-
print("Starting the give_verified_roles task...")
|
63 |
-
|
64 |
-
global global_df
|
65 |
-
guild = bot.get_guild(879548962464493619)
|
66 |
-
role = guild.get_role(900063512829755413)
|
67 |
-
|
68 |
-
# Define the invite message
|
69 |
-
org_link = "https://huggingface.co/organizations/discord-community/share/wPKRAHYbAlaEaCxUxcqVyaaaeZcYagDvqc"
|
70 |
-
invite_message = "Click to join our community org on the HF Hub!"
|
71 |
-
print("Invite message and link prepared.")
|
72 |
-
|
73 |
-
# Cache members in the guild
|
74 |
-
print("Chunking guild members to cache...")
|
75 |
-
await guild.chunk()
|
76 |
-
print("Guild members chunked.")
|
77 |
-
|
78 |
-
# Iterate over the dataframe rows
|
79 |
-
for index, row in global_df.iterrows():
|
80 |
-
# Extract Hugging Face username
|
81 |
-
hf_user_name = row['hf_user_name']
|
82 |
-
if pd.notna(hf_user_name) and hf_user_name.lower() != 'n/a':
|
83 |
-
discord_id = row['discord_user_id'].strip('L')
|
84 |
-
member = guild.get_member(int(discord_id))
|
85 |
-
if not member:
|
86 |
-
print(f"Member with Discord ID {discord_id} not found.")
|
87 |
-
continue
|
88 |
-
print(f"Member found: {member}")
|
89 |
-
if role not in member.roles:
|
90 |
-
print(f"Adding role to member: {member}")
|
91 |
-
await member.add_roles(role)
|
92 |
-
print(f"Role added to member: {member}")
|
93 |
-
lunar = bot.get_user(811235357663297546)
|
94 |
-
if lunar:
|
95 |
-
await lunar.send(f"Verified role given to {member}!")
|
96 |
-
print(f"Sending success message to {member}")
|
97 |
-
await member.send(
|
98 |
-
f"Verification successful! [{member} <---> {row['discord_user_name']}] \n🤗 {org_link} {invite_message}"
|
99 |
-
)
|
100 |
-
|
101 |
-
print("Finished processing all rows.")
|
102 |
-
except Exception as e:
|
103 |
-
print(f"Error encountered: {e}")
|
104 |
|
105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
|
|
|
107 |
# runs discord bot in thread = helps avoid blocking calls
|
108 |
def run_bot():
|
109 |
bot.run(DISCORD_TOKEN)
|
|
|
53 |
global_df = test_merge
|
54 |
print(f"csv successfully retrieved: \n {global_df}")
|
55 |
print(f"We have logged in as {bot.user}")
|
56 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
|
58 |
|
59 |
+
async def give_verified_roles():
|
60 |
+
while True:
|
61 |
+
try:
|
62 |
+
print("Starting the give_verified_roles task...")
|
63 |
+
|
64 |
+
global global_df
|
65 |
+
guild = bot.get_guild(879548962464493619)
|
66 |
+
role = guild.get_role(900063512829755413)
|
67 |
+
|
68 |
+
# Define the invite message
|
69 |
+
org_link = "https://huggingface.co/organizations/discord-community/share/wPKRAHYbAlaEaCxUxcqVyaaaeZcYagDvqc"
|
70 |
+
invite_message = "Click to join our community org on the HF Hub!"
|
71 |
+
print("Invite message and link prepared.")
|
72 |
+
|
73 |
+
# Cache members in the guild
|
74 |
+
print("Chunking guild members to cache...")
|
75 |
+
await guild.chunk()
|
76 |
+
print("Guild members chunked.")
|
77 |
+
|
78 |
+
# Iterate over the dataframe rows
|
79 |
+
for index, row in global_df.iterrows():
|
80 |
+
# Extract Hugging Face username
|
81 |
+
hf_user_name = row['hf_user_name']
|
82 |
+
if pd.notna(hf_user_name) and hf_user_name.lower() != 'n/a':
|
83 |
+
discord_id = row['discord_user_id'].strip('L')
|
84 |
+
member = guild.get_member(int(discord_id))
|
85 |
+
if not member:
|
86 |
+
continue
|
87 |
+
if role not in member.roles:
|
88 |
+
await member.add_roles(role)
|
89 |
+
print(f"Role added to member: {member}")
|
90 |
+
lunar = bot.get_user(811235357663297546)
|
91 |
+
if lunar:
|
92 |
+
await lunar.send(f"Verified role given to {member}!")
|
93 |
+
await member.send(
|
94 |
+
f"Verification successful! [{member} <---> {row['discord_user_name']}] \n🤗 {org_link} {invite_message}"
|
95 |
+
)
|
96 |
+
await asyncio.sleep(1)
|
97 |
+
|
98 |
+
print("Finished processing all rows.")
|
99 |
+
except Exception as e:
|
100 |
+
print(f"Error encountered: {e}")
|
101 |
+
|
102 |
+
await asyncio.sleep(60)
|
103 |
|
104 |
+
|
105 |
# runs discord bot in thread = helps avoid blocking calls
|
106 |
def run_bot():
|
107 |
bot.run(DISCORD_TOKEN)
|