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",
    collection_id="646df1c9173a4a2fcac180b4",
    profile_id="646df1c9173a4a2fcac180b7",
    format="ABR",
    tag=["ball"],
    description="some description",
    metadata={"headermeta": "metavalue"},
    call_to_actions=[
        {
            "start_time": 1,
            "end_time": 90,
            "text": "some test",
            "url": "https://some-url.com",
            "position_from_top": 11,
            "position_from_right": 23,
            "border_radius": "11",
            "font_color": "#000001",
            "background_color": "#ffffff",
        }
    ],
    playlist_id="6597acd5ed6f26a9c5ca9633",
    folder="697375fbfa2d1037283140e4",
)

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",
        collection_id="646df1c9173a4a2fcac180b4",
        profile_id="646df1c9173a4a2fcac180b7",
        format="ABR",
        tag=["ball"],
        description="some description",
        metadata={"headermeta": "metavalue"},
        call_to_actions=[
            {
                "start_time": 1,
                "end_time": 90,
                "text": "some test",
                "url": "https://some-url.com",
                "position_from_top": 11,
                "position_from_right": 23,
                "border_radius": "11",
                "font_color": "#000001",
                "background_color": "#ffffff",
            }
        ],
        playlist_id="6597acd5ed6f26a9c5ca9633",
        folder="697375fbfa2d1037283140e4",
    )


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",
        collection_id="646df1c9173a4a2fcac180b4",
        profile_id="646df1c9173a4a2fcac180b7",
        format="ABR",
        tag=["ball"],
        description="some description",
        metadata={"headermeta": "metavalue"},
        call_to_actions=[
            {
                "start_time": 1,
                "end_time": 90,
                "text": "some test",
                "url": "https://some-url.com",
                "position_from_top": 11,
                "position_from_right": 23,
                "border_radius": "11",
                "font_color": "#000001",
                "background_color": "#ffffff",
            }
        ],
        playlist_id="6597acd5ed6f26a9c5ca9633",
        folder="697375fbfa2d1037283140e4",
    )
except APIStatusError as err:
    print(err.status_code, err.message)
    raise

Documented error statuses: 400, 401, 403, 404, 4XX.


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

Powered by Scalar.

Release files for gumlet 0.3.0

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 0.3.0
File Size Uploaded
gumlet-0.3.0.tar.gz 185.9 kB Details

Built distribution (wheel)

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

Total release size: 438.1 kB

Release files / gumlet-0.3.0.tar.gz

Download URL gumlet-0.3.0.tar.gz
Size 185.9 kB
Tags Source
SHA-256 checksum
How to use checksums
5117d24459526e27e4373e846e081386668afb6ca53d26583e2f4bc5b59c9761
BLAKE2b-256 checksum
How to use checksums
6757a3a7570359d0cac771e92f25cd1d61bc55dbaee9f050dfa72181cf231b9a
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-0.3.0-py3-none-any.whl

Download URL gumlet-0.3.0-py3-none-any.whl
Size 252.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
240c28aca10d254ce3ab7da3adda2e500f675c25fa12dda86d7ce8582f05ba46
BLAKE2b-256 checksum
How to use checksums
656b8b00f65b8fd73bf22f150a57155a08f270fc35a3acf54d6bd4f6d1f79ccd
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

1.0.6

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

This release

0.3.0 This release

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