Currently the public and private paramters are in a dictionary in the main code, which is a bit messy. This would be much better in a separate file, such as a toml, yaml, or ini
Then we would need to import those as dictionaries public_parameters and private_parameters using the correct library for toml, yaml, ini or whatever has been selected.
Currently the public and private paramters are in a dictionary in the main code, which is a bit messy. This would be much better in a separate file, such as a toml, yaml, or ini
e.g.
api_paramters.yaml
might look likeand the same for private parameters
Then we would need to import those as dictionaries
public_parameters
andprivate_parameters
using the correct library for toml, yaml, ini or whatever has been selected.