Python PRAW: obtener el ícono de avatar de un redditor

En Reddit, un redditor es el término dado a un usuario. Todos y cada uno de los redditores tienen un ícono en su perfil que es su avatar en línea. Usaremos el icon_img()atributo de la Redditorclase para obtener la URL del avatar del redditor.

Ejemplo 1: Considere el siguiente redditor:

El nombre de usuario del redditor es: spez.

# importing the module
import praw
import PIL
import urllib
  
# 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)
  
# fetching the URL of the image
url = redditor.icon_img
  
print("The URL of the icon image of " + redditor_name +
      " is : \n" + url)
  
# displaying the image
urllib.request.urlretrieve(url, "reddit.png")
img = PIL.Image.open("reddit.png")
img.show()

Producción :

The URL of the icon image of prez is : 
https://www.redditstatic.com/avatars/avatar_default_19_A06A42.png

Ejemplo 2: Considere el siguiente redditor:

El nombre de usuario del redditor es: AutoModerador

# importing the module
import praw
import PIL
import urllib
  
# 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)
  
# fetching the URL of the image
url = redditor.icon_img
  
print("The URL of the icon image of " + redditor_name +
      " is : \n" + url)
  
# displaying the image
urllib.request.urlretrieve(url, "reddit.png")
img = PIL.Image.open("reddit.png")
img.show()

Producción :

The URL of the icon image of AutoModerator is : 
https://styles.redditmedia.com/t5_1yz875/styles/profileIcon_klqlly9fc4l41.png?width=256&height=256&crop=256:256, smart&s=94486fc13b9ca9e154e9e8926e3d8c43ccc80be3

Publicación traducida automáticamente

Artículo escrito por Yash_R y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *