|
|
|
|
|
by thomasrambaud
4933 days ago
|
|
I think the author just completly missed the point with API vs Screen scraping.
The API allows for accessing structured data. Even if the website changes once, the datas would be accessible the same way through the API.
Whereas, the author, would have to rewrite his code each time an update his made to the front-office code of the website. A simple API providing simple json response with http basic auth is far more efficient than a screen scraping program where you have to parse the response using HTML / XML parsers. |
|
As for efficiency, again not such an issue. HTML is very good these days, compared to 10 years ago, a simple CSS selector often does the job.