setting up pages

This commit is contained in:
Shivan Sivakumaran 2021-05-23 22:29:03 +12:00
parent 4354fb3e11
commit 7d581d2f03
2 changed files with 15 additions and 0 deletions

Binary file not shown.

View File

@ -84,6 +84,21 @@
- use `beautifulsoup`, `scraPY`, `selenium`
- YouTube Data API
</section>
<section data-markdown>
## Storing passwords
- Hard code?
- `python-dotenv`
- `.env`
- `.gitignore`
</section>
<section data-markdown>
```python
from dotenv import load_dotenv
load_dotenv()
API_KEY = os.getenv('API_KEY')
```
</section>
<section data-markdown>
## How does TubeStats work?
### Part 2 of 2