Generate
Render scope.
podcast(config_path, output_path)
Generate podcast feed from YAML.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
conf_path |
Path to the YAML file with the feed data. |
required | |
output_path |
str |
Path where the result should be written to. |
required |
Source code in yaml2rss/entrypoint/cli/scopes/generate.py
@cli.command()
def podcast(config_path: str, output_path: str) -> None:
"""Generate podcast feed from YAML.
Arguments:
conf_path: Path to the YAML file with the feed data.
output_path: Path where the result should be written to.
"""
generate_podcast(config_path=config_path, output_path=output_path)
Last update:
2022-07-27