Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/linroid/sadb
(safe adb) Easy your adb operation when connected multiple devices
https://github.com/linroid/sadb
adb android pypi python
Last synced: about 1 month ago
JSON representation
(safe adb) Easy your adb operation when connected multiple devices
- Host: GitHub
- URL: https://github.com/linroid/sadb
- Owner: linroid
- License: apache-2.0
- Created: 2017-12-05T14:20:21.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T06:06:13.000Z (almost 2 years ago)
- Last Synced: 2024-11-04T18:54:23.535Z (about 1 month ago)
- Topics: adb, android, pypi, python
- Language: Python
- Homepage:
- Size: 54.7 KB
- Stars: 180
- Watchers: 7
- Forks: 21
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - linroid/sadb - (safe adb) Easy your adb operation when connected multiple devices (Python)
README
# sadb
(safe adb)Easy your adb operation when connected multiple devices[![PyPI version](https://badge.fury.io/py/sadb.svg)](https://badge.fury.io/py/sadb)
It's painful to use adb commands if your computer has connected multiple devices, especially you type a very long command and adb shows error that there has multiple devices and you need to try it again with the device's identity argument.
`sadb` was created by solving this problem, no `-s` argument need anymore, you can also use one command to operate multiple devices in batch:
![](https://raw.githubusercontent.com/linroid/sadb/master/screenshots.png)### Install
---`sadb` has already uploaded to [PYPI](https://pypi.python.org/pypi/sadb),so the simplest way is to install by pip:
```
$ pip install sadb
```Also,you can install from source code:
```
$ git clone [email protected]:linroid/sadb.git
$ cd sadb
$ python setup.py install
```### Usage
Use `sadb` as same as the orignal `adb` command, it will let you choose target devices when needed.
### Upgrade:
```
$ pip install sadb --upgrade
```### License
---Apache License 2.0 ([here](https://github.com/linroid/sadb/blob/master/LICENSE))