Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geetu040/transcription-tool
https://github.com/geetu040/transcription-tool
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/geetu040/transcription-tool
- Owner: geetu040
- Created: 2023-11-26T11:56:34.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2023-12-08T20:01:25.000Z (12 months ago)
- Last Synced: 2023-12-08T21:21:54.944Z (12 months ago)
- Language: JavaScript
- Size: 6.38 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project 1
## AI Transcript generator- fill .env file
```
OPEN_AI_API_KEY=your_api_key
```- load the environment variables
```python
from dotenv import load_dotenv
load_dotenv()
api_key = os.getenv("OPEN_AI_API_KEY")
```