Build your first elegant python app!
To install the executioner you only need to register the command indicated below. Then you can start writing your application by connecting the modules of this framework.
pip install soigne
After installing the framework, you need to create the file __main __.py
in the folder of your project and place
the code from the example below in it.
import sys
import os
from soigne.container import App
from soigne.components.configs import Configs
from soigne.components.l10n import Translation
from myapplication import MyApplication
def register_configs(app, configs, *args):
""" Configs register method.
"""
return configs(app.path('configs/')).read()
def register_translator(a, translator, *args):
""" Translator register method.
"""
return translator(app.path('resources/lang/'), app.get('config').l10n['default_language'])
def application_build(app, event):
""" Application build event handler.
"""
pass
app = App(os.path.dirname(__file__)) # Init our app and set base constants
app.NAME = 'application_name'
app.DESCRIPTION = 'Application description'
app.URL = ''
app.VERSION = '0.1.0.dev1'
# Register some application components
app.register('config', Configs, registerer=register_configs)
app.register('translator', Translation, registerer=register_translator)
app.register('component', 'my_application', MyApplication)
# Register some event handlers
app.dispatch('application_build', application_build)
# Build and start our app.
# As the first parameter of the application start method, you need to specify the name of the component that will process the logic of
# your application. Next parameters is optional and need to starting up your app.
app.start('my_application', sys.argv)
Hangman is obviously strongly dependent on pygame-2.0 and Python-3.8.
This framework is distributed under GNU General Public License v3.0. More in LICENSE file.