Skip to content

HLCodeTravel/python-apptoolkit

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

apptoolkit

Latest Version

Introduction

This is a lightweight set of tools for obtaining information about Android devices in Python

Installing

Install and update using pip:

pip install -U apptoolkit

A Simple Example

from apptoolkit import Device

android_devices = Device.get_android_devices()

下面是输出信息:
[
{
    "uid": "BY2WKN1519078327",
    "rom_version": "Che2-UL00 V100R001CHNC00B287",
    "brand": "Honor",
    "os_version": "4.4.2",
    "sdk_version": "19",
    "os_type": "Android",
    "model": "Che2-UL00"
},
{
    "uid": "GWY0217414001213",
    "rom_version": "MHA-AL00C00B213",
    "brand": "HUAWEI",
    "os_version": "7.0",
    "sdk_version": "24",
    "os_type": "Android",
    "model": "MHA-AL00"
}
]

Learn more

You can read this http://mafei.me/ to learn more about the apptoolkit.

About

This is a lightweight set of tools for obtaining information about Android devices in Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 96.3%
  • Shell 3.7%