Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/geetu040/transcription-tool


https://github.com/geetu040/transcription-tool

Last synced: 6 days ago
JSON representation

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")
```