程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python爬蟲時遇到問題:json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)

編輯:Python

Python爬蟲時遇到問題:
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
我將源碼發給大家,請大家幫忙解決!
import requests
import re
import json
import pprint

url = 'https://www.bilibili.com/video/BV13Q4y1N734?spm_id_from=333.337.search-card.all.click%27

def get_video(url):
headers = {
'referer': 'https://www.bilibili.com/',
'user-agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62'
}
response = requests.get(url=url, headers=headers)
return response

def get_video_info(url):
response = get_video(url)
print(response)
title = '【AMV-柯南】全員高燃混剪,你准備好了嗎'
# print(response)

html_data = re.findall('', response.text)[0]print(pprint.pprint(html_data))json_data = json.loads(html_data)# print(pprint.pprint(json_data))

get_video_info(url)


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved