AssemblyAI/assemblyai-python-sdk

Add List transcripts support

Closed this issue · 2 comments

for now I am doing the inelegant

           url = "https://api.assemblyai.com/v2/transcript"
            headers = {
                "Authorization": os.getenv("ASSEMBLY_AI_KEY")
            }

            response = requests.get(url, headers=headers)

            data = response.json()
            
            for i, transcript in enumerate(data["transcripts"]):
               # processing here

Yup, that's the perfect way to do it with requests, thanks for sharing! We're aiming to ship SDK support for this next week :)