私のコードは次のとおりです。
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)」という警告が表示されました。どうすれば問題を解決できますか? どうもありがとう!