Я пытаюсь получить информацию с веб-сайта для серфинга на графике, который я нашел. Как я мог изменить свой код, чтобы информация отображалась?
from bs4 import BeautifulSoup`
import requests
import numpy as np
import matplotlib.pyplot as plt
page_link = 'http://widgets.windalert.com/widgets/web/forecastTable?spot_id=110&units_wind=mph&units_height=ft&units_temp=F&days=4'
page_response = requests.get(page_link, timeout=5)
page_content = BeautifulSoup(page_response.content, "html.parser")
paragraphs = page_content.find_all("p")[i].text
res = requests.get('https://scotch.io')
print(res)
r = requests.get("http://widgets.windalert.com/widgets/web/forecastTable?spot_id=110&units_wind=mph&units_height=ft&units_temp=F&days=4")
print (r.json)
print(r.text)
x1 = np.linspace(0.0, 12.0)
x2 = np.linspace(0.0, 12.0)
y1 = np.cos(2 * np.pi * x2)
y2 = np.cos(2 * np.pi * x2)
plt.subplot(2, 1, 1)
plt.plot(x1, y1, 'o-')
plt.title('Wave size in Boca Raton')
plt.ylabel('Height(ft)')
plt.subplot(2, 1, 2)
plt.plot(x2, y2, '.-')
plt.xlabel('Time')
plt.ylabel('Tide')
plt.show()