├── .gitignore ├── .vscode └── launch.json ├── LICENSE.txt ├── README.md ├── algrxcc ├── categorizer.py └── categorizer_udfs.py ├── cms-categorizer.png ├── creating-your-own.png └── test └── data ├── carrier-hcpc.csv ├── inpatient-drg.csv └── outpatient-hcpc.csv /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgorexHealth/cms-code-categorizer-python/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgorexHealth/cms-code-categorizer-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgorexHealth/cms-code-categorizer-python/HEAD/README.md -------------------------------------------------------------------------------- /algrxcc/categorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgorexHealth/cms-code-categorizer-python/HEAD/algrxcc/categorizer.py -------------------------------------------------------------------------------- /algrxcc/categorizer_udfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgorexHealth/cms-code-categorizer-python/HEAD/algrxcc/categorizer_udfs.py -------------------------------------------------------------------------------- /cms-categorizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgorexHealth/cms-code-categorizer-python/HEAD/cms-categorizer.png -------------------------------------------------------------------------------- /creating-your-own.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgorexHealth/cms-code-categorizer-python/HEAD/creating-your-own.png -------------------------------------------------------------------------------- /test/data/carrier-hcpc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgorexHealth/cms-code-categorizer-python/HEAD/test/data/carrier-hcpc.csv -------------------------------------------------------------------------------- /test/data/inpatient-drg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgorexHealth/cms-code-categorizer-python/HEAD/test/data/inpatient-drg.csv -------------------------------------------------------------------------------- /test/data/outpatient-hcpc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlgorexHealth/cms-code-categorizer-python/HEAD/test/data/outpatient-hcpc.csv --------------------------------------------------------------------------------