├── CHANGELOG.rst ├── LICENSE ├── README.rst ├── py_wype.py ├── requirements.txt └── tests ├── get_valid_user_input.py ├── test_is_linux.py └── test_user_is_root.py /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshki/pyWype/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshki/pyWype/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshki/pyWype/HEAD/README.rst -------------------------------------------------------------------------------- /py_wype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshki/pyWype/HEAD/py_wype.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | future==1.0.0 2 | regex==2017.7.28 3 | -------------------------------------------------------------------------------- /tests/get_valid_user_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshki/pyWype/HEAD/tests/get_valid_user_input.py -------------------------------------------------------------------------------- /tests/test_is_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshki/pyWype/HEAD/tests/test_is_linux.py -------------------------------------------------------------------------------- /tests/test_user_is_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marshki/pyWype/HEAD/tests/test_user_is_root.py --------------------------------------------------------------------------------