Explore the API documentation for [Heapstream.com](//heapstream.com)! ## Authentication Authentication is done through Basic Authentication [wikipedia](https://en.wikipedia.org/wiki/Basic_access_authentication) [RFC7617](https://datatracker.ietf.org/doc/html/rfc7617). For `username` you should use the `id` of the ApiKey. For `password` you should use the `password` of the ApiKey.
Project description
Heapstream Python SDK 1.1.0
Welcome to the Heapstream SDK documentation. This guide will help you get started with integrating and using the Heapstream SDK in your project.
Versions
- API version:
1.0 - SDK version:
1.1.0
About the API
Explore the API documentation for Heapstream.com! ## Authentication Authentication is done through Basic Authentication wikipedia RFC7617. For username you should use the id of the ApiKey. For password you should use the password of the ApiKey.
Table of Contents
Setup & Configuration
Supported Language Versions
This SDK is compatible with the following versions: Python >= 3.7
Installation
To get started with the SDK, we recommend installing using pip:
pip install heapstream
Authentication
Basic Authentication
The Heapstream API uses Basic Authentication.
You need to provide your username and password when initializing the SDK.
Setting the Username and Password
When you initialize the SDK, you can set the username and password as follows:
Heapstream(
username="YOUR_USERNAME",
password="YOUR_PASSWORD",
timeout=10000
)
If you need to set or update the username and password after initializing the SDK, you can use:
sdk.set_basic_auth("YOUR_USERNAME", "YOUR_PASSWORD")
Setting a Custom Timeout
You can set a custom timeout for the SDK's HTTP requests as follows:
from heapstream import Heapstream
sdk = Heapstream(timeout=10000)
Sample Usage
Below is a comprehensive example demonstrating how to authenticate and call a simple endpoint:
from heapstream import Heapstream
sdk = Heapstream(
username="YOUR_USERNAME",
password="YOUR_PASSWORD",
timeout=10000
)
result = sdk.project.list_projects()
print(result)
Services
The SDK provides various services to interact with the API.
Below is a list of all available services:
| Name |
|---|
| project |
| direct_upload |
| player |
| stats |
| video |
| audio_track |
| poster |
| text_track |
| watermark |
| webhook |
Models
The SDK includes several models that represent the data structures used in API requests and responses. These models help in organizing and managing the data efficiently.
Below is a list of all available models:
| Name | Description |
|---|---|
| ProjectList | |
| ProjectCreate | |
| Project | |
| ProjectEdit | |
| DirectUploadStart | Schema used to start a multipart direct upload to our S3 storage. |
| DirectUploadResponse | |
| DirectUploadListPart | |
| DirectUploadCompleteArgs | |
| PartIdResponse | |
| PlayerList | |
| PlayerCreate | |
| Player | |
| PlayerEdit | |
| EngagementStats | |
| PerformanceStats | |
| VideoList | |
| VideoStatus | |
| VideoFetch | |
| Video | |
| VideoEdit | |
| PresetList | |
| AudioTrackList | |
| AudioTrackCreate | |
| AudioTrack | |
| AudioTrackEdit | |
| PosterList | |
| MultipartFile | |
| Poster | |
| PosterEdit | |
| TextTrackList | |
| TextTrackCreate | |
| TextTrack | |
| TextTrackGenerate | |
| TextTrackEdit | |
| WatermarkList | |
| WatermarkCreate | |
| Watermark | |
| WebhookList | |
| WebhookCreate | |
| Webhook | |
| TtAutoLang | |
| UploadMetadata | The nested schema to upload a video. |
| EncodingTier | |
| Asset | |
| AssetError | |
| AssetErrorType | |
| DirectUploadPart | |
| PlayerLogoPosition | |
| PlayerSkin | |
| OnlyTrueEnum | |
| EngagementStatsRow | |
| PerformanceStatsRow | |
| Pagination | Pagination response schema Used to serialize pagination metadata. Its main purpose is to document the pagination metadata. |
| Preset | |
| PresetType | |
| AudioTrackStatus | |
| AudioTrackType | |
| TextTrackStatus | |
| TextTrackType | |
| TextTrackUploadType | |
| AutoCaption | |
| WatermarkPosition |
License
This SDK is licensed under the MIT License.
See the LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file heapstream-1.1.0.tar.gz.
File metadata
- Download URL: heapstream-1.1.0.tar.gz
- Upload date:
- Size: 60.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bd246758d685cea9e0e0ab58f2c4a0e265b3526763bf47d4fff3f0222e1e2f4
|
|
| MD5 |
c45a386b3ee65419504fc1e72738a796
|
|
| BLAKE2b-256 |
4afb5ddc16577c3197387203a7bdde23f33d02c264990c1a3f74b98f30bfc2a7
|
File details
Details for the file heapstream-1.1.0-py3-none-any.whl.
File metadata
- Download URL: heapstream-1.1.0-py3-none-any.whl
- Upload date:
- Size: 97.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ec4bd62e79c7e621a084ec2c77d0248b21f65ebbb72c2bdba628d527d1a088c
|
|
| MD5 |
e1f57604db7c9011094b1fcb9c2cc95f
|
|
| BLAKE2b-256 |
55c80d3110e99a85839f7c2c0dc67e36df62676417511443d3ef3417a44fb8ff
|