https://github.com/michdo93/python-german-epg
EPG for German TV using web scraping (BeautifulSoup) from TV Spielfilm written in Python.
https://github.com/michdo93/python-german-epg
Last synced: over 1 year ago
JSON representation
EPG for German TV using web scraping (BeautifulSoup) from TV Spielfilm written in Python.
- Host: GitHub
- URL: https://github.com/michdo93/python-german-epg
- Owner: Michdo93
- Created: 2023-09-03T12:44:17.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-03T12:49:16.000Z (almost 3 years ago)
- Last Synced: 2025-01-14T06:19:33.447Z (over 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# python-german-epg
EPG for German TV using web scraping (BeautifulSoup) from TV Spielfilm written in Python.
# Installation and usage
You have to choose if you want to run it with `Python 2.7` or `Python 3.x`. For `Python 2.7` you have to run:
```
python -m pip install requests
python -m pip install beautifulsoup4
wget https://raw.githubusercontent.com/Michdo93/python-german-epg/main/epg_python2.py
mv epg_python2.py epg.py
python epg.py
```
And for `Python 3.x` you have to run:
```
python3 -m pip install requests
python3 -m pip install beautifulsoup4
wget https://raw.githubusercontent.com/Michdo93/python-german-epg/main/epg_python3.py
mv epg_python3.py epg.py
python3 epg.py
```