Questions tagged [scrape]

DO NOT USE THIS TAG. It is under an active cleanup: https://meta.stackoverflow.com/q/305314 Use [web-scraping] if your question is about scraping information from web resources (there is also [screen-scraping]) or use [pdf-scraping] if your question is about scraping information from pdf files. Use [data-extraction] if you need to extract data from other resources.

1204 questions
-4
votes
1 answer

JavaScript function to synchronously scrape HTML and JS

Is there a library that would support synchronous JavaScript functions like the following? function getPageHTML(url){ // scrape HTML from external web page return html; } function getPageJS(url){ // scrape final JavaScript variable…
zdebruine
  • 3,687
  • 6
  • 31
  • 50
-5
votes
1 answer

Simple Webscraping in Swift

I am just getting started with Swift. I have done a ton of webscrping with B4S in Python, but I am having trouble with Swift. Does anyone know how I can request html data from a website? How would I get the html from http://www.example.com/ Or does…
1 2 3
80
81