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.
26 lines
514 B
26 lines
514 B
2 years ago
|
# 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.
|
||
|
|
||
|
## 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 %}
|
||
|
```
|