How to use the appier.App.__init__ function in appier

To help you get started, we’ve selected a few appier examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github hivesolutions / appier / examples / async / async_old.py View on Github external
def __init__(self, *args, **kwargs):
        appier.App.__init__(
            self,
            name = "async_old",
            *args, **kwargs
        )
github hivesolutions / appier / examples / hello / hello_async.py View on Github external
def __init__(self, *args, **kwargs):
        appier.App.__init__(
            self,
            name = "hello",
            *args, **kwargs
        )
github hivesolutions / appier / examples / async / async.py View on Github external
def __init__(self, *args, **kwargs):
        appier.App.__init__(
            self,
            name = "async",
            *args, **kwargs
        )
github hivesolutions / appier / examples / async / async_neo.py View on Github external
def __init__(self, *args, **kwargs):
        appier.App.__init__(
            self,
            name = "async_neo",
            *args, **kwargs
        )
github hivesolutions / appier / examples / hello / hello.py View on Github external
def __init__(self, *args, **kwargs):
        appier.App.__init__(
            self,
            name = "hello",
            *args, **kwargs
        )
github hivesolutions / appier / examples / complex / complex.py View on Github external
def __init__(self, *args, **kwargs):
        appier.App.__init__(
            self,
            name = "complex",
            *args, **kwargs
        )