├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── service_list_builder ├── NSudo ├── LICENSE.txt └── NSudoLG.exe ├── consts.py ├── lists.ini └── main.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/service-list-builder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/service-list-builder/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/service-list-builder/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/service-list-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/service-list-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/service-list-builder/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pypiwin32==223 2 | -------------------------------------------------------------------------------- /service_list_builder/NSudo/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/service-list-builder/HEAD/service_list_builder/NSudo/LICENSE.txt -------------------------------------------------------------------------------- /service_list_builder/NSudo/NSudoLG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/service-list-builder/HEAD/service_list_builder/NSudo/NSudoLG.exe -------------------------------------------------------------------------------- /service_list_builder/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/service-list-builder/HEAD/service_list_builder/consts.py -------------------------------------------------------------------------------- /service_list_builder/lists.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/service-list-builder/HEAD/service_list_builder/lists.ini -------------------------------------------------------------------------------- /service_list_builder/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/service-list-builder/HEAD/service_list_builder/main.py --------------------------------------------------------------------------------