├── .gitignore ├── LICENSE ├── README.md ├── bm2dx.py ├── bytebuffer.py ├── extractor.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mon/SDVX-Song-Extractor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mon/SDVX-Song-Extractor/HEAD/README.md -------------------------------------------------------------------------------- /bm2dx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mon/SDVX-Song-Extractor/HEAD/bm2dx.py -------------------------------------------------------------------------------- /bytebuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mon/SDVX-Song-Extractor/HEAD/bytebuffer.py -------------------------------------------------------------------------------- /extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mon/SDVX-Song-Extractor/HEAD/extractor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bs4 2 | lxml 3 | ifstools 4 | tqdm --------------------------------------------------------------------------------