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
- Usage
- API Reference
- Async
- Authentication
- Errors
- Client Options
- Retries and Timeouts
- Helpers
- Logging
- Requirements
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_KEYbearer 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 rawhttpx.Responseand parse it yourself. - Use
client.with_streaming_response.<resource>.<method>(...)to stream a response body without buffering it.
Logging
- Set the
GUMLET_LOGenvironment variable toinfoordebugto enable HTTP logging. - Logs are emitted through the standard
loggingmodule under thegumletlogger.
Requirements
- Python 3.8 or newer
Powered by Scalar.
Release files for gumlet 0.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| gumlet-0.2.0.tar.gz | 184.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| gumlet-0.2.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 432.8 kB
Release files / gumlet-0.2.0.tar.gz
| Download URL | gumlet-0.2.0.tar.gz |
|---|---|
| Size | 184.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
1b747c35ab15ea540d607cec30a31d85db602315122d12861f656140b0b6b23e
|
|
BLAKE2b-256 checksum How to use checksums |
050bc2d66c6a528979af463cb10f3e1a0f2425028fd071a0a3790a65be184f8b
|
| 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 18, 2026.
Transparency logRelease files / gumlet-0.2.0-py3-none-any.whl
| Download URL | gumlet-0.2.0-py3-none-any.whl |
|---|---|
| Size | 248.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
03b6789f37bbc03f63d98898969b306a347c1fa44ff278f30daa607feecfc8da
|
|
BLAKE2b-256 checksum How to use checksums |
f23eccffe4074e3dabd72d0efec9eea9c6fc38f433f2420ccd79734c80a362b8
|
| 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 18, 2026.
Transparency log