config.py 747 B

1234567891011121314151617
  1. """
  2. Contain the application's configuration including the scenario configurations.
  3. The configuration is run by the Core service.
  4. """
  5. from algorithms import *
  6. from taipy import Config
  7. # #############################################################################
  8. # PLACEHOLDER: Put your application's configurations here #
  9. # #
  10. # Example: #
  11. # scenario_config = Config.configure_scenario("placeholder_scenario", []) #
  12. # Comment, remove or replace the previous lines with your own use case #
  13. # #############################################################################