diff --git a/.env.example b/.env.example new file mode 100644 index 00000000..5f10400b --- /dev/null +++ b/.env.example @@ -0,0 +1,8 @@ +DG_API_KEY="" +DG_API_KEY_MANAGE="" +DG_PROJECT_ID="85bb84f9-02d8-742a-df82-" +DG_API_KEY_ID="" +DG_MEMBER_ID="" +DG_REQUEST_ID="" +DG_BALANCE_ID="" +EMAIL="" \ No newline at end of file diff --git a/deepgram/clients/abstract_restful_client.py b/deepgram/clients/abstract_restful_client.py index 7f04bb4b..3fb30779 100644 --- a/deepgram/clients/abstract_restful_client.py +++ b/deepgram/clients/abstract_restful_client.py @@ -4,7 +4,6 @@ from ..errors import DeepgramApiError, DeepgramUnknownApiError, DeepgramUnknownError - class AbstractRestfulClient: """ An abstract base class for a RESTful HTTP client. diff --git a/deepgram/clients/prerecorded/prerecorded_client.py b/deepgram/clients/prerecorded/prerecorded_client.py index ea16dcd7..8f2e63b4 100644 --- a/deepgram/clients/prerecorded/prerecorded_client.py +++ b/deepgram/clients/prerecorded/prerecorded_client.py @@ -6,7 +6,6 @@ from .transcription_options import PrerecordedOptions from .prerecorded_response import AsyncPrerecordedResponse, SyncPrerecordedResponse - class PreRecordedClient(AbstractRestfulClient): """ A client class for handling pre-recorded audio data. Provides methods for transcribing audio from URLs and files.