Curl Web Scraping



Our web scraping API handles thousands of requests per second without ever being blocked. If you don’t want to lose too much time setting everything up, make sure to try ScrapingBee. The first 1k API calls are on us:). We recently published a guide about the best web scraping tools on the market, don't hesitate to take a look! When it comes to browsing the web, the most commonly used communication.

  1. Scrapy Tor
  2. Php Curl Web Scraping Example
  3. Curl Web Scraping Tutorial
  1. Screen Scraping: How to Screen Scrape a Website with PHP and cURL. Screen scraping has been around on the internet since people could code on it, and there are dozens of resources out there to figure out how to do it (google php screen scrape to see what I mean). I want to touch on some things that I've figured out while scraping some screens.
  2. CURL is a versatile command used by programmers for data collection and data transfers. But how can you leverage cURL for web scraping? This article will help you get started.

Running hobby projects is the best way to practice data science before getting your first job. And one of the best ways to get real data for a hobby project is: web scraping.

I’ve been promising this for a long time to my course participants – so here it is: my web scraping tutorial series for aspiring data scientists!

I’ll show you step by step how you can:

  1. scrape a public html webpage
  2. extract the data from it
  3. write a script that automatically scrapes thousands of public html webpages on a website
  4. create useful (and fun) analyses from the data you get
  5. analyze a huge amount of text
  6. analyze website metadata

This is episode #1, where we will focus on step #1 (scraping a public html webpage). And in the upcoming episodes we will continue with step #2, #3, #4, #5 and #6 (scaling this up to thousands of webpages, extracting the data from them and analyzing the data we get).

Even more, I’ll show you the whole process in two different data languages, too, so you will see the full scope. In this article, I will start with the simpler one: bash. And in future articles, I’ll show you how to do similar things in Python, as well.

So buckle up! Web scraping tutorial episode #1 — here we go!

Before we start…

Php curl web scraping tutorial

This is a hands-on tutorial. I highly recommend doing the coding part with me (and doing the exercises at the end of the articles).

I presume that you have some bash coding knowledge already — and that you have your own data server set up already. If not, please go through these tutorials first:

The project: scraping TED.com and analyze talks

When you run a data science hobby project, you should always pick a topic that you are passionate about. Merge pdf files.

As for me: I love public speaking.

I like to practice it myself and I like to listen to others… So watching TED presentations is also a hobby for me. Thus I’ll go ahead and analyze TED presentations in this tutorial.

Luckily, almost if not all TED presentations are already available online.


Even more, their transcripts are available, too!

(Thank you TED!)

So we’ll “just” have to write a bash script that collects all those transcripts for us and we can start our in-depth text analysis.

Note 1: I picked scraping TED.com just for the sake of example. If you are passionate about something else, after finishing these tutorial articles, try to find a web scraping project that resonates with you! Are you into finance? Try to scrape stock market news! Are you into real estate? Then scrape real estate websites! Are you a movie person? Your target could be imdb.com (or something similar)!

Login to your remote server!

Okay, so one more time: for this tutorial, you’ll need a remote server. If you haven’t set one up yet, now is the time! 🙂

Note: If — for some reason — you don’t like my server setup, you can use a different environment. But I strongly advise against it. Using the exact same tools that I use will guarantee that everything you read here will work on your end, too. So one last time: use this remote server setup for this tutorial.

Okay, let’s say that you have your server. Great!
Now open Terminal (or Putty) and log in with your username and IP address.

If everything’s right, you should see the command line… Something like this:

Introducing your new favorite command line tool: curl

Interestingly enough, in this whole web scraping tutorial, you will have to learn only one new bash command. And that’s curl.

curl is a great tool to access a website’s whole html code from the command line. (It’s good for many other server-to-server data transfer processes — but we won’t go there for now.)

Let’s try it out right away!

curl https://www.ted.com/

The result is:

Oh boy… What’s this mess??

It’s the full html code of TED.com — and soon enough, I’ll explain how to turn this into something more meaningful. But before that, something important.

As you can see, to get the data you want, you’ll have to use that exact URL where the website content is located — and the full version of it. So, for instance this short form won’t work:

curl ted.com

It just doesn’t return anything:

And you’ll get similar empty results for these:

curl www.ted.com

curl http://www.ted.com

Even when you define the https protocol properly but you miss the www part, you’ll get a short error message that your website content “has been moved”:

So make sure that you type the full URL and you use the one where the website is actually located. This, of course, differs from website to website. Some use the www prefix, some don’t. Some still operate under the http protocol — most (luckily) use https.

A good trick to find the URL you need is to open the website in your browser — and then simply copy-paste the full URL from there into your Terminal window:

So in TED’s case, it will be this:

curl https://www.ted.com

But, as I said, I don’t want to scrape the TED.com home page.

I want to scrape the transcripts of the talks. So let’s see how to do that!

curl in action: downloading one TED talk’s transcript

Obviously, the first step in a web scraping project is always to find the right URL for the webpage that you want to download, extract and analyze.

For now, let’s start with one single TED talk. (Then in the next episode of this tutorial, we’ll scale this up to all 3,300 talks.)

For prototyping my script, I chose the most viewed speech — which is Sir Ken Robinson’s “Do schools kill creativity.” (Excellent talk, by the way, I highly recommend watching it!)

The transcript itself is found under this URL:

So you’ll have to copy-paste this to the command line — right after the curl command:

Great!
We got our messy html code again — but this actually means that we are one step closer.

If you scroll up a bit in your Terminal window, you’ll recognize parts of the speech there:

This is not (yet) the most

And to remove all the lines after a given line in a file, this is the code:

sed -n '/[the pattern itself]/q;p'

Note: this one will remove the line with the pattern, too! The weeknd after hours deezer album.

Side note:
Now, of course, if you don’t know
sed inside out, you couldn’t figure out these code snippets by yourself. But here’s the thing: you don’t have to, either!

Web

If you build up your data science knowledge by practicing, it’s okay to use Google and Stackoverflow and find answers to your questions online. Well, it’s not just okay, you have to do so!

E.g. if you don’t know how to remove lines after a given line in bash, type this into Google:

The first result brings you to Stackoverflow — where right in the first answer there are three(!) alternative solutions for the problem:

Who says learning data science by self-teaching is hard nowadays?

Okay, pep-talk is over, let’s get back to our web scraping tutorial!

Let’s replace the [the pattern itself] parts in your sed commands with the patterns we’ve found above — and then add them to your command using pipes.

Something like this:

Note 1: I used line breaks in my command… but only to make my code nicer. Using line breaks is optional in this case.

Note 2: In the Programs &amp. initiatives line, I didn’t add the * characters to the pattern in sed because the line (and the pattern) is fairly unique without them already. If you want to add them, you can. But you’ll have to know that * is a special character in sed, so to refer to it as a character in your text, you’ll have to “escape” it with a backslash first. The code would look like this: sed -n '/**** Programs &amp. initiatives ****/q;p'
Again, this won’t be needed anyway.

Let’s run the command and check the results!

If you scroll up, you’ll see these at the beginning of the returned text (without the annotations, of course):

Before you start to worry about all the chaos in the first few lines…

  • The part that I annotated with the yellow frame: that’s your code. (And of course, it’s not a part of the returned results.)
  • The part with the blue frame: that’s only a “status bar” that shows how fast the web scraping process was — it’s on your screen but it won’t be part of the downloaded webpage content, either. (You’ll see this clearly soon, when we save our results into a file!)

However, the one with the red frame (Details about the talk) is something that is part of the downloaded webpage content… and you won’t need it. It’s just left there, so we will remove it soon.

But first, scroll back down!

At the end of the file the situation is cleaner:

We only have one unnecessary line left there that says TED.

So you are almost there…

Removing first and last lines with the head and tail commands

And as a final step, remove the first (Details About the talk) and the last (TED) lines of the content you currently see in Terminal! These two lines are not part of the original talk… and you don’t want them in your analyses.

For this little modification, let’s use the head and tail commands (I wrote about them here).

To remove the last line, add this code: head -n-1

And to remove the first line, add this code: tail -n+2

And with that, this will be your final code: Happy malayalam movie mp3 songs free, download.

You can try it out…

But I recommend to save this into a file first, so you will be able to reuse the data you got in the future.

If you print this freshly created proto_text.csv file to your screen, you’ll see that you have beautifully downloaded, cleaned and stored the transcript of Sir Ken Robinson’s TED talk:

cat proto_text.csv

And with that you’ve finished the first episode of this web scraping tutorial!

Nice!

Exercise – your own web scraping mini-project

Scrapy Tor

Now that you have seen how a simple web scraping task is done, I encourage you to try this out yourself.

Pick a simple public .html webpage from the internet — anything that interests you — and do the same steps that we have done above:

  1. Download the .html site with curl!
  2. Extract the text with html2text!
  3. Clean the data with sed, head, tail, grep or anything else you need!

The third step could be especially challenging. There are many, many types of data cleaning issues… But hey, after all, this is what a data science hobby project is for: solving problems and challenges! So go for it, pick a webpage and scrape it! 😉 And if you get stuck, don’t be afraid to go to Google or Stackoverflow for help!

Note 1: Some big (or often-scraped) webpages block web scraping scripts. If so, you’ll get a “403 Forbidden” message returned to your curl command. Please consider it as a “polite” request from those websites and try not to find a way around to scrape their website anyway. They don’t want it — so just go ahead and find another project.

Note 2: Also consider the legal aspect of web scraping. Generally speaking, if you use your script strictly for a hobby project, this probably won’t be an issue at all. (This is not official legal advice though.) But if it becomes more serious, just in case, to stay on the safe side, consult a lawyer, too!

Web Scraping Tutorial – summary and the next steps

Scraping one webpage (or TED talk) is nice…

But boring! 😉

So in the next episode of this web scraping tutorial series, I’ll show you how to scale this up! You will write a bash script that – instead of one single talk – will scrape all 3,000+ talks on TED.com. Let’s continue here: web scraping tutorial, episode #2.

Php Curl Web Scraping Example

And in the later episodes, we will focus on analyzing the huge amount of text we collected. It’s going to be fun! So stay with me!

  • If you want to learn more about how to become a data scientist, take my 50-minute video course: How to Become a Data Scientist. (It’s free!)
  • Also check out my 6-week online course: The Junior Data Scientist’s First Month video course.

Curl Web Scraping Tutorial

Cheers,
Tomi Mester