This is a script written in python to fetch the release status of the next episode of your favourite TV Shows. This will help us in keeping track of all our favourite season and their latest episode's air time.
Checkout other images here.
You need requests, BeautifulSoup and colorama to run this script.
Run the following commands on your terminal
$ pip3 install -r requirements.txt
Using apt-get:
$ sudo apt-get install python3-requests
Using pip:
$ pip3 install requests
Using apt-get:
$ sudo apt-get install python3-bs4
Using pip:
$ pip3 install beautifulsoup4
Using pip:
$ pip3 install colorama
Fisrt you need to install virtualenv, if you don't already have one. Install it using the following command:
$ python3 -m pip3 install --user virtualenv
Then you need to create a virtual environment. To create a virtual environment, go to your project’s directory and run virtualenv using the following command:
$ python3 -m virtualenv env
Before you can start installing or using packages in your virtualenv you’ll need to activate it. Run the following command to activate virtualenv:
$ source env/bin/activate
Now, to install the required packages follow the instructions as mentioned under the section System-wide installation
.
Note:
- It is recommended to run
sudo apt-get update
before running the above commands. - If you don't have python3/pip3 installed, replace
python3
/pip3
withpython
/pip
and run the command. - If you like what you see give it a ⭐ .
Thanks @palash25(Palash Nigam) for README.md design inspiration ^_^