Skip to main content

Robocorp HTTP library

Project description

robocorp-http

We are deprecating the robocorp-http -library and recommend using requests -library directly.

requests is so widely used that just about any AI/LLM is able to provide you with the needed code so an extra wrapper from us is not needed.

import requests


def download_file(url, local_filename):
    response = requests.get(url)
    response.raise_for_status()  # this will raise an exception if the request fails
    with open(local_filename, 'wb') as stream:
        stream.write(response.content)  # write the content of the response to a file
    return local_filename

Note: requests -library is already included in robocorp -package.

Check out more under our Requests 3rd-party library documentation.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

robocorp_http-0.4.1.tar.gz (2.4 kB view hashes)

Uploaded Source

Built Distribution

robocorp_http-0.4.1-py3-none-any.whl (3.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page