import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.pronunciations.pronunciations_get_metadata()
# Handle response
print(res)
{
"entries": 123,
"hash": "<string>",
"source": ""
}
import os
from syllable_sdk import SyllableSDK
with SyllableSDK(
api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:
res = ss_client.pronunciations.pronunciations_get_metadata()
# Handle response
print(res)
{
"entries": 123,
"hash": "<string>",
"source": ""
}