Simple script to reboot your Jio Router remotely or automatically, even if you're too lazy to unplug and replug the adapter. Effortless network reset in a few lines of code.
pip install git+https://github.com/gauravsingh06/jio-reboot.git# First time running will prompt for credentials
jioreboot
# To reconfigure your router credentials
jioreboot --configure
# See all available options
jioreboot --help
# Enable debug mode
jioreboot --debugTo remove this package, first ensure it is installed. You can check the installed packages with:
pip listIf jioreboot is listed, you can uninstall it with the following command:
pip uninstall jioreboot- Securely saves router credentials for future use
- Fixed URL for the JioFiber router (http://192.168.29.1/platform.cgi)
- Command-line options to override saved username and password
- Reconfiguration option to update saved settings
- Color-coded output for better readability
- Python 3.6+
- requests
- beautifulsoup4
- urllib3
