Metadata-Version: 2.1
Name: autolinux
Version: 0.0.1
Summary: Linux automation classes
Home-page: https://github.com/ilkermanap/autolinux
Author: Ilker Manap
Author-email: ilkermanap@gmail.com
License: UNKNOWN
Description: # AutoLinux
        
        The purpose of these classes are to help people with limited knowledge of linux.
        
        With the help of these classes, we can create a list of actions for specific purposes.
        
            from linux import User, Server
        
            u = User(username="ilker", keyfile="/home/ilker/.ssh/id_rsa")
            s = Server("blog.manap.se",u)
            out = s.user.run_command("df -h")
            print(out["stdout"])
        
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
