├── .DS_Store ├── .gitignore ├── CONTRIBUTING.md ├── Gui.py ├── LICENSE ├── README.md ├── asset ├── .DS_Store ├── __init__.py ├── img │ ├── .DS_Store │ ├── facebook.png │ ├── groot.png │ ├── icon2.ppm │ ├── random.png │ └── youtube.png └── modules │ ├── OpenUrl │ ├── __init__.py │ └── openurl.py │ ├── __init__.py │ ├── mailLib │ ├── __init__.py │ └── mailreply.py │ ├── newsLib │ ├── __init__.py │ └── newsLibrary.py │ ├── notesLib │ ├── __init__.py │ └── authenticator.py │ └── playvideo │ ├── __init__.py │ └── play.py ├── base.py ├── bored.py ├── groot.py ├── mailWindow.py ├── newsWindow.py ├── notesWindow.py ├── requirements ├── LINUX FIX ├── requirements-linux.txt ├── requirements-mac.txt └── requirements-win.txt ├── speechtotext.py └── texttospeech.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/Gui.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/README.md -------------------------------------------------------------------------------- /asset/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/asset/.DS_Store -------------------------------------------------------------------------------- /asset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asset/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/asset/img/.DS_Store -------------------------------------------------------------------------------- /asset/img/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/asset/img/facebook.png -------------------------------------------------------------------------------- /asset/img/groot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/asset/img/groot.png -------------------------------------------------------------------------------- /asset/img/icon2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/asset/img/icon2.ppm -------------------------------------------------------------------------------- /asset/img/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/asset/img/random.png -------------------------------------------------------------------------------- /asset/img/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/asset/img/youtube.png -------------------------------------------------------------------------------- /asset/modules/OpenUrl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asset/modules/OpenUrl/openurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/asset/modules/OpenUrl/openurl.py -------------------------------------------------------------------------------- /asset/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asset/modules/mailLib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asset/modules/mailLib/mailreply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/asset/modules/mailLib/mailreply.py -------------------------------------------------------------------------------- /asset/modules/newsLib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asset/modules/newsLib/newsLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/asset/modules/newsLib/newsLibrary.py -------------------------------------------------------------------------------- /asset/modules/notesLib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asset/modules/notesLib/authenticator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/asset/modules/notesLib/authenticator.py -------------------------------------------------------------------------------- /asset/modules/playvideo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /asset/modules/playvideo/play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/asset/modules/playvideo/play.py -------------------------------------------------------------------------------- /base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/base.py -------------------------------------------------------------------------------- /bored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/bored.py -------------------------------------------------------------------------------- /groot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/groot.py -------------------------------------------------------------------------------- /mailWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/mailWindow.py -------------------------------------------------------------------------------- /newsWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/newsWindow.py -------------------------------------------------------------------------------- /notesWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/notesWindow.py -------------------------------------------------------------------------------- /requirements/LINUX FIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/requirements/LINUX FIX -------------------------------------------------------------------------------- /requirements/requirements-linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/requirements/requirements-linux.txt -------------------------------------------------------------------------------- /requirements/requirements-mac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/requirements/requirements-mac.txt -------------------------------------------------------------------------------- /requirements/requirements-win.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/requirements/requirements-win.txt -------------------------------------------------------------------------------- /speechtotext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/speechtotext.py -------------------------------------------------------------------------------- /texttospeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugroot/GROOT/HEAD/texttospeech.py --------------------------------------------------------------------------------