METADATA 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. Metadata-Version: 2.0
  2. Name: esptool
  3. Version: 2.6
  4. Summary: A serial utility to communicate & flash code to Espressif ESP8266 & ESP32 chips.
  5. Home-page: https://github.com/espressif/esptool
  6. Author: Fredrik Ahlberg (themadinventor) & Angus Gratton (projectgus)
  7. Author-email: angus@espressif.com
  8. License: GPLv2+
  9. Platform: UNKNOWN
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Intended Audience :: Developers
  12. Classifier: Natural Language :: English
  13. Classifier: Operating System :: POSIX
  14. Classifier: Operating System :: Microsoft :: Windows
  15. Classifier: Operating System :: MacOS :: MacOS X
  16. Classifier: Topic :: Software Development :: Embedded Systems
  17. Classifier: Environment :: Console
  18. Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
  19. Classifier: Programming Language :: Python :: 2.7
  20. Classifier: Programming Language :: Python :: 3.4
  21. Classifier: Programming Language :: Python :: 3.5
  22. Classifier: Programming Language :: Python :: 3.6
  23. Requires-Dist: ecdsa
  24. Requires-Dist: pyaes
  25. Requires-Dist: pyserial (>=3.0)
  26. ==========
  27. esptool.py
  28. ==========
  29. A command line utility to communicate with the ROM bootloader in Espressif ESP8266 & ESP32 microcontrollers.
  30. Allows flashing firmware, reading back firmware, querying chip parameters, etc.
  31. The esptool.py project is hosted on github: https://github.com/espressif/esptool
  32. Installation
  33. ------------
  34. esptool can be installed via pip:
  35. $ pip install --upgrade esptool
  36. Since version 1.3, esptool supports both Python 2.7 and Python 3.4 or newer.
  37. Since version 2.0, esptool supports both ESP8266 & ESP32.
  38. Usage
  39. -----
  40. Please see the `Usage section of the README.md file <https://github.com/espressif/esptool#usage>`_.
  41. You can also get help information by running `esptool.py --help`.
  42. Contributing
  43. ------------
  44. Please see the `CONTRIBUTING.md file on github <https://github.com/espressif/esptool/blob/master/CONTRIBUTING.md>`_.