Friday, August 29, 2025
HomeLanguagesPython PRAW – Unfriending a redditor

Python PRAW – Unfriending a redditor

In Reddit, a redditor is the term given to a user. Reddit gives us the functionality to add a redditor as a friend with the authenticated user. We can also unfriend a friend. Here we will see how to unfriend a redditor. We will be using the unfriend() method of the Redditor class to unfriend a redditor.

unfriend()

Syntax : Redditor.unfriend()

Parameter : None

Returns : Nothing

Example 1 : Consider the following redditor :

The user name of the redditor is : spez




# importing the module
import praw
  
# initialize with appropriate values
client_id = ""
client_secret = ""
username = ""
password = ""
user_agent = ""
  
# creating an authorized reddit instance
reddit = praw.Reddit(client_id = client_id, 
                     client_secret = client_secret, 
                     username = username, 
                     password = password,
                     user_agent = user_agent) 
  
# the name of the redditor
redditor_name = "spez"
  
# instantiating the Redditor class
redditor = reddit.redditor(redditor_name)
  
# before using the unfriend() method
print("Are the authenticated user and " + redditor.name +
      " friends? : " + str(redditor.is_friend))
  
# unfriending the redditor
redditor.unfriend()
  
# after using the unfriend() method
print("Are the authenticated user and " + redditor.name +
      " friends? : " + str(redditor.is_friend))


Output :

Are the authenticated user and spez friends? : True
Are the authenticated user and spez friends? : False

Example 2 : Consider the following redditor :

The user name of the redditor is : AutoModerator




# importing the module
import praw
  
# initialize with appropriate values
client_id = ""
client_secret = ""
username = ""
password = ""
user_agent = ""
  
# creating an authorized reddit instance
reddit = praw.Reddit(client_id = client_id, 
                     client_secret = client_secret, 
                     username = username, 
                     password = password,
                     user_agent = user_agent) 
  
# the name of the redditor
redditor_name = "AutoModerator"
  
# instantiating the Redditor class
redditor = reddit.redditor(redditor_name)
  
# before using the unfriend() method
print("Are the authenticated user and " + redditor.name +
      " friends? : " + str(redditor.is_friend))
  
# unfriending the redditor
redditor.unfriend()
  
# after using the unfriend() method
print("Are the authenticated user and " + redditor.name +
      " friends? : " + str(redditor.is_friend))


Output :

Are the authenticated user and AutoModerator friends? : True
Are the authenticated user and AutoModerator friends? : False
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32246 POSTS0 COMMENTS
Milvus
80 POSTS0 COMMENTS
Nango Kala
6615 POSTS0 COMMENTS
Nicole Veronica
11787 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11835 POSTS0 COMMENTS
Shaida Kate Naidoo
6730 POSTS0 COMMENTS
Ted Musemwa
7011 POSTS0 COMMENTS
Thapelo Manthata
6684 POSTS0 COMMENTS
Umr Jansen
6699 POSTS0 COMMENTS