Currently I'm working on a Machine Learning Project which analyzes questions on Stack Overflow. I imported requests library and used it to retrieve to questions as follows
import requests
data=requests.get("https://stackoverflow.com/questions")
I expected to retrieve data as a JSON but I got it as HTML. How to retrieve questions on Stack Overflow as JSON?