📌  相关文章
📜  Python PRAW – 获取 redditor 的头像图标

📅  最后修改于: 2022-05-13 01:55:03.651000             🧑  作者: Mango

Python PRAW – 获取 redditor 的头像图标

在 Reddit 中,redditor 是给予用户的术语。每个 redditor 在他们的个人资料上都有一个图标,这是他们的在线头像。我们将使用 Redditor 类的Redditor icon_img()属性来获取 redditor 头像的 URL。

示例 1:考虑以下 redditor:

redditor 的用户名是: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()

输出 :

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

示例 2:考虑以下 redditor:

redditor 的用户名是:AutoModerator

# 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()

输出 :

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