我的代码如下:
import requests
import urllib
from bs4 import BeautifulSoup
year_url = r"https://www.sec.gov/Archives/edgar/daily-index/2020/index.json"
year_content = requests.get(year_url)
decoded_year_url = year_content.json()
去年我可以运行完全相同的代码,但是当我昨天运行它时,弹出警告:“JSONDecodeError: Expecting value: line 1 column 1 (char 0)” 为什么?我应该如何解决问题?非常感谢!