working on presentation
This commit is contained in:
parent
7d581d2f03
commit
4217c9d4e1
|
@ -92,11 +92,20 @@
|
|||
- `.gitignore`
|
||||
</section>
|
||||
<section data-markdown>
|
||||
```
|
||||
# .env
|
||||
|
||||
API_KEY=xxxxxxxx
|
||||
```
|
||||
|
||||
```python
|
||||
# tubestats/youtube_api.py
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
load_dotenv()
|
||||
API_KEY = os.getenv('API_KEY')
|
||||
|
||||
```
|
||||
</section>
|
||||
<section data-markdown>
|
||||
|
|
Loading…
Reference in New Issue