Config

Expyrimenter configuration uses ini files. The default one is shown below and can be overriden by a user configuration in ~/.expyrimenter/config.ini.

[executor]
max_concurrency = 100

[pushbullet]
;token = YOUR_ACCESS_TOKEN

[cloudstack]
;url = https://example_cloud/client/api
;key = YOUR_KEY
;secret = YOUR_SECRET
class expyrimenter.Config(section)[source]

Config.user_ini is the location of the user ini file and its default value is ~/.expyrimenter/config.ini. If you change the user config location, it will take effect in every new object.

get(key, default=None)[source]
Parameters:
  • key (str) – The key whose value you are looking for
  • default (any) – value to return if key is not found
Returns:

key value

Return type:

str