def sys_info(): """Get platform info.""" import platform sys_info_tup = platform.uname() return (sys_info_tup[0], sys_info_tup[1])