Brent's answer suggests me that has made a database of SO questions such that he can fast analyze the questions.
I am interested in making a similar database by MySQL such that I can practice MySQL with similar queries as Brent.
The database should include at the least the following fields (I am guessing here, since the API of SO's api seems to be sectet). I aim to list only relevant variables which would allow me to make similar analysis as Brent.
- Questions
- Question_id (private key)
Question_time
Comments
- Comment_id (private key)
Comment_time
User_id (private key)
- User_name
We need apparently scrape the data by Python's Beautiful Soap because Brent's database is apparently hidden.
How can you make such a MySQL database by Python's Beautiful Soap?**