├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── cli.py ├── main.py ├── modules ├── ADB.py ├── ApkMirror │ ├── ApkFileDownloader.py │ ├── Scraper.py │ └── __init__.py ├── Configuration.py ├── FileDownloader.py ├── GitHubAPI.py ├── JavaChecker.py ├── PatchRememberer.py ├── PatcherProcess.py ├── PatchesParser.py └── __init.__.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | options.toml 2 | config.json 3 | __pycache__ 4 | revanced -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/README.md -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/cli.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/main.py -------------------------------------------------------------------------------- /modules/ADB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/modules/ADB.py -------------------------------------------------------------------------------- /modules/ApkMirror/ApkFileDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/modules/ApkMirror/ApkFileDownloader.py -------------------------------------------------------------------------------- /modules/ApkMirror/Scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/modules/ApkMirror/Scraper.py -------------------------------------------------------------------------------- /modules/ApkMirror/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/Configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/modules/Configuration.py -------------------------------------------------------------------------------- /modules/FileDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/modules/FileDownloader.py -------------------------------------------------------------------------------- /modules/GitHubAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/modules/GitHubAPI.py -------------------------------------------------------------------------------- /modules/JavaChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/modules/JavaChecker.py -------------------------------------------------------------------------------- /modules/PatchRememberer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/modules/PatchRememberer.py -------------------------------------------------------------------------------- /modules/PatcherProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/modules/PatcherProcess.py -------------------------------------------------------------------------------- /modules/PatchesParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reisxd/revanced-builder-py/HEAD/modules/PatchesParser.py -------------------------------------------------------------------------------- /modules/__init.__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | inquirer 2 | tdqm 3 | requests 4 | beautifulsoup4 --------------------------------------------------------------------------------