Python獲取B站粉絲數的示例代碼

要使用代碼,需要安裝Python 3.x,並且要安裝庫,在cmd輸入pip install requests json time
復制代碼,修改最上方變量改成你自己的UID,保存為xxx.py,運行就可以瞭

用於學習瞭解的核心代碼:

import requests
import json

bilibili_api = requests.get("http://api.bilibili.com/x/relation/stat?vmid=1") # 訪問網址,數據存到變量,1是用戶UID
extracting_json = bilibili_api.text # 提取bilibili_api的text數據
python_dictionary = json.loads(extracting_json) # json對象轉換為python字典
print(python_dictionary['data']['follower']) # 訪問python對象,data裡的follower

正篇:

import requests
import json
import time

# 需要修改的變量
uid = 9824766 # 用戶UID
sleep_second = 60 # 多少秒檢測一次
# 預定義變量 (不能修改)
assigned_value = 0 # 舊粉絲數變量是否賦值
fans_num_old = 0 # 上一次的粉絲數
while True:
  # 嘗試訪問鏈接,如果OSError輸出連接失敗,並break。
  try:
    bilibili_api = requests.get("http://api.bilibili.com/x/relation/stat?vmid={}".format(uid)) # 訪問網址,數據存到變量
  except OSError:
    print('連接失敗')
    break
  extracting_json = bilibili_api.text # 提取bilibili_api的text數據
  python_dictionary = json.loads(extracting_json) # json對象轉換為python字典
  # 如果發送請求過多,被系統禁止獲取數據,則提示並退出程序
  try:
    fans_num = python_dictionary['data']['follower'] # 粉絲數,訪問python對象,data裡的follower
  except TypeError:
    print('請求被攔截,需要更換IP訪問')
    break
  # 判斷舊粉絲數變量,是否被首次賦值
  if assigned_value != 1:
    fans_num_old = fans_num
    assigned_value = 1
  # 判斷粉絲數是否變化
  if fans_num_old != fans_num:
    num_change = fans_num - fans_num_old
    num_charge_to_str = '' # 預定義轉換完的”改變多少粉絲數“變量
    if num_change > 0: # 變化大於0就轉字符串,再添加+號
      num_charge_to_str = '+' + str(num_change)
    else:
      num_charge_to_str = str(num_change)
    print('[', time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()), '] B站粉絲數:', fans_num, '(', num_charge_to_str,
       ')',
       sep='')
    fans_num_old = fans_num # 存儲新粉絲數
  time.sleep(sleep_second) # 每次循環檢測等待秒數

到此這篇關於Python獲取B站粉絲數的示例代碼的文章就介紹到這瞭,更多相關Python獲取B站粉絲數內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: