Constructor
from phoopy.kernel import Kernel
kernel = Kernel('dev', True)from phoopy.kernel import Kernel
kernel = Kernel('dev', True)
kernel.get_environment() # ~> devfrom phoopy.kernel import Kernel
kernel = Kernel('dev', True)
kernel.boot()Returns the root directory
Returns the app directory
Returns the var directory
Returns the parameters as dict
Returns the Container object
from phoopy.kernel import Container
container = Container()Add a container item
from phoopy.kernel import Container
container = Container()
container['hello_world'] = lambda container: 'Hello World'Returns all keys
Returns a container item or Raise an exception
Returns all container items that has a given tag
from phoopy.kernel import Bundle
bundle = Bundle()Returns the Bundle Class name
Returns the Bundle root directory
Should be implemented in order to return a service path if it is necessary
Set Kernel
Get Kernel
Set Container
Get Container
Should be implemented in order to setup some needed stuff it it is necessary