HTTP

class vortex.store.HTTPStore(url: str, *, client_options: ClientConfig | None = None, retry_config: RetryConfig | None = None)

Configure a connection to a generic HTTP server.

property client_options: ClientConfig | None

Get the store’s client configuration.

classmethod from_url(url: str, *, client_options: ClientConfig | None = None, retry_config: RetryConfig | None = None) Self

Construct a new HTTPStore from a URL.

This is an alias of the HTTPStore constructor.

property retry_config: RetryConfig | None

Get the store’s retry configuration.

property url: str

Get the base url of this store.