Skip to content

Commit b0d5ae3

Browse files
Merge pull request #174 from dvonthenen/restructure-project-part4
Restructure Python v3 (Part 4) - Removes `__pycache__` Dirs
2 parents c7f9b0d + 4c80c52 commit b0d5ae3

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.env.example

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
DG_API_KEY=""
2+
DG_API_KEY_MANAGE=""
3+
DG_PROJECT_ID="85bb84f9-02d8-742a-df82-"
4+
DG_API_KEY_ID=""
5+
DG_MEMBER_ID=""
6+
DG_REQUEST_ID=""
7+
DG_BALANCE_ID=""
8+
EMAIL=""

deepgram/clients/abstract_restful_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
from ..errors import DeepgramApiError, DeepgramUnknownApiError, DeepgramUnknownError
66

7-
87
class AbstractRestfulClient:
98
"""
109
An abstract base class for a RESTful HTTP client.

deepgram/clients/prerecorded/prerecorded_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from .transcription_options import PrerecordedOptions
77
from .prerecorded_response import AsyncPrerecordedResponse, SyncPrerecordedResponse
88

9-
109
class PreRecordedClient(AbstractRestfulClient):
1110
"""
1211
A client class for handling pre-recorded audio data. Provides methods for transcribing audio from URLs and files.

0 commit comments

Comments
 (0)