# toml Hook for toml.:param path: The file path to put read or write to:param contents: Supplied dictionary or list to write.:param in_place: Boolean to read the contents of the `path` and then write after modifications.:param remove: Parameter or regex to remove from list or dict:param update: Use the python `update` dict method on `contents` before writing:param filter: List or string to values to.:param merge_dict: Dict input that recursively overwrites the `contents`.:param append_items: List to append to `append_key` key.:param append_key: String or list of hierarchical keys to append item to. Defaults to root element.:param mode: The mode that the file should write. Defaults to write 'w'. Seee https://docs.python.org/3/library/functions.html#open ## Inputs | Name | Type | Default | Required | Description | | :--- | :---: |:---:| :---: | :--- | | remove | Any | | | | | contents | Any | | | | | update | object | | | | | filter | array | | | | | path | string | | | | | merge_dict | object | | | | | in_place | boolean | False | X | | | append_items | Any | | | | | append_keys | Any | | | | | mode | string | | | | | write | boolean | | | | ## Arguments | Position | Argument | Type | |:-------------------------| :---: | :---: | ## Output None