Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add List transcripts support #57

Closed
ploeber opened this issue Mar 14, 2024 · 2 comments
Closed

Add List transcripts support #57

ploeber opened this issue Mar 14, 2024 · 2 comments
Assignees

Comments

@ploeber
Copy link
Contributor

ploeber commented Mar 14, 2024

@ploeber ploeber self-assigned this May 2, 2024
@leotulipan
Copy link

leotulipan commented May 9, 2024

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

@ploeber
Copy link
Contributor Author

ploeber commented May 10, 2024

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 :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants