Android Asset Packaging Tool for Python3
Project description
Aapt
Android Asset Packaging Tool for Python3
Example
import aapt
help = aapt.aapt('--help')
print(help)
ls = aapt.ls('./xx.apk')
print(ls)
apk_info = aapt.get_apk_info('./xxx.apk')
print(apk_info)
# save icon
from PIL import Image
apk_info = aapt.get_apk_and_icon('./xxx.apk')
byte_stream = io.BytesIO(apk_info['icon_byte_value'])
img = Image.open(byte_stream)
img.save('./1.png')
# upload file
requests.post(url, files={'file': apk_info['icon_byte_value']})
API
- aapt(args)
- ls(file_path)
- dump(file_path, values)
- packagecmd(file_path, command)
- remove(file_path, files)
- add(file_path, files)
- crunch(resource, output_folder)
- single_crunch(input_file, output_file):
- version()
- get_apk_info(file_path)
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
aapt-1.0.2.tar.gz
(1.6 kB
view details)
File details
Details for the file aapt-1.0.2.tar.gz
.
File metadata
- Download URL: aapt-1.0.2.tar.gz
- Upload date:
- Size: 1.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f989a77d4d6b4ac077525807c823708899e916142a8b37a21b04a1ff220242f1 |
|
MD5 | 22c01a099649e4b01b9c7c0aa7663e3a |
|
BLAKE2b-256 | e427ddfa92fc0b4ec3d155c6673b67d8ff1b28b0415456dcd1585dba32844f9b |