mirror of
https://github.com/developersIndia/deviras.git
synced 2024-12-02 11:40:45 +05:30
57 lines
1.6 KiB
Python
57 lines
1.6 KiB
Python
import praw
|
|
from collections import defaultdict
|
|
import os
|
|
|
|
client_id = os.environ["REDDIT_CLIENT_ID"]
|
|
client_secret = os.environ["REDDIT_CLIENT_SECRET"]
|
|
reddit_pass = os.environ["REDDIT_PASSWORD"]
|
|
username = os.environ["REDDIT_USERNAME"]
|
|
user_agent = 'User Flair Usage'
|
|
sub = "developersIndia"
|
|
|
|
# Create a Reddit instance
|
|
reddit = praw.Reddit(
|
|
client_id=client_id,
|
|
client_secret=client_secret,
|
|
username=username,
|
|
password=reddit_pass,
|
|
user_agent=user_agent
|
|
)
|
|
|
|
# Select the subreddit
|
|
subreddit = reddit.subreddit(sub)
|
|
|
|
# Initialize a dictionary to count flairs
|
|
flair_count = defaultdict(int)
|
|
|
|
# Iterate over all the flairs
|
|
emoji_flair_count = 0
|
|
emoji_flair_users = []
|
|
for flair in subreddit.flair(limit=None):
|
|
f = flair['flair_text'].strip()
|
|
|
|
if f.startswith(":") and f.endswith(":"):
|
|
emoji_flair_count += 1
|
|
emoji_flair_users.append(
|
|
dict(
|
|
user=flair['user'],
|
|
flair_text=f
|
|
)
|
|
)
|
|
else:
|
|
flair_count[flair['flair_text'].strip()] += 1
|
|
|
|
# Convert the dictionary to a list of tuples and sort it by the count
|
|
sorted_flairs = sorted(flair_count.items(), key=lambda x: x[1], reverse=True)
|
|
|
|
# # Print the sorted list of flairs and their counts
|
|
# for flair, count in sorted_flairs:
|
|
# print(f"Flair: {flair}, Count: {count}")
|
|
|
|
for user in emoji_flair_users:
|
|
print(user)
|
|
# Calculate and print the total count of all flairs
|
|
total_count = sum(flair_count.values())
|
|
print(f"Total count of non-emoji flairs: {total_count}")
|
|
print(f"Total count of emoji only flairs: {emoji_flair_count}")
|
|
print(f"Total count of user-flairs: {total_count + emoji_flair_count}") |