Is it possible to capture the graph data from a website? For example the website here, has a graph.
I want to get the information in the chart below.
Is is possible to capture these data using Python code?
I wrote this code but I couldn't progress. I couldn't find the part with the graph.
import requests
from bs4 import BeautifulSoup
URL='http://www.mahallemistanbul.com/MahallemSEGE_/'
page=requests.get(URL)
soup=BeautifulSoup(page.content,'html.parser')
Any help would be much appreciated!
