Ruby Equivalent of Python Requests Library (HTTP Client)
- by Hartator
There is a library in python that I love called requests. requests is a http client build on urllib3, top-notch :) (http://docs.python-requests.org/en/latest/)
I am looking for something similar in ruby, basically what I need is :
Upload files support (multipart/form-data)
Easy get/post
Cookies can be passed from a response object to a request…