# 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 %} ```