gitextract_ch1k6q74/ ├── .github/ │ └── workflows/ │ ├── build.yml │ ├── codeql-analysis.yml │ └── deploy.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── index.rst │ ├── pychord.rst │ └── requirements.txt ├── examples/ │ └── pychord-midi.py ├── pychord/ │ ├── __init__.py │ ├── analyzer.py │ ├── chord.py │ ├── constants/ │ │ ├── __init__.py │ │ ├── qualities.py │ │ └── scales.py │ ├── parser.py │ ├── progression.py │ ├── py.typed │ ├── quality.py │ └── utils.py ├── pyproject.toml ├── setup.cfg ├── setup.py └── test/ ├── __init__.py ├── test_analyzer.py ├── test_chord.py ├── test_component.py ├── test_progression.py ├── test_quality.py ├── test_transpose.py └── test_utils.py