From d54e59ffcc22ef66c4837b0fc555540fc66468b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radim=20Karni=C5=A1?= Date: Thu, 28 Nov 2024 14:18:19 +0100 Subject: [PATCH] docs(scripting): Add example of usage as a Python module Closes https://github.com/espressif/esptool/pull/1029 --- docs/en/esptool/scripting.rst | 53 ++++++++++++++++++++++++++++++++++- 1 file changed, 52 insertions(+), 1 deletion(-) diff --git a/docs/en/esptool/scripting.rst b/docs/en/esptool/scripting.rst index e4e96608d2..4ab354096a 100644 --- a/docs/en/esptool/scripting.rst +++ b/docs/en/esptool/scripting.rst @@ -1,7 +1,7 @@ .. _scripting: Embedding into Custom Scripts -============================= +----------------------------- ``esptool.py``, ``espefuse.py``, and ``espsecure.py`` can easily be integrated into Python applications or called from other Python scripts. @@ -12,3 +12,54 @@ While it currently does have a poor Python API, something which `#208