comfy_fm24_newgens/lib/general.py

9 lines
309 B
Python
Raw Permalink Normal View History

2025-09-23 13:42:21 +01:00
import configparser
def list_profiles(cfg_file):
2025-09-23 14:25:59 +01:00
"""List all available profiles from config file"""
2025-09-23 13:42:21 +01:00
config = configparser.ConfigParser()
config.read(cfg_file)
2025-09-23 14:25:59 +01:00
profiles = [section.split(':', 1)[1] for section in config.sections() if section.startswith('profile:')]
return profiles