Skip to content

Commit ffbf356

Browse files
committed
chore: clean up examples
1 parent eb03638 commit ffbf356

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

examples/auth/async_token/main.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,15 @@
55
import asyncio
66
import os
77
from dotenv import load_dotenv
8-
import logging
98
from deepgram.utils import verboselogs
109

1110
from deepgram import (
1211
DeepgramClient,
13-
PrerecordedOptions,
1412
DeepgramClientOptions
1513
)
1614

1715
load_dotenv()
1816

19-
AUDIO_URL = {
20-
"url": "https://static.deepgram.com/examples/Bueller-Life-moves-pretty-fast.wav"
21-
}
22-
23-
2417
async def main():
2518
try:
2619
# STEP 1 Create a Deepgram client using the DEEPGRAM_API_KEY from your environment variables

examples/auth/token/main.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,15 @@
44

55
import os
66
from dotenv import load_dotenv
7-
import logging
87
from deepgram.utils import verboselogs
98

109
from deepgram import (
1110
DeepgramClient,
12-
PrerecordedOptions,
1311
DeepgramClientOptions
1412
)
1513

1614
load_dotenv()
1715

18-
AUDIO_URL = {
19-
"url": "https://static.deepgram.com/examples/Bueller-Life-moves-pretty-fast.wav"
20-
}
21-
22-
2316
def main():
2417
try:
2518
# STEP 1 Create a Deepgram client using the DEEPGRAM_API_KEY from your environment variables

0 commit comments

Comments
 (0)