Is there a curl library for Ruby?
|
Use open-uri and
accessing sites/pages/resources that require HTTP authentication. |
|||||||||||||||||
|
|
Curb and Curl::Multi provide cURL bindings for Ruby. |
|||
|
|
|
If you like it less low-level, there is also Typhoeus, which is built on top of Curl::Multi. |
|||||||||
|
|
Curb-fu is a wrapper around Curb which in turn uses libcurl. What does Curb-fu offer over Curb? Just a lot of syntactic sugar - but that can be often what you need. |
|||
|
|
|
There's also mechanize, very high-level web scraping client, uses Nokogiri for html parsing. |
|||
|
|
|
You might also have a look at Rest-Client |
|||
|
|
|
Adding a more recent answer, HTTPClient is another Ruby library that uses libcurl, supports parallel threads and lots of the curl goodies. I use HTTPClient and Typhoeus for any non-trivial apps. |
|||
|
|
|
a decision-making help: https://www.ruby-toolbox.com/categories/http_clients |
|||
|
|
|
It uses HTTPClient under the hood. It also has some options:
|
|||
|
|