Metadata-Version: 2.1
Name: robocorp-http
Version: 0.4.0
Summary: Robocorp HTTP library
Home-page: https://github.com/robocorp/robo/
License: Apache-2.0
Author: Ossi R.
Author-email: ossi@robocorp.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: requests (>=2.31.0,<3.0.0)
Project-URL: Repository, https://github.com/robocorp/robo/
Description-Content-Type: text/markdown

# robocorp-http

This HTTP library is meant as a simple utility library for downloading
files over HTTP, and (later) making robust HTTP requests (GET/POST/etc.)

## Getting started

Currently the library exposes one method:

```python
from robocorp.http import download
from robocorp.tasks import task

def fetch_workbook():
	path = download("https://example.com/orders.xlsx")
	print(f"Downloaded file to: {path}")
```

## API Reference

Information on specific functions or classes: [robocorp.http](./api/robocorp.http.md)

## Changelog

A list of releases and corresponding changes can be found in the [changelog](./CHANGELOG.md).

