Skip to content

Module modern_python_package.cli

Command-line interface for the package.

??? example "View Source" """

    Command-line interface for the package.

    """



    from modern_python_package.core import inner_method



    def main():

        """

        Command line entrypoint for the package.

        """

        print("Hi from the `main` entrypoint!")

        inner_method("**", 100)

Functions

main

def main(

)

Command line entrypoint for the package.

??? example "View Source" def main():

        """

        Command line entrypoint for the package.

        """

        print("Hi from the `main` entrypoint!")

        inner_method("**", 100)