Python-ELMO is a Python library which offers an encapsulation of the binary tool ELMO, in order to manipulate it easily in Python and SageMath script.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import os
-
- ### Configuration of the module
-
- TEMPLATE_REPOSITORY = 'templates'
- PROJECTS_REPOSITORY = 'projects'
- ELMO_TOOL_REPOSITORY = 'elmo-tool'
- ELMO_EXECUTABLE_NAME = 'elmo'
- ELMO_OUTPUT_ENCODING = 'latin-1'
- ELMO_INPUT_FILE_NAME = 'input.txt'
-
- MODULE_PATH = os.path.dirname(os.path.abspath(__file__))
-
- SEARCH_EXCLUSION_TAG = 'EXCLUDE-FROM-SIMULATION-SEARCH'
-
- # ELMO Server
- DEFAULT_HOST = 'localhost'
- DEFAULT_PORT = 5000
|