Skip to main content

Gumlet

This library provides convenient access to the Gumlet REST API from Python.

The full API of this library can be found in api.md.


Contents


Installation

pip install gumlet

Usage

import os

from gumlet import Gumlet

client = Gumlet(
    api_key=os.environ.get("API_KEY"),
)

video_asset = client.video_assets.create(
    input="http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8",
    format="ABR",
    title="Example Title",
    workspace_id="<your workspace id>",
)

print(video_asset)

The examples in the following sections assume a client configured as shown above.

See the API reference for every available operation.


Async

Every client has an Async counterpart (AsyncGumlet) exposing the same resource tree with await.

import asyncio

from gumlet import AsyncGumlet


async def main() -> None:
    client = AsyncGumlet()
    video_asset = await client.video_assets.create(
        input="http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8",
        format="ABR",
        title="Example Title",
        workspace_id="<your workspace id>",
    )


asyncio.run(main())

Authentication

Pass credentials to the generated client constructor. Environment variables are read automatically when supported by the target runtime.

Option Type Default Description
api_key string | provider - Credential for the API_KEY scheme. Defaults to API_KEY.

Declared schemes:

  • API_KEY bearer token

Errors

Non-success responses throw generated API errors. Error objects expose status, headers, response body, and request metadata where the target runtime supports it.

from gumlet import APIStatusError

try:
    video_asset = client.video_assets.create(
        input="http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8",
        format="ABR",
        title="Example Title",
        workspace_id="<your workspace id>",
    )
except APIStatusError as err:
    print(err.status_code, err.message)
    raise

Documented error statuses: 400, 401, 402, 403, 404, 413, 422, 500.


Client Options

Configure the generated client by setting any of these options when you create it.

from gumlet import Gumlet

client = Gumlet(
    timeout=60.0,
    max_retries=2,
)
Option Type Default Description
api_key str | None os.environ.get("API_KEY") Credential for the API_KEY scheme.
base_url str | httpx.URL | None - Override the default API base URL.
timeout float | Timeout | None 60.0 Maximum time in seconds to wait for a response before aborting a request.
max_retries int 2 Number of retries for temporary failures.
default_headers Mapping[str, str] | None - Headers sent with every request.
default_query Mapping[str, object] | None - Query parameters sent with every request.

Retries and Timeouts

Generated clients support request timeouts and retry temporary failures such as network errors, 408, 409, 429, and 5xx responses. Retry delays honor Retry-After headers when present. Tune the retry and timeout client options shown above, or override them per request.


Helpers

  • Use client.with_raw_response.<resource>.<method>(...) to access the raw httpx.Response and parse it yourself.
  • Use client.with_streaming_response.<resource>.<method>(...) to stream a response body without buffering it.

Logging

  • Set the GUMLET_LOG environment variable to info or debug to enable HTTP logging.
  • Logs are emitted through the standard logging module under the gumlet logger.

Requirements

  • Python 3.8 or newer

Release files for gumlet 1.0.6

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for gumlet 1.0.6
File Size Uploaded
gumlet-1.0.6.tar.gz 191.4 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for gumlet 1.0.6
File Interpreter ABI Platform
gumlet-1.0.6-py3-none-any.whl Python 3 none any Details

Total release size: 447.0 kB

Release files / gumlet-1.0.6.tar.gz

Download URL gumlet-1.0.6.tar.gz
Size 191.4 kB
Tags Source
SHA-256 checksum
How to use checksums
514eb4201d99e7fb8aea1dcfb89dc01e63fdd650c27a8b644247f1d3c0dbb530
BLAKE2b-256 checksum
How to use checksums
9912717cbaaeff45844356b299fdfcfa8b76861d8835b4d18553e35a674f9d85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 21, 2026.

Transparency log

Release files / gumlet-1.0.6-py3-none-any.whl

Download URL gumlet-1.0.6-py3-none-any.whl
Size 255.6 kB
Tags Python 3
SHA-256 checksum
How to use checksums
b673cd88c0f8c35201dbf9eb8b620052b5ec0a76e19a1864655389f67fdd7e1d
BLAKE2b-256 checksum
How to use checksums
564f5811d93661f971b1952dd838d93ed229c6e282877d14c7d2467c1dbddf6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 21, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.0.6 This release

2 release files

1.0.5

2 release files

1.0.4

2 release files

1.0.2

2 release files

1.0.0

2 release files

0.3.0

2 release files

0.2.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page