Metadata-Version: 1.1
Name: uname2
Version: 0.1.0
Summary: Print certain system information.
Home-page: https://github.com/appstore-zencore/uname2
Author: zencore
Author-email: dobetter@zencore.cn
License: MIT
Description: uname2
        ======
        
        Print certain system information.
        
        Install
        -------
        
        ::
        
            pip install uname2
        
        
        Usage
        -----
        
        ::
        
            PS E:\code\uname2> uname2 --help
            Usage: uname2 [OPTIONS]
        
            Print certain system information.  With no OPTION, same as -s.
        
            Options:
            -a, --all             print all information
            -s, --kernel-name     print the kernel name
            -n, --nodename        print the network node hostname
            -r, --kernel-release  print the kernel release
            -v, --kernel-version  print the kernel version
            -m, --machine         print the machine hardware name
            -p, --processor       print the hardware platform or "unknown"
            --help                Show this message and exit.
            PS E:\code\uname2>
        
        Example
        -------
        
        ::
        
            PS E:\code\uname2> uname2
            Windows
            PS E:\code\uname2> uname2 -a
            Windows DESKTOP-OR9GS4G 10 10.0.16299 AMD64 Intel64 Family 6 Model 60 Stepping 3, GenuineIntel
            PS E:\code\uname2> uname2 -snrvmp
            Windows DESKTOP-OR9GS4G 10 10.0.16299 AMD64 Intel64 Family 6 Model 60 Stepping 3, GenuineIntel
            PS E:\code\uname2>
        
Keywords: uname2
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires: click
