A command-line application you can use to notify you when a show is available on BookMyShow.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
- Linux
- Windows
- Mac
You'll need Python 3.0+ installed before installing and using this package.
Debian/Ubuntu users can use the following command to install python3
and pip
on your system.
sudo apt install python3 python3-pip
If you're a Windows user, you can download Python3 here. Make sure you check the option Add Python to PATH.
If you're a MacOS user, follow this link to see how to install Python.
Or you can run the following commands to install Python using homebrew:
brew install python
easy_install pip
After installing Python, run the following command from the cloned project directory to install the package:
python3 ./bookmyshow_notify/setup.py install
Once the installation is complete, you can verify the installation by running:
bookmyshow_notify --help
which should give you the following output:
usage: bookmyshow_notify [-h] [--url URL] [--date DATE]
[--keywords [KEYWORDS [KEYWORDS ...]]] [--seconds S]
[--movie MOVIE] [--location LOCATION] [--format FORMAT]
BookMyShow notifier CLI.
optional arguments:
-h, --help show this help message and exit
--url URL URL to the movie's page on in.bookmyshow.com
--date DATE Date to check for, in format DD-MM-YYYY.
--keywords [KEYWORDS [KEYWORDS ...]]
Names of multiplexes or theatres to check for. If no
arguments are passed, it checks for any venue on the
given date.
--seconds S Time in seconds to keep checking after (default: 60s).
--movie MOVIE Name of the show you're searching for.
--location LOCATION Your location. Eg: bengaluru, kochi, trivandrum.
--format FORMAT Movie format. Eg: 2D, 3D, IMAX3D etc.
- Concise error handling and validation
- Host this package on PyPI
- Proper releases
- Write unit tests
- TravisCI integration
- BeautifulSoup4 - The Python library used to work with HTML
- Sreesh Mallya - Initial work - sreesh-mallya
This project is licensed under the GPL-3.0 License - see the LICENSE.md file for details.
- Original idea inspired from this answer on Quora by @manojmj92.