esp-flasher


Nameesp-flasher JSON
Version 2.2.4 PyPI version JSON
download
home_pagehttps://github.com/Jason2866/ESP_Flasher
SummaryESP8266/ESP32 Tasmota firmware flasher for ESP
upload_time2024-04-01 11:41:33
maintainerNone
docs_urlNone
authorJason2866
requires_python<4.0,>=3.8
licenseMIT
keywords home automation
VCS
bugtrack_url
requirements wxpython pyserial requests
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Build_special_firmware](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://github.com/vshymanskyy/StandWithUkraine/blob/main/docs/README.md)


# Tasmota-ESP-Flasher for Tasmota v13 and later (Safeboot partition scheme)

[![GitHub Releases](https://img.shields.io/github/downloads/Jason2866/ESP_Flasher/total?label=downloads&color=%231FA3EC&style=for-the-badge)](https://github.com/Jason2866/ESP_Flasher/releases/latest)

Tasmota-ESP-Flasher is an app for ESP8266 / ESP32 designed to make flashing Tasmota on ESPs as simple as possible by:

 * Pre-built binaries for most used operating systems
 * Support for Tasmota factory images 
 * Hiding all non-essential options for flashing
 * All necessary options (bootloader, flash mode, safeboot) are set automatically.

The flashing process is done using [esptool](https://github.com/espressif/esptool) from espressif.

## Installation

- Check the [releases section](https://github.com/Jason2866/ESP_Flasher/releases) for your OS.
- Download and double-click and it'll start.

- The native Python version can be installed from PyPI: **`pip install esp-flasher`**.
  Start the GUI by `esp_flasher`. Alternatively, you can use the command line interface ( type `esp_flasher -h` for info)

## Build it yourself

If you want to build this application yourself you need to:

- Install Python 3.x
- Install [wxPython 4.x](https://wxpython.org/) manually or run `pip3 install wxpython`
- Download this project and run `pip3 install -e .` in the project's root.
- Start the GUI using `esp_flasher`. Alternatively, you can use the command line interface (
  type `esp_flasher -h` for info)

### Mac OSX (compiled binary only for 11 and newer)

Driver maybe needed for Mac OSx.

Info: https://www.silabs.com/community/interface/forum.topic.html/vcp_driver_for_macosbigsur110x-krlP

Driver: https://www.silabs.com/documents/public/software/Mac_OSX_VCP_Driver.zip


## Linux Notes

Installing wxpython for linux can be a bit challenging (especially when you don't want to install from source).
You can use the following command to install a wxpython suitable with your OS and Python version:

```bash
# Go to https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ and select the correct OS type
# here, we assume ubuntu 20.04
         sudo apt-get update
         sudo apt install libgtk-3-dev libnotify-dev libsdl2-dev
         pip3 install -U \
          -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-20.04 \
          wxPython
```

## License

[MIT](http://opensource.org/licenses/MIT) © Marcel Stör, Otto Winter, Johann Obermeier




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Jason2866/ESP_Flasher",
    "name": "esp-flasher",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": "home, automation",
    "author": "Jason2866",
    "author_email": "obermeier.johann@googlemail.com",
    "download_url": "https://files.pythonhosted.org/packages/96/39/22164b1c013b7dcea0bcbce52fa1e62e1b8f21ca745b826051d8da8eb090/esp_flasher-2.2.4.tar.gz",
    "platform": "any",
    "description": "[![Build_special_firmware](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://github.com/vshymanskyy/StandWithUkraine/blob/main/docs/README.md)\n\n\n# Tasmota-ESP-Flasher for Tasmota v13 and later (Safeboot partition scheme)\n\n[![GitHub Releases](https://img.shields.io/github/downloads/Jason2866/ESP_Flasher/total?label=downloads&color=%231FA3EC&style=for-the-badge)](https://github.com/Jason2866/ESP_Flasher/releases/latest)\n\nTasmota-ESP-Flasher is an app for ESP8266 / ESP32 designed to make flashing Tasmota on ESPs as simple as possible by:\n\n * Pre-built binaries for most used operating systems\n * Support for Tasmota factory images \n * Hiding all non-essential options for flashing\n * All necessary options (bootloader, flash mode, safeboot) are set automatically.\n\nThe flashing process is done using [esptool](https://github.com/espressif/esptool) from espressif.\n\n## Installation\n\n- Check the [releases section](https://github.com/Jason2866/ESP_Flasher/releases) for your OS.\n- Download and double-click and it'll start.\n\n- The native Python version can be installed from PyPI: **`pip install esp-flasher`**.\n  Start the GUI by `esp_flasher`. Alternatively, you can use the command line interface ( type `esp_flasher -h` for info)\n\n## Build it yourself\n\nIf you want to build this application yourself you need to:\n\n- Install Python 3.x\n- Install [wxPython 4.x](https://wxpython.org/) manually or run `pip3 install wxpython`\n- Download this project and run `pip3 install -e .` in the project's root.\n- Start the GUI using `esp_flasher`. Alternatively, you can use the command line interface (\n  type `esp_flasher -h` for info)\n\n### Mac OSX (compiled binary only for 11 and newer)\n\nDriver maybe needed for Mac OSx.\n\nInfo: https://www.silabs.com/community/interface/forum.topic.html/vcp_driver_for_macosbigsur110x-krlP\n\nDriver: https://www.silabs.com/documents/public/software/Mac_OSX_VCP_Driver.zip\n\n\n## Linux Notes\n\nInstalling wxpython for linux can be a bit challenging (especially when you don't want to install from source).\nYou can use the following command to install a wxpython suitable with your OS and Python version:\n\n```bash\n# Go to https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ and select the correct OS type\n# here, we assume ubuntu 20.04\n         sudo apt-get update\n         sudo apt install libgtk-3-dev libnotify-dev libsdl2-dev\n         pip3 install -U \\\n          -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-20.04 \\\n          wxPython\n```\n\n## License\n\n[MIT](http://opensource.org/licenses/MIT) \u00a9 Marcel St\u00f6r, Otto Winter, Johann Obermeier\n\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "ESP8266/ESP32 Tasmota firmware flasher for ESP",
    "version": "2.2.4",
    "project_urls": {
        "Homepage": "https://github.com/Jason2866/ESP_Flasher"
    },
    "split_keywords": [
        "home",
        " automation"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03167827fc5852c0c017e096334becceabefa19c1bebd2180ac7a3112aece2c0",
                "md5": "9f99c8621e1e4e620df36c3e2d9a6980",
                "sha256": "3905e50a558d8c5fda223f2fdc24350dce819cb87ab5147a80f9df1ea9278e49"
            },
            "downloads": -1,
            "filename": "esp_flasher-2.2.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9f99c8621e1e4e620df36c3e2d9a6980",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 109608,
            "upload_time": "2024-04-01T11:41:32",
            "upload_time_iso_8601": "2024-04-01T11:41:32.327471Z",
            "url": "https://files.pythonhosted.org/packages/03/16/7827fc5852c0c017e096334becceabefa19c1bebd2180ac7a3112aece2c0/esp_flasher-2.2.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "963922164b1c013b7dcea0bcbce52fa1e62e1b8f21ca745b826051d8da8eb090",
                "md5": "8b1bdf477b7e0f6d825577797335a423",
                "sha256": "c05e4610a6c0891ea2100162101111a0f5402b5c3dd4b315b2a412b192096636"
            },
            "downloads": -1,
            "filename": "esp_flasher-2.2.4.tar.gz",
            "has_sig": false,
            "md5_digest": "8b1bdf477b7e0f6d825577797335a423",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 109979,
            "upload_time": "2024-04-01T11:41:33",
            "upload_time_iso_8601": "2024-04-01T11:41:33.860647Z",
            "url": "https://files.pythonhosted.org/packages/96/39/22164b1c013b7dcea0bcbce52fa1e62e1b8f21ca745b826051d8da8eb090/esp_flasher-2.2.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-01 11:41:33",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Jason2866",
    "github_project": "ESP_Flasher",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "wxpython",
            "specs": [
                [
                    "==",
                    "4.2.1"
                ]
            ]
        },
        {
            "name": "pyserial",
            "specs": [
                [
                    ">=",
                    "3.5"
                ]
            ]
        },
        {
            "name": "requests",
            "specs": [
                [
                    "<",
                    "3"
                ],
                [
                    ">=",
                    "2.24.0"
                ]
            ]
        }
    ],
    "lcname": "esp-flasher"
}
        
Elapsed time: 0.21193s