dropin

alternative frontend for dropout.tv
git clone https://git.ce9e.org/dropin.git

commit
2e266b66973b10d3140314f88e21c31b24aa0b21
parent
8fa83dc21800c101c110c9369be9d4b1d9eed803
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2025-02-06 19:29
add README

Diffstat

A README.md 14 ++++++++++++++
A requirements.txt 2 ++

2 files changed, 16 insertions, 0 deletions


diff --git a/README.md b/README.md

@@ -0,0 +1,14 @@
   -1     1 [Dropout](https://www.dropout.tv) is a comedy subscription streaming service.
   -1     2 Unfortunately, I had issue with their website, so I created a separate
   -1     3 frontend.
   -1     4 
   -1     5 Dropout uses [Vimeo OTT](https://dev.vhx.tv/docs/api/). It should be relatively
   -1     6 easy to adapt this code to any other service based on the same technology. The
   -1     7 only Dropout-specific code is the authentication.
   -1     8 
   -1     9 ## Usage
   -1    10 
   -1    11 ```
   -1    12 pip install -r requirements.txt
   -1    13 DROPOUT_EMAIL='me@example.com' DROPOUT_PASSWORD='abc123' python3 dropout.py
   -1    14 ```

diff --git a/requirements.txt b/requirements.txt

@@ -0,0 +1,2 @@
   -1     1 aiohttp
   -1     2 Jinja2