unzip-installed

Example:

# Install 'unzip'
- unzip-installed

Description

Install the 'unzip' package.

Examples

Example 1

Install 'unzip'

Code
- unzip-installed

Code

doc:
  short_help: Install the 'unzip' package.
  examples:
  - title: Install 'unzip'
frecklets:
- package-installed:
    package: unzip
frecklecute unzip-installed --help

Usage: frecklecute unzip-installed [OPTIONS]

  Install the 'unzip' package.

Options:
  --help  Show this message and exit.
# -*- coding: utf-8 -*-


#
# module path: pycklets.unzip_installed.UnzipInstalled
#


from dataclasses import dataclass
from pyckles import AutoPycklet
from typing import *    # noqa

@dataclass
class UnzipInstalled(AutoPycklet):
    """Install the 'unzip' package.

       Args:

    """

    FRECKLET_ID = "unzip-installed"



    def __post_init__(self):
        super(UnzipInstalled, self).__init__(var_names=[])


frecklet_class = UnzipInstalled
# -*- coding: utf-8 -*-


#
# module path: pycklets.unzip_installed.UnzipInstalled
#


from pyckles import AutoPycklet

class UnzipInstalled(AutoPycklet):
    """Install the 'unzip' package.

       Args:

    """

    FRECKLET_ID = "unzip-installed"

    def __init__(self, ):

        super(UnzipInstalled, self).__init__(var_names=[])



frecklet_class = UnzipInstalled