Search for apks on varius websites
Project description
apksearch
apksearch is a Python library designed to search for APK files on different APK websites, such as APKPure and APKMirror. It allows users to find APKs, check for available versions, and retrieve download links.
The Inspiration: There were countless occasions when I needed a specific APK for a package name, only to find it unavailable on popular platforms. This led to the tedious task of manually visiting multiple websites and searching one by one.
screenshot
As you can see, Roblox version 2.647.716 is not available on APKPure and APKCombo, this helped me avoid going through these sites.
P.S: If you're looking for an APK downloader, I highly recommend using apkeep.
Features
- Search APKs: The library provides methods to search for APKs using package names.
- Retrieve APK Versions and Download Links: It can fetch available versions and their download links for a given APK from various websites.
- Command-Line Interface: A CLI is available for users to search for APKs directly from the command line.
Supported Websites
[!NOTE] For site owners: If you're the owner of a website that's not listed here and you'd like to add support for it, feel free to open an issue or submit a pull request. I'm open to adding more websites to the library. I respect the value of user engagement and the revenue it generates for your site. To honor this, I have deliberately avoided including a download feature in the library, ensuring users will still need to visit your website, maintaining its traffic and engagement. Additionally, I kindly ask that you refrain from enforcing strict blocking measures, such as aggressive Cloudflare rules, as the library is designed to work collaboratively rather than disruptively. Thank you!
Installation
To install/upgrade the apksearch library, use the following command:
pip install -U git+https://github.com/AbhiTheModder/apksearch.git
OR, through pip:
pip install -U apksearch
OR, if you've cloned the repository locally you can do so via:
pip install -U . # or path to the local clone
Usage
Command-Line Interface
To use the CLI, run the following command:
apksearch <package_name> [--version <version>]
Example:
apksearch com.roblox.client --version 2.652.765
Library Usage
You can also use the library programmatically in your Python code:
from apksearch import APKPure, APKMirror
# Searching on APKPure
apkpure = APKPure("com.roblox.client")
result = apkpure.search_apk()
if result:
title, link = result
print(f"Found on APKPure: {title} - {link}")
# Searching on APKMirror
apkmirror = APKMirror("com.roblox.client")
result = apkmirror.search_apk()
if result:
title, link = result
print(f"Found on APKMirror: {title} - {link}")
Classes and Methods
APKPure | APKCombo | APKFab
__init__(self, pkg_name: str): Initializes with the package name.search_apk(self) -> None | tuple[str, str]: Searches for the APK and returns the title and link if found.find_versions(self, apk_link: str) -> list[tuple[str, str]]: Finds and returns a list of versions and their download links for the given APK link.
APKMirror
__init__(self, pkg_name: str): Initializes with the package name.search_apk(self) -> None | tuple[str, str]: Searches for the APK and returns the title and link if found.find_version(self, apk_link: str, version: str) -> str: Finds and returns the download link for the given APK link and version.
AppTeka | APKAD
__init__(self, pkg_name: str): Initializes with the package name.search_apk(self, version: str = None) -> None | tuple[str, str]: Searches for the APK and returns the title and link if found. If a version is provided, it checks if that version is available and returns the corresponding download link, None otherwise. If no version is provided, it returns the link for the latest version available.
Aptoide
__init__(self, pkg_name: str): Initializes with the package name.search_apk(self) -> None | tuple[str, str]: Searches for the APK and returns the title and link if found.find_versions(self, apk_link: str, version: str) -> list[str]: Finds and returns the download links for the given APK link and versions list.
Testing
The project includes tests for the sites classes. To run the tests, use the following command:
pytest
TODO
- Add more websites to search for APKs.
Acknowledgements
- APKUpdater for APKMirror API.
- apkeep for APKPure API.(not used anymore)
License
This project is licensed under the MIT License. See the LICENSE file for more details.
Contributing
Contributions are welcome! Please open an issue or submit a pull request on GitHub.
If you find this project helpful, please consider giving it a ⭐. Your support is greatly appreciated!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file apksearch-1.3.5.tar.gz.
File metadata
- Download URL: apksearch-1.3.5.tar.gz
- Upload date:
- Size: 17.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
261d92e054e1cc256a4cb535cf0c3fc6cc64d7119d0ba7f822fe05d8d678aec9
|
|
| MD5 |
d27a71b9d3ac0e9cdf6dce2f9e882036
|
|
| BLAKE2b-256 |
22d3a536f98e40c45d46e53f60322f8f49624c14cbaa7a0349687d98c6c01b20
|
Provenance
The following attestation bundles were made for apksearch-1.3.5.tar.gz:
Publisher:
python-publish.yml on AbhiTheModder/apksearch
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
apksearch-1.3.5.tar.gz -
Subject digest:
261d92e054e1cc256a4cb535cf0c3fc6cc64d7119d0ba7f822fe05d8d678aec9 - Sigstore transparency entry: 583959980
- Sigstore integration time:
-
Permalink:
AbhiTheModder/apksearch@adf5db7f594c5465514c7d8145f262a61f73ec12 -
Branch / Tag:
refs/tags/1.3.5 - Owner: https://github.com/AbhiTheModder
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@adf5db7f594c5465514c7d8145f262a61f73ec12 -
Trigger Event:
release
-
Statement type:
File details
Details for the file apksearch-1.3.5-py3-none-any.whl.
File metadata
- Download URL: apksearch-1.3.5-py3-none-any.whl
- Upload date:
- Size: 21.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c60bc95fb8cceae1909f637b9da2d1397bf5e5d9c13eba4ce6b61155f9a9e1b
|
|
| MD5 |
707fed582515507acba8ffd428fbe19d
|
|
| BLAKE2b-256 |
bb3076fab815c08292314e0ac99a97eac34c8b7f8b8c51e924fe565b92b1cad3
|
Provenance
The following attestation bundles were made for apksearch-1.3.5-py3-none-any.whl:
Publisher:
python-publish.yml on AbhiTheModder/apksearch
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
apksearch-1.3.5-py3-none-any.whl -
Subject digest:
5c60bc95fb8cceae1909f637b9da2d1397bf5e5d9c13eba4ce6b61155f9a9e1b - Sigstore transparency entry: 583959982
- Sigstore integration time:
-
Permalink:
AbhiTheModder/apksearch@adf5db7f594c5465514c7d8145f262a61f73ec12 -
Branch / Tag:
refs/tags/1.3.5 - Owner: https://github.com/AbhiTheModder
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@adf5db7f594c5465514c7d8145f262a61f73ec12 -
Trigger Event:
release
-
Statement type: