Fuck it free code for you
>>17433236import praw
import time
# create a Reddit instance
reddit = praw.Reddit(
client_id="your_client_id_here",
client_secret="your_client_secret_here",
username="your_username_here",
password="your_password_here",
user_agent="your_user_agent_here"
)
# set the words to look for
female_words = ["woman", "girl", "lady", "feminine", "she", "her"]
male_words = ["man", "boy", "gentleman", "masculine", "he", "him"]
# define the reply messages
female_reply_message = "Please use the term 'female' to describe people of vaginas."
male_reply_message = "Please use the term 'male' to describe people of penises."
# set the subreddit to monitor
subreddit = reddit.subreddit("all")
# set the time interval to wait between comments (in seconds)
comment_interval = 600
# define the function to check comments and reply
def check_comments():
for comment in subreddit.stream.comments(skip_existing=True):
if comment.author ==
reddit.user.me():
continue
if comment.subreddit.banned:
continue
if any(word in comment.body.lower() for word in female_words):
comment.reply(female_reply_message)
time.sleep(comment_interval)
elif any(word in comment.body.lower() for word in male_words):
comment.reply(male_reply_message)
time.sleep(comment_interval)
# run the function
check_comments()