{"id":20263466,"url":"https://github.com/opengapps/apkcrawler","last_synced_at":"2025-04-06T12:10:52.454Z","repository":{"id":35975105,"uuid":"40266329","full_name":"opengapps/apkcrawler","owner":"opengapps","description":"APK Crawler is a tool to automatically retrieve APKs from various internet sources","archived":false,"fork":false,"pushed_at":"2021-12-01T15:37:42.000Z","size":1231,"stargazers_count":331,"open_issues_count":14,"forks_count":83,"subscribers_count":36,"default_branch":"master","last_synced_at":"2025-03-30T11:09:06.465Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/opengapps.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-08-05T20:03:25.000Z","updated_at":"2025-03-23T22:50:26.000Z","dependencies_parsed_at":"2022-08-10T10:28:45.766Z","dependency_job_id":null,"html_url":"https://github.com/opengapps/apkcrawler","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opengapps%2Fapkcrawler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opengapps%2Fapkcrawler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opengapps%2Fapkcrawler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opengapps%2Fapkcrawler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/opengapps","download_url":"https://codeload.github.com/opengapps/apkcrawler/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247478324,"owners_count":20945266,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-14T11:35:15.730Z","updated_at":"2025-04-06T12:10:52.426Z","avatar_url":"https://github.com/opengapps.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# APK Crawler\nAPK Crawler is a tool to automatically retrieve APKs from various internet sources\n\n## License\n**Take note that APKCrawler's GNU Affero General Public License v3.0 is strict concerning application service providers**.\nIf you use apkcrawler for a (web)service you need to open source your changes!\n\n## Usage\nFetch all Open GApps [supported](https://github.com/opengapps/opengapps/wiki/Advanced-Features-and-Options#include-and-exclude-google-applications) APKs from a given source\n```sh\n./report_sources.sh nosig | ./apkcrawler.py\n```\nor\n```sh\n./report_sources.sh nosig | ./apkbeastcrawler.py\n./report_sources.sh nosig | ./apkdlcrawler.py\n./report_sources.sh nosig | ./apkmirrorcrawler.py\n./report_sources.sh nosig | ./apkpurecrawler.py\n./report_sources.sh nosig | ./aptoidecrawler.py\n./report_sources.sh nosig | ./mobogeniecrawler.py\n./report_sources.sh nosig | ./playstorecrawler.py\n./report_sources.sh nosig | ./plazzacrawler.py\n./report_sources.sh nosig | ./uptodowncrawler.py\n```\n\n### Inline\nAPK Crawlers emits the downloaded filename(s) so it can be used inline with Open GApps' `add_sourceapp.sh`\n```sh\n./add_sourceapp.sh $(./apkcrawler.py        report.txt)\n```\nor\n```sh\n./add_sourceapp.sh $(./apkbeastcrawler.py   report.txt)\n./add_sourceapp.sh $(./apkdlcrawler.py      report.txt)\n./add_sourceapp.sh $(./apkmirrorcrawler.py  report.txt)\n./add_sourceapp.sh $(./apkpurecrawler.py    report.txt)\n./add_sourceapp.sh $(./aptoidecrawler.py    report.txt)\n./add_sourceapp.sh $(./mobogeniecrawler.py  report.txt)\n./add_sourceapp.sh $(./playstorecrawler.py  report.txt)\n./add_sourceapp.sh $(./plazzacrawler.py     report.txt)\n./add_sourceapp.sh $(./uptodowncrawler.py   report.txt)\n```\n\n## Supported Sites\n- [APK Beast](http://apkbeast.com)\n- [APK Mirror](http://apkmirror.com)\n- [APK Pure](http://apkpure.com)\n- [Aptoide](http://aptoide.com)\n- [APK Downloader](http://apk-dl.com)\n- [Google Play Store](https://play.google.com/store/)\n- [Mobogenie](http://mobogenie.com/)\n- [Plazza.ir](http://plazza.ir)\n- [UpToDown](http://en.uptodown.com/android)\n\n## Requirements\n- [python3](https://www.python.org/downloads/)\n- [beautifulsoup4](https://pypi.python.org/pypi/beautifulsoup4/)\n- [html5lib](https://pypi.python.org/pypi/html5lib)\n- [protobuf \u003e=3](https://pypi.python.org/pypi/protobuf)\n- [requests](https://pypi.python.org/pypi/requests)\n\n## Installation\nYou can use [mfonville's protobuf PPA](https://launchpad.net/~maarten-fonville/+archive/ubuntu/protobuf) for `python3-protobuf`\n```sh\nsudo apt install python3-bs4 python3-html5lib python3-protobuf python3-requests python3-tz\n```\nor\n```sh\npip3 install beautifulsoup4 html5lib protobuf requests pytz\n```\n\n## Known Issues\n- There needs to be a way to grab an older version of an application as the current version (e.g. Current WebView on APK Mirror is the beta version)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopengapps%2Fapkcrawler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopengapps%2Fapkcrawler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopengapps%2Fapkcrawler/lists"}