Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 976 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 976 Bytes

theUnixManager

theUnixManagerEdited

theUnixManager - ultimate package manager && init system handling library made by Archetypum that simplifies interaction with UNIX systems and creation of system-related python scripts.

Installation (as root):

pip install theUnixManager

And then use it in your python scripts:

#!/usr/bin/python3

import the_unix_manager as tum

distro = tum.get_user_distro()
init_system = tum.get_init_system()

tum.package_handling(distro, package_list=["git", "vim", "htop", "emacs"], command="install")
tum.init_system_handling(init_system, command="start", service="ssh")

License

theUnixManager uses GNU Lesser General Public License v3.

More information in:

gnu