An open API service indexing awesome lists of open source software.

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.

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
```