fastbootpy 0.4.1

Creator: bradpython12

Last updated:

Add to Cart

Description:

fastbootpy 0.4.1

Fastbootpy
Fastbootpy is based on pyusb and using libusb1 for USB communications.

Installation
pip
poetry add fastbootpy

poetry
poetry add fastbootpy


Supported fastboot commands

getvar
download
upload
flash
erase
boot
continue
reboot


Examples
All examples of using library you can find in folder examples.
Get and display all fastboot devices which are connected with pc via usb.
from fastbootpy import FastbootManager


def main() -> None:
fastboot_devices = FastbootManager.devices()
print("fastboot_devices:", fastboot_devices)


if __name__ == "__main__":
main()

Boot device into regular mode.
from fastbootpy import FastbootDevice


def main() -> None:
serial = "emulator-5554"
device = FastbootDevice.connect(serial)
device.boot()


if __name__ == "__main__":
main()

Getvar command example.
from fastbootpy import FastbootDevice, FastbootManager


def main() -> None:
fastboot_devices = FastbootManager.devices()
serial = fastboot_devices[0]
device = FastbootDevice.connect(serial)
result = device.getvar("all")
print("result:", result)


if __name__ == "__main__":
main()

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.