Skip to content

Latest commit

 

History

History
88 lines (56 loc) · 1.23 KB

README.md

File metadata and controls

88 lines (56 loc) · 1.23 KB

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()