Tool for automating daily activities
Feature: how to create installable python module explained with two real use cases
- If you have joined an organisation, calculate since how many days you are there
- Automate opening your favourite digital epaper ( its just automating opening browser and some clicks to 1 command )
Instructions to use:
- Clone the repo
- Install packages from requirements.txt
pip install -r requirements.txt
- (case 1)Download geckodriver from below link and provide path of geckodriver in script
browser = webdriver.Firefox(executable_path=r'YOUR_GECKODRIVER_PATH')
https://github.com/mozilla/geckodriver/releases
- (case 2) This script tells you time duration time since when in current company .Replace your joining date in script
joining_day = datetime.date(year, month, day)
- Create python module out of this script
python setup.py sdist
python setup.py install
- Run module from any path on cmd
python -m pyclone daysincompany 0
or
python -m pyclone paper ak
[ak, bul, lk] are codename I have given to papers you can modify that.
