import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.takeouts.create()
# Handle response
print(res)
{
"job_id": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.takeouts.create()
# Handle response
print(res)
{
"job_id": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
Successful Response
The response is of type object
.