To bootstrap a basic Eel app.
Project description
Create Eel App
create_eel_app provides basic template and managing utilities for an Eel app.
Eel is a little Python library for making simple Electron-like HTML/JS GUI apps.
Check out Eel here: https://github.com/samuelhwilliams/Eel
Usage
Create an Eel app
$ create_eel_app.py create my_awesome_eel_app
This creates a directory with the name my_awesome_eel_app
in the current working directory and initializes a git repository as well.
Launch the app
In the directory of the newly created app
$ create_eel_app.py launch
Package the app
To package the app, simply run
$ create_eel_app.py publish
This will package your file into a single file using pyinstaller
and put the resulting file in dist/
To change publishing settings, see
app_config.json
Installation
Install it from pypi using pip
$ pip install create-eel-app
or from source
$ git clone https://github.com/gr3atwh173/create-eel-app
$ cd create-eel-app
$ python setup.py install
Todo
- Implement basic template
- Implement launch
- Implement publish
- More templates
- hot reloading 🔥
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.