Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pythonik/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from pythonik.specs.metadata import MetadataSpec
from pythonik.specs.search import SearchSpec
from pythonik.specs.collection import CollectionSpec
from pythonik.specs.transcode import TranscodeSpec


# Iconik APIs
Expand Down Expand Up @@ -50,3 +51,6 @@ def search(self):

def jobs(self):
return JobSpec(self.session, self.timeout, self.base_url)

def transcode(self) -> TranscodeSpec:
return TranscodeSpec(self.session, self.timeout, self.base_url)
Loading