setting up pages
This commit is contained in:
parent
4354fb3e11
commit
7d581d2f03
BIN
.index.html.swp
BIN
.index.html.swp
Binary file not shown.
15
index.html
15
index.html
|
@ -84,6 +84,21 @@
|
||||||
- use `beautifulsoup`, `scraPY`, `selenium`
|
- use `beautifulsoup`, `scraPY`, `selenium`
|
||||||
- YouTube Data API
|
- YouTube Data API
|
||||||
</section>
|
</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>
|
<section data-markdown>
|
||||||
## How does TubeStats work?
|
## How does TubeStats work?
|
||||||
### Part 2 of 2
|
### Part 2 of 2
|
||||||
|
|
Loading…
Reference in New Issue