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

Restructure Python v3 (Part 4) - Removes __pycache__ Dirs #174

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -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=""
1 change: 0 additions & 1 deletion deepgram/clients/abstract_restful_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

from ..errors import DeepgramApiError, DeepgramUnknownApiError, DeepgramUnknownError


class AbstractRestfulClient:
"""
An abstract base class for a RESTful HTTP client.
Expand Down
1 change: 0 additions & 1 deletion deepgram/clients/prerecorded/prerecorded_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down