Authorizations
Response
200 - text/csv
CSV download
The response is of type file
.
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_download_csv()
# Handle response
print(res)
This response does not have an example.
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_download_csv()
# Handle response
print(res)
This response does not have an example.
CSV download
The response is of type file
.