https://github.com/michdo93/webtv_selenium
A Python script for login to german webtv livestreams via your browser.
https://github.com/michdo93/webtv_selenium
Last synced: 7 days ago
JSON representation
A Python script for login to german webtv livestreams via your browser.
- Host: GitHub
- URL: https://github.com/michdo93/webtv_selenium
- Owner: Michdo93
- Created: 2023-08-14T19:16:11.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-14T19:26:14.000Z (almost 3 years ago)
- Last Synced: 2025-10-24T12:36:03.310Z (9 months ago)
- Language: Python
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# webtv_selenium
A Python script for login to german webtv livestreams via your browser.
# Installation
At first you have to install
```
python3 -m pip install PyAutoGUI
python3 -m pip install numpy
python3 -m pip install pillow
python3 -m pip install opencv-python
python3 -m pip install selenium
```
Then you have to clone the repository with:
```
git clone https://github.com/Michdo93/webtv_selenium.git
```
Also you have to make sure that you have installed your browser and browser driver. This could be the [geckodriver](https://github.com/mozilla/geckodriver/releases) for Mozilla Firefox or [ChromeDriver](https://chromedriver.chromium.org/downloads/version-selection) for your Chrome browser.
Also your Browser and your Browser Driver must be in the `PATH` variable because `shutil` should find it.
# Configuration
You have to change the `` to the path where you have placed your images. Then you have to change `` and `` with the email address and password of your account.
# Usage
You can run it with following arguments:
```
# Kabel Eins
python3 selenium.py "Kabel Eins"
# Kabel Eins Doku
python3 selenium.py "Kabel Eins Doku"
# Sat.1
python3 selenium.py "SAT.1"
# Sat.1 Gold
python3 selenium.py "SAT1.GOLD"
# Pro 7
python3 selenium.py "ProSieben"
# Pro 7 Maxx
python3 selenium.py "ProSieben MAXX"
# sixx
python3 selenium.py "sixx"
```
Normally `shutil` should find your browser driver and browser if they are in the `PATH` variable.