v2.0.4

soxoj/socid-extractorv2.0.4Jun 20, 2026by lipku

AI Summary

This version adds YAML configuration file support, allowing users to configure the application via a file with a specific priority order over CLI arguments.

Key Highlights

  • Added YAML configuration file support (`config.yaml`)
  • Added priority system: CLI args > YAML > argparse defaults
  • Added ability to switch config files using `-c`
  • Added ability to skip YAML and use CLI only

New Features

  • YAML configuration support

Full Release Notes

Support yaml config  
```shell
#  Usage:
cp config.yaml.example config.yaml   # create your config
python app.py                        # start with config.yaml
python app.py -c config_prod.yaml    # use a different config file
python app.py -c ''                  # skip yaml, CLI only
#  Priority:  CLI args  >  YAML  >  argparse defaults
```