Metadata-Version: 2.1
Name: sudoaptinstall
Version: 0.2
Summary: Python3 module to install APT Packages.
Home-page: https://github.com/carlosplanchon/sudoaptinstall
Author: Carlos A. Planchón
Author-email: bubbledoloresuruguay2@gmail.com
License: GPL3
Download-URL: https://github.com/carlosplanchon/sudoaptinstall/archive/v0.2.tar.gz
Description: # sudoaptinstall
        *Python3 module to install APT Packages.*
        
        ## Installation
        ### Install with pip
        ```
        pip3 install -U sudoaptinstall
        ```
        
        ## Usage
        ```
        In [1]: import sudoaptinstall
        
        In [2]: from getpass import getpass
        
        In [3]: password = getpass()
        Password: ********
        
        # Satisfize dependencies with 
        # sudoaptinstall.satisfize_dependencies(root_password)
        
        In [4]: res = sudoaptinstall.sudo_apt_install(
            package_list=["git", "irssi"],
            password=password,
            use_torsocks=False
            )
        
        WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
        
        Reading package lists...
        Building dependency tree...
        Reading state information...
        git is already the newest version (1:2.17.1-1ubuntu0.4).
        irssi is already the newest version (1.0.5-1ubuntu4.1).
        0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
        
        In [5]: res.ok
        
        Out[5]: True
        ```
        
Keywords: sudo,apt,install
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
