Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.aspect.build/llms.txt

Use this file to discover all available pages before exploring further.

function Http.delete
def Http.delete(
*,
url: str,
headers: dict[str, str] = ,
unix_socket: None | str = None
) -> Future
function Http.download
def Http.download(
*,
url: str,
output: str,
mode: int,
headers: dict[str, str] = ,
integrity: str = ,
sha256: str = 
) -> Future
Downloads a file from a URL to a local path. If both integrity and sha256 are specified, integrity takes precedence. The checksum is verified in a streaming fashion during download. function Http.get
def Http.get(
*,
url: str,
headers: dict[str, str] = ,
unix_socket: None | str = None
) -> Future
function Http.patch
def Http.patch(
*,
url: str,
headers: dict[str, str] = ,
data: typing.Any = None,
unix_socket: None | str = None
) -> Future
function Http.post
def Http.post(
*,
url: str,
headers: dict[str, str] = ,
data: typing.Any = None,
unix_socket: None | str = None
) -> Future
function Http.put
def Http.put(
*,
url: str,
headers: dict[str, str] = ,
data: typing.Any = None,
unix_socket: None | str = None
) -> Future