A digital life memoir of your life
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Netflix Capturer
|
|
|
|
|
|
|
|
Steam Capturer captures watched movies and series on Netflix.
|
|
|
|
|
|
|
|
There is no API. We need to scrap the user account page to find that out.
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
Sadly, we may need username and password in the configuration, besides the IP
|
|
|
|
and PORT of the Store.
|
|
|
|
|
|
|
|
## Internals
|
|
|
|
|
|
|
|
We need to keep a list of watched content:
|
|
|
|
|
|
|
|
- `id` (maybe): ID of the movie/episode.
|
|
|
|
- `name`: Name of the movie.
|
|
|
|
- `watch_date`: Date the movie/episode was watched.
|
|
|
|
|
|
|
|
## Output
|
|
|
|
|
|
|
|
```
|
|
|
|
{% for content in new_content %}
|
|
|
|
Watched {{ content.name }}.
|
|
|
|
{% endfor %}
|
|
|
|
```
|