Paling


NamePaling JSON
Version 0.16.3 PyPI version JSON
download
home_pagehttps://github.com/python-paling/Paling
SummaryFor little HTML GUI applications, with easy Python/JS interop
upload_time2024-03-23 23:46:27
maintainerNone
docs_urlNone
authorOpenSource Team - Roborian
requires_python>=3.7
licenseMIT
keywords gui html javascript electron
VCS
bugtrack_url
requirements bottle bottle-websocket gevent gevent-websocket greenlet pyparsing whichcraft
Travis-CI
coveralls test coverage No coveralls.
            # Eel, but then Paling

[![PyPI version](https://img.shields.io/pypi/v/Eel?style=for-the-badge)](https://pypi.org/project/Paling/)
[![PyPi Downloads](https://img.shields.io/pypi/dm/Eel?style=for-the-badge)](https://pypistats.org/packages/paling)
![Python](https://img.shields.io/pypi/pyversions/Paling?style=for-the-badge)
[![License](https://img.shields.io/pypi/l/Eel.svg?style=for-the-badge)](https://pypi.org/project/Paling/)

Paling is a updated version of Eel, the Python library for making simple Electron-like offline HTML/JS GUI apps, with full access to Python capabilities and libraries.

> **Eel hosts a local webserver, then lets you annotate functions in Python so that they can be called from Javascript, and vice versa.**

Eel is designed to take the hassle out of writing short and simple GUI applications. If you are familiar with Python and web development, probably just jump to [this example](https://github.com/ChrisKnott/Eel/tree/master/examples/04%20-%20file_access) which picks random file names out of the given folder (something that is impossible from a browser).

<p align="center"><img src="https://raw.githubusercontent.com/samuelhwilliams/Eel/master/examples/04%20-%20file_access/Screenshot.png" ></p>

<!-- TOC -->

- [Eel](#eel)
  - [Intro](#intro)
  - [Install](#install)
  - [Usage](#usage)
    - [Directory Structure](#directory-structure)
    - [Starting the app](#starting-the-app)
    - [App options](#app-options)
      - [Chrome/Chromium flags](#chromechromium-flags)
    - [Exposing functions](#exposing-functions)
    - [Eello, World!](#eello-world)
    - [Return values](#return-values)
      - [Callbacks](#callbacks)
      - [Synchronous returns](#synchronous-returns)
  - [Asynchronous Python](#asynchronous-python)
  - [Building distributable binary with PyInstaller](#building-distributable-binary-with-pyinstaller)
  - [Microsoft Edge](#microsoft-edge)

<!-- /TOC -->

## Intro

Eel has always been our favorite library for writing UI's in python, because it made it very simple to create a beautiful interface. Unfortunately the project has not been maintained, and now we are taking over.

There are several options for making GUI apps in Python, but if you want to use HTML/JS (in order to use jQueryUI or Bootstrap, for example) then you generally have to write a lot of boilerplate code to communicate from the Client (Javascript) side to the Server (Python) side.

The closest Python equivalent to Electron (to my knowledge) is [cefpython](https://github.com/cztomczak/cefpython). It is a bit heavy weight for what I wanted.

Eel is not as fully-fledged as Electron or cefpython - it is probably not suitable for making full blown applications like Atom - but it is very suitable for making the GUI equivalent of little utility scripts that you use internally in your team.

For some reason many of the best-in-class number crunching and maths libraries are in Python (Tensorflow, Numpy, Scipy etc) but many of the best visualization libraries are in Javascript (D3, THREE.js etc). Hopefully Eel makes it easy to combine these into simple utility apps for assisting your development.

Join Eel's users and maintainers on [Discord](https://discord.com/invite/3nqXPFX), if you like.

## Install

Install from pypi with `pip`:

```shell
pip install paling
```

To include support for HTML templating, currently using [Jinja2](https://pypi.org/project/Jinja2/#description):

```shell
pip install eel[jinja2]
```

## Usage

### Directory Structure

An Eel application will be split into a frontend consisting of various web-technology files (.html, .js, .css) and a backend consisting of various Python scripts.

All the frontend files should be put in a single directory (they can be further divided into folders inside this if necessary).

```
my_python_script.py     <-- Python scripts
other_python_module.py
static_web_folder/      <-- Web folder
  main_page.html
  css/
    style.css
  img/
    logo.png
```

### Starting the app

Suppose you put all the frontend files in a directory called `web`, including your start page `main.html`, then the app is started like this;

```python
import eel
paling.init('web')
paling.start('main.html')
```

This will start a webserver on the default settings (http://localhost:8000) and open a browser to http://localhost:8000/main.html.

If Chrome or Chromium is installed then by default it will open in that in App Mode (with the `--app` cmdline flag), regardless of what the OS's default browser is set to (it is possible to override this behaviour).

### App options

Additional options can be passed to `paling.start()` as keyword arguments.

Some of the options include the mode the app is in (e.g. 'chrome'), the port the app runs on, the host name of the app, and adding additional command line flags.

As of Eel v0.12.0, the following options are available to `start()`:
 - **mode**, a string specifying what browser to use (e.g. `'chrome'`, `'electron'`, `'edge'`, `'custom'`). Can also be `None` or `False` to not open a window. *Default: `'chrome'`*
 - **host**, a string specifying what hostname to use for the Bottle server. *Default: `'localhost'`)*
 - **port**, an int specifying what port to use for the Bottle server. Use `0` for port to be picked automatically. *Default: `8000`*.
 - **block**, a bool saying whether or not the call to `start()` should block the calling thread. *Default: `True`*
 - **jinja_templates**, a string specifying a folder to use for Jinja2 templates, e.g. `my_templates`. *Default:  `None`*
 - **cmdline_args**, a list of strings to pass to the command to start the browser. For example, we might add extra flags for Chrome; ```paling.start('main.html', mode='chrome-app', port=8080, cmdline_args=['--start-fullscreen', '--browser-startup-dialog'])```. *Default: `[]`*
 - **size**, a tuple of ints specifying the (width, height) of the main window in pixels *Default: `None`*
 - **position**, a tuple of ints specifying the (left, top) of the main window in pixels *Default: `None`*
 - **geometry**, a dictionary specifying the size and position for all windows. The keys should be the relative path of the page, and the values should be a dictionary of the form `{'size': (200, 100), 'position': (300, 50)}`. *Default: {}*
 - **close_callback**, a lambda or function that is called when a websocket to a window closes (i.e. when the user closes the window). It should take two arguments; a string which is the relative path of the page that just closed, and a list of other websockets that are still open. *Default: `None`*
 - **app**, an instance of Bottle which will be used rather than creating a fresh one. This can be used to install middleware on the instance before starting eel, e.g. for session management, authentication, etc. If your `app` is not a Bottle instance, you will need to call `paling.register_eel_routes(app)` on your custom app instance.
 - **shutdown_delay**, timer configurable for Eel's shutdown detection mechanism, whereby when any websocket closes, it waits `shutdown_delay` seconds, and then checks if there are now any websocket connections. If not, then Eel closes. In case the user has closed the browser and wants to exit the program. By default, the value of **shutdown_delay** is `1.0` second



### Exposing functions

In addition to the files in the frontend folder, a Javascript library will be served at `/paling.js`. You should include this in any pages:

```html
<script type="text/javascript" src="/paling.js"></script>
```

Including this library creates an `eel` object which can be used to communicate with the Python side.

Any functions in the Python code which are decorated with `@paling.expose` like this...

```python
@paling.expose
def my_python_function(a, b):
    print(a, b, a + b)
```

...will appear as methods on the `eel` object on the Javascript side, like this...

```javascript
console.log("Calling Python...");
paling.my_python_function(1, 2); // This calls the Python function that was decorated
```

Similarly, any Javascript functions which are exposed like this...

```javascript
paling.expose(my_javascript_function);
function my_javascript_function(a, b, c, d) {
  if (a < b) {
    console.log(c * d);
  }
}
```

can be called from the Python side like this...

```python
print('Calling Javascript...')
paling.my_javascript_function(1, 2, 3, 4)  # This calls the Javascript function
```

The exposed name can also be overridden by passing in a second argument. If your app minifies JavaScript during builds, this may be necessary to ensure that functions can be resolved on the Python side:

```javascript
paling.expose(someFunction, "my_javascript_function");
```

When passing complex objects as arguments, bear in mind that internally they are converted to JSON and sent down a websocket (a process that potentially loses information).

### Eello, World!

> See full example in: [examples/01 - hello_world](https://github.com/ChrisKnott/Eel/tree/master/examples/01%20-%20hello_world)

Putting this together into a **Hello, World!** example, we have a short HTML page, `web/hello.html`:

```html
<!DOCTYPE html>
<html>
  <head>
    <title>Hello, World!</title>

    <!-- Include paling.js - note this file doesn't exist in the 'web' directory -->
    <script type="text/javascript" src="/paling.js"></script>
    <script type="text/javascript">
      paling.expose(say_hello_js); // Expose this function to Python
      function say_hello_js(x) {
        console.log("Hello from " + x);
      }

      say_hello_js("Javascript World!");
      paling.say_hello_py("Javascript World!"); // Call a Python function
    </script>
  </head>

  <body>
    Hello, World!
  </body>
</html>
```

and a short Python script `hello.py`:

```python
import eel

# Set web files folder and optionally specify which file types to check for paling.expose()
#   *Default allowed_extensions are: ['.js', '.html', '.txt', '.htm', '.xhtml']
paling.init('web', allowed_extensions=['.js', '.html'])

@paling.expose                         # Expose this function to Javascript
def say_hello_py(x):
    print('Hello from %s' % x)

say_hello_py('Python World!')
paling.say_hello_js('Python World!')   # Call a Javascript function

paling.start('hello.html')             # Start (this blocks and enters loop)
```

If we run the Python script (`python hello.py`), then a browser window will open displaying `hello.html`, and we will see...

```
Hello from Python World!
Hello from Javascript World!
```

...in the terminal, and...

```
Hello from Javascript World!
Hello from Python World!
```

...in the browser console (press F12 to open).

You will notice that in the Python code, the Javascript function is called before the browser window is even started - any early calls like this are queued up and then sent once the websocket has been established.

### Return values

While we want to think of our code as comprising a single application, the Python interpreter and the browser window run in separate processes. This can make communicating back and forth between them a bit of a mess, especially if we always had to explicitly _send_ values from one side to the other.

Eel supports two ways of retrieving _return values_ from the other side of the app, which helps keep the code concise.

To prevent hanging forever on the Python side, a timeout has been put in place for trying to retrieve values from
the JavaScript side, which defaults to 10000 milliseconds (10 seconds). This can be changed with the `_js_result_timeout` parameter to `paling.init`. There is no corresponding timeout on the JavaScript side.

#### Callbacks

When you call an exposed function, you can immediately pass a callback function afterwards. This callback will automatically be called asynchronously with the return value when the function has finished executing on the other side.

For example, if we have the following function defined and exposed in Javascript:

```javascript
paling.expose(js_random);
function js_random() {
  return Math.random();
}
```

Then in Python we can retrieve random values from the Javascript side like so:

```python
def print_num(n):
    print('Got this from Javascript:', n)

# Call Javascript function, and pass explicit callback function
paling.js_random()(print_num)

# Do the same with an inline lambda as callback
paling.js_random()(lambda n: print('Got this from Javascript:', n))
```

(It works exactly the same the other way around).

#### Synchronous returns

In most situations, the calls to the other side are to quickly retrieve some piece of data, such as the state of a widget or contents of an input field. In these cases it is more convenient to just synchronously wait a few milliseconds then continue with your code, rather than breaking the whole thing up into callbacks.

To synchronously retrieve the return value, simply pass nothing to the second set of brackets. So in Python we would write:

```python
n = paling.js_random()()  # This immediately returns the value
print('Got this from Javascript:', n)
```

You can only perform synchronous returns after the browser window has started (after calling `paling.start()`), otherwise obviously the call will hang.

In Javascript, the language doesn't allow us to block while we wait for a callback, except by using `await` from inside an `async` function. So the equivalent code from the Javascript side would be:

```javascript
async function run() {
  // Inside a function marked 'async' we can use the 'await' keyword.

  let n = await paling.py_random()(); // Must prefix call with 'await', otherwise it's the same syntax
  console.log("Got this from Python: " + n);
}

run();
```

## Asynchronous Python

Eel is built on Bottle and Gevent, which provide an asynchronous event loop similar to Javascript. A lot of Python's standard library implicitly assumes there is a single execution thread - to deal with this, Gevent can "[monkey patch](https://en.wikipedia.org/wiki/Monkey_patch)" many of the standard modules such as `time`. ~~This monkey patching is done automatically when you call `import eel`~~. If you need monkey patching you should `import gevent.monkey` and call `gevent.monkey.patch_all()` _before_ you `import eel`. Monkey patching can interfere with things like debuggers so should be avoided unless necessary.

For most cases you should be fine by avoiding using `time.sleep()` and instead using the versions provided by `gevent`. For convenience, the two most commonly needed gevent methods, `sleep()` and `spawn()` are provided directly from Eel (to save importing `time` and/or `gevent` as well).

In this example...

```python
import eel
paling.init('web')

def my_other_thread():
    while True:
        print("I'm a thread")
        paling.sleep(1.0)                  # Use paling.sleep(), not time.sleep()

paling.spawn(my_other_thread)

paling.start('main.html', block=False)     # Don't block on this call

while True:
    print("I'm a main loop")
    paling.sleep(1.0)                      # Use paling.sleep(), not time.sleep()
```

...we would then have three "threads" (greenlets) running;

1. Eel's internal thread for serving the web folder
2. The `my_other_thread` method, repeatedly printing **"I'm a thread"**
3. The main Python thread, which would be stuck in the final `while` loop, repeatedly printing **"I'm a main loop"**

## Building distributable binary with PyInstaller

If you want to package your app into a program that can be run on a computer without a Python interpreter installed, you should use **PyInstaller**.

1. Configure a virtualenv with desired Python version and minimum necessary Python packages
2. Install PyInstaller `pip install PyInstaller`
3. In your app's folder, run `python -m eel [your_main_script] [your_web_folder]` (for example, you might run `python -m eel hello.py web`)
4. This will create a new folder `dist/`
5. Valid PyInstaller flags can be passed through, such as excluding modules with the flag: `--exclude module_name`. For example, you might run `python -m eel file_access.py web --exclude win32com --exclude numpy --exclude cryptography`
6. When happy that your app is working correctly, add `--onefile --noconsole` flags to build a single executable file

Consult the [documentation for PyInstaller](http://PyInstaller.readthedocs.io/en/stable/) for more options.

## Microsoft Edge

For Windows 10 users, Microsoft Edge (`paling.start(.., mode='edge')`) is installed by default and a useful fallback if a preferred browser is not installed. See the examples:

- A Hello World example using Microsoft Edge: [examples/01 - hello_world-Edge/](https://github.com/ChrisKnott/Eel/tree/master/examples/01%20-%20hello_world-Edge)
- Example implementing browser-fallbacks: [examples/07 - CreateReactApp/eel_CRA.py](https://github.com/ChrisKnott/Eel/tree/master/examples/07%20-%20CreateReactApp/eel_CRA.py)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/python-paling/Paling",
    "name": "Paling",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "gui, html, javascript, electron",
    "author": "OpenSource Team - Roborian",
    "author_email": "info@roborian.com",
    "download_url": "https://files.pythonhosted.org/packages/84/a0/be144a4e8844b4a2fbd65d41e9c7e59a638f7aeb2da1b5dd7bb25172b5a1/Paling-0.16.3.tar.gz",
    "platform": null,
    "description": "# Eel, but then Paling\n\n[![PyPI version](https://img.shields.io/pypi/v/Eel?style=for-the-badge)](https://pypi.org/project/Paling/)\n[![PyPi Downloads](https://img.shields.io/pypi/dm/Eel?style=for-the-badge)](https://pypistats.org/packages/paling)\n![Python](https://img.shields.io/pypi/pyversions/Paling?style=for-the-badge)\n[![License](https://img.shields.io/pypi/l/Eel.svg?style=for-the-badge)](https://pypi.org/project/Paling/)\n\nPaling is a updated version of Eel, the Python library for making simple Electron-like offline HTML/JS GUI apps, with full access to Python capabilities and libraries.\n\n> **Eel hosts a local webserver, then lets you annotate functions in Python so that they can be called from Javascript, and vice versa.**\n\nEel is designed to take the hassle out of writing short and simple GUI applications. If you are familiar with Python and web development, probably just jump to [this example](https://github.com/ChrisKnott/Eel/tree/master/examples/04%20-%20file_access) which picks random file names out of the given folder (something that is impossible from a browser).\n\n<p align=\"center\"><img src=\"https://raw.githubusercontent.com/samuelhwilliams/Eel/master/examples/04%20-%20file_access/Screenshot.png\" ></p>\n\n<!-- TOC -->\n\n- [Eel](#eel)\n  - [Intro](#intro)\n  - [Install](#install)\n  - [Usage](#usage)\n    - [Directory Structure](#directory-structure)\n    - [Starting the app](#starting-the-app)\n    - [App options](#app-options)\n      - [Chrome/Chromium flags](#chromechromium-flags)\n    - [Exposing functions](#exposing-functions)\n    - [Eello, World!](#eello-world)\n    - [Return values](#return-values)\n      - [Callbacks](#callbacks)\n      - [Synchronous returns](#synchronous-returns)\n  - [Asynchronous Python](#asynchronous-python)\n  - [Building distributable binary with PyInstaller](#building-distributable-binary-with-pyinstaller)\n  - [Microsoft Edge](#microsoft-edge)\n\n<!-- /TOC -->\n\n## Intro\n\nEel has always been our favorite library for writing UI's in python, because it made it very simple to create a beautiful interface. Unfortunately the project has not been maintained, and now we are taking over.\n\nThere are several options for making GUI apps in Python, but if you want to use HTML/JS (in order to use jQueryUI or Bootstrap, for example) then you generally have to write a lot of boilerplate code to communicate from the Client (Javascript) side to the Server (Python) side.\n\nThe closest Python equivalent to Electron (to my knowledge) is [cefpython](https://github.com/cztomczak/cefpython). It is a bit heavy weight for what I wanted.\n\nEel is not as fully-fledged as Electron or cefpython - it is probably not suitable for making full blown applications like Atom - but it is very suitable for making the GUI equivalent of little utility scripts that you use internally in your team.\n\nFor some reason many of the best-in-class number crunching and maths libraries are in Python (Tensorflow, Numpy, Scipy etc) but many of the best visualization libraries are in Javascript (D3, THREE.js etc). Hopefully Eel makes it easy to combine these into simple utility apps for assisting your development.\n\nJoin Eel's users and maintainers on [Discord](https://discord.com/invite/3nqXPFX), if you like.\n\n## Install\n\nInstall from pypi with `pip`:\n\n```shell\npip install paling\n```\n\nTo include support for HTML templating, currently using [Jinja2](https://pypi.org/project/Jinja2/#description):\n\n```shell\npip install eel[jinja2]\n```\n\n## Usage\n\n### Directory Structure\n\nAn Eel application will be split into a frontend consisting of various web-technology files (.html, .js, .css) and a backend consisting of various Python scripts.\n\nAll the frontend files should be put in a single directory (they can be further divided into folders inside this if necessary).\n\n```\nmy_python_script.py     <-- Python scripts\nother_python_module.py\nstatic_web_folder/      <-- Web folder\n  main_page.html\n  css/\n    style.css\n  img/\n    logo.png\n```\n\n### Starting the app\n\nSuppose you put all the frontend files in a directory called `web`, including your start page `main.html`, then the app is started like this;\n\n```python\nimport eel\npaling.init('web')\npaling.start('main.html')\n```\n\nThis will start a webserver on the default settings (http://localhost:8000) and open a browser to http://localhost:8000/main.html.\n\nIf Chrome or Chromium is installed then by default it will open in that in App Mode (with the `--app` cmdline flag), regardless of what the OS's default browser is set to (it is possible to override this behaviour).\n\n### App options\n\nAdditional options can be passed to `paling.start()` as keyword arguments.\n\nSome of the options include the mode the app is in (e.g. 'chrome'), the port the app runs on, the host name of the app, and adding additional command line flags.\n\nAs of Eel v0.12.0, the following options are available to `start()`:\n - **mode**, a string specifying what browser to use (e.g. `'chrome'`, `'electron'`, `'edge'`, `'custom'`). Can also be `None` or `False` to not open a window. *Default: `'chrome'`*\n - **host**, a string specifying what hostname to use for the Bottle server. *Default: `'localhost'`)*\n - **port**, an int specifying what port to use for the Bottle server. Use `0` for port to be picked automatically. *Default: `8000`*.\n - **block**, a bool saying whether or not the call to `start()` should block the calling thread. *Default: `True`*\n - **jinja_templates**, a string specifying a folder to use for Jinja2 templates, e.g. `my_templates`. *Default:  `None`*\n - **cmdline_args**, a list of strings to pass to the command to start the browser. For example, we might add extra flags for Chrome; ```paling.start('main.html', mode='chrome-app', port=8080, cmdline_args=['--start-fullscreen', '--browser-startup-dialog'])```. *Default: `[]`*\n - **size**, a tuple of ints specifying the (width, height) of the main window in pixels *Default: `None`*\n - **position**, a tuple of ints specifying the (left, top) of the main window in pixels *Default: `None`*\n - **geometry**, a dictionary specifying the size and position for all windows. The keys should be the relative path of the page, and the values should be a dictionary of the form `{'size': (200, 100), 'position': (300, 50)}`. *Default: {}*\n - **close_callback**, a lambda or function that is called when a websocket to a window closes (i.e. when the user closes the window). It should take two arguments; a string which is the relative path of the page that just closed, and a list of other websockets that are still open. *Default: `None`*\n - **app**, an instance of Bottle which will be used rather than creating a fresh one. This can be used to install middleware on the instance before starting eel, e.g. for session management, authentication, etc. If your `app` is not a Bottle instance, you will need to call `paling.register_eel_routes(app)` on your custom app instance.\n - **shutdown_delay**, timer configurable for Eel's shutdown detection mechanism, whereby when any websocket closes, it waits `shutdown_delay` seconds, and then checks if there are now any websocket connections. If not, then Eel closes. In case the user has closed the browser and wants to exit the program. By default, the value of **shutdown_delay** is `1.0` second\n\n\n\n### Exposing functions\n\nIn addition to the files in the frontend folder, a Javascript library will be served at `/paling.js`. You should include this in any pages:\n\n```html\n<script type=\"text/javascript\" src=\"/paling.js\"></script>\n```\n\nIncluding this library creates an `eel` object which can be used to communicate with the Python side.\n\nAny functions in the Python code which are decorated with `@paling.expose` like this...\n\n```python\n@paling.expose\ndef my_python_function(a, b):\n    print(a, b, a + b)\n```\n\n...will appear as methods on the `eel` object on the Javascript side, like this...\n\n```javascript\nconsole.log(\"Calling Python...\");\npaling.my_python_function(1, 2); // This calls the Python function that was decorated\n```\n\nSimilarly, any Javascript functions which are exposed like this...\n\n```javascript\npaling.expose(my_javascript_function);\nfunction my_javascript_function(a, b, c, d) {\n  if (a < b) {\n    console.log(c * d);\n  }\n}\n```\n\ncan be called from the Python side like this...\n\n```python\nprint('Calling Javascript...')\npaling.my_javascript_function(1, 2, 3, 4)  # This calls the Javascript function\n```\n\nThe exposed name can also be overridden by passing in a second argument. If your app minifies JavaScript during builds, this may be necessary to ensure that functions can be resolved on the Python side:\n\n```javascript\npaling.expose(someFunction, \"my_javascript_function\");\n```\n\nWhen passing complex objects as arguments, bear in mind that internally they are converted to JSON and sent down a websocket (a process that potentially loses information).\n\n### Eello, World!\n\n> See full example in: [examples/01 - hello_world](https://github.com/ChrisKnott/Eel/tree/master/examples/01%20-%20hello_world)\n\nPutting this together into a **Hello, World!** example, we have a short HTML page, `web/hello.html`:\n\n```html\n<!DOCTYPE html>\n<html>\n  <head>\n    <title>Hello, World!</title>\n\n    <!-- Include paling.js - note this file doesn't exist in the 'web' directory -->\n    <script type=\"text/javascript\" src=\"/paling.js\"></script>\n    <script type=\"text/javascript\">\n      paling.expose(say_hello_js); // Expose this function to Python\n      function say_hello_js(x) {\n        console.log(\"Hello from \" + x);\n      }\n\n      say_hello_js(\"Javascript World!\");\n      paling.say_hello_py(\"Javascript World!\"); // Call a Python function\n    </script>\n  </head>\n\n  <body>\n    Hello, World!\n  </body>\n</html>\n```\n\nand a short Python script `hello.py`:\n\n```python\nimport eel\n\n# Set web files folder and optionally specify which file types to check for paling.expose()\n#   *Default allowed_extensions are: ['.js', '.html', '.txt', '.htm', '.xhtml']\npaling.init('web', allowed_extensions=['.js', '.html'])\n\n@paling.expose                         # Expose this function to Javascript\ndef say_hello_py(x):\n    print('Hello from %s' % x)\n\nsay_hello_py('Python World!')\npaling.say_hello_js('Python World!')   # Call a Javascript function\n\npaling.start('hello.html')             # Start (this blocks and enters loop)\n```\n\nIf we run the Python script (`python hello.py`), then a browser window will open displaying `hello.html`, and we will see...\n\n```\nHello from Python World!\nHello from Javascript World!\n```\n\n...in the terminal, and...\n\n```\nHello from Javascript World!\nHello from Python World!\n```\n\n...in the browser console (press F12 to open).\n\nYou will notice that in the Python code, the Javascript function is called before the browser window is even started - any early calls like this are queued up and then sent once the websocket has been established.\n\n### Return values\n\nWhile we want to think of our code as comprising a single application, the Python interpreter and the browser window run in separate processes. This can make communicating back and forth between them a bit of a mess, especially if we always had to explicitly _send_ values from one side to the other.\n\nEel supports two ways of retrieving _return values_ from the other side of the app, which helps keep the code concise.\n\nTo prevent hanging forever on the Python side, a timeout has been put in place for trying to retrieve values from\nthe JavaScript side, which defaults to 10000 milliseconds (10 seconds). This can be changed with the `_js_result_timeout` parameter to `paling.init`. There is no corresponding timeout on the JavaScript side.\n\n#### Callbacks\n\nWhen you call an exposed function, you can immediately pass a callback function afterwards. This callback will automatically be called asynchronously with the return value when the function has finished executing on the other side.\n\nFor example, if we have the following function defined and exposed in Javascript:\n\n```javascript\npaling.expose(js_random);\nfunction js_random() {\n  return Math.random();\n}\n```\n\nThen in Python we can retrieve random values from the Javascript side like so:\n\n```python\ndef print_num(n):\n    print('Got this from Javascript:', n)\n\n# Call Javascript function, and pass explicit callback function\npaling.js_random()(print_num)\n\n# Do the same with an inline lambda as callback\npaling.js_random()(lambda n: print('Got this from Javascript:', n))\n```\n\n(It works exactly the same the other way around).\n\n#### Synchronous returns\n\nIn most situations, the calls to the other side are to quickly retrieve some piece of data, such as the state of a widget or contents of an input field. In these cases it is more convenient to just synchronously wait a few milliseconds then continue with your code, rather than breaking the whole thing up into callbacks.\n\nTo synchronously retrieve the return value, simply pass nothing to the second set of brackets. So in Python we would write:\n\n```python\nn = paling.js_random()()  # This immediately returns the value\nprint('Got this from Javascript:', n)\n```\n\nYou can only perform synchronous returns after the browser window has started (after calling `paling.start()`), otherwise obviously the call will hang.\n\nIn Javascript, the language doesn't allow us to block while we wait for a callback, except by using `await` from inside an `async` function. So the equivalent code from the Javascript side would be:\n\n```javascript\nasync function run() {\n  // Inside a function marked 'async' we can use the 'await' keyword.\n\n  let n = await paling.py_random()(); // Must prefix call with 'await', otherwise it's the same syntax\n  console.log(\"Got this from Python: \" + n);\n}\n\nrun();\n```\n\n## Asynchronous Python\n\nEel is built on Bottle and Gevent, which provide an asynchronous event loop similar to Javascript. A lot of Python's standard library implicitly assumes there is a single execution thread - to deal with this, Gevent can \"[monkey patch](https://en.wikipedia.org/wiki/Monkey_patch)\" many of the standard modules such as `time`. ~~This monkey patching is done automatically when you call `import eel`~~. If you need monkey patching you should `import gevent.monkey` and call `gevent.monkey.patch_all()` _before_ you `import eel`. Monkey patching can interfere with things like debuggers so should be avoided unless necessary.\n\nFor most cases you should be fine by avoiding using `time.sleep()` and instead using the versions provided by `gevent`. For convenience, the two most commonly needed gevent methods, `sleep()` and `spawn()` are provided directly from Eel (to save importing `time` and/or `gevent` as well).\n\nIn this example...\n\n```python\nimport eel\npaling.init('web')\n\ndef my_other_thread():\n    while True:\n        print(\"I'm a thread\")\n        paling.sleep(1.0)                  # Use paling.sleep(), not time.sleep()\n\npaling.spawn(my_other_thread)\n\npaling.start('main.html', block=False)     # Don't block on this call\n\nwhile True:\n    print(\"I'm a main loop\")\n    paling.sleep(1.0)                      # Use paling.sleep(), not time.sleep()\n```\n\n...we would then have three \"threads\" (greenlets) running;\n\n1. Eel's internal thread for serving the web folder\n2. The `my_other_thread` method, repeatedly printing **\"I'm a thread\"**\n3. The main Python thread, which would be stuck in the final `while` loop, repeatedly printing **\"I'm a main loop\"**\n\n## Building distributable binary with PyInstaller\n\nIf you want to package your app into a program that can be run on a computer without a Python interpreter installed, you should use **PyInstaller**.\n\n1. Configure a virtualenv with desired Python version and minimum necessary Python packages\n2. Install PyInstaller `pip install PyInstaller`\n3. In your app's folder, run `python -m eel [your_main_script] [your_web_folder]` (for example, you might run `python -m eel hello.py web`)\n4. This will create a new folder `dist/`\n5. Valid PyInstaller flags can be passed through, such as excluding modules with the flag: `--exclude module_name`. For example, you might run `python -m eel file_access.py web --exclude win32com --exclude numpy --exclude cryptography`\n6. When happy that your app is working correctly, add `--onefile --noconsole` flags to build a single executable file\n\nConsult the [documentation for PyInstaller](http://PyInstaller.readthedocs.io/en/stable/) for more options.\n\n## Microsoft Edge\n\nFor Windows 10 users, Microsoft Edge (`paling.start(.., mode='edge')`) is installed by default and a useful fallback if a preferred browser is not installed. See the examples:\n\n- A Hello World example using Microsoft Edge: [examples/01 - hello_world-Edge/](https://github.com/ChrisKnott/Eel/tree/master/examples/01%20-%20hello_world-Edge)\n- Example implementing browser-fallbacks: [examples/07 - CreateReactApp/eel_CRA.py](https://github.com/ChrisKnott/Eel/tree/master/examples/07%20-%20CreateReactApp/eel_CRA.py)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "For little HTML GUI applications, with easy Python/JS interop",
    "version": "0.16.3",
    "project_urls": {
        "Homepage": "https://github.com/python-paling/Paling"
    },
    "split_keywords": [
        "gui",
        " html",
        " javascript",
        " electron"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84a0be144a4e8844b4a2fbd65d41e9c7e59a638f7aeb2da1b5dd7bb25172b5a1",
                "md5": "8e9811a36fb033eea359e2482c625a12",
                "sha256": "5daa49a43b22adba37657e5593885c7836b9145a059825b8b6c1ee152463cdba"
            },
            "downloads": -1,
            "filename": "Paling-0.16.3.tar.gz",
            "has_sig": false,
            "md5_digest": "8e9811a36fb033eea359e2482c625a12",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 19027,
            "upload_time": "2024-03-23T23:46:27",
            "upload_time_iso_8601": "2024-03-23T23:46:27.373451Z",
            "url": "https://files.pythonhosted.org/packages/84/a0/be144a4e8844b4a2fbd65d41e9c7e59a638f7aeb2da1b5dd7bb25172b5a1/Paling-0.16.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-23 23:46:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "python-paling",
    "github_project": "Paling",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "bottle",
            "specs": [
                [
                    "<",
                    "1.0.0"
                ]
            ]
        },
        {
            "name": "bottle-websocket",
            "specs": [
                [
                    "<",
                    "1.0.0"
                ]
            ]
        },
        {
            "name": "gevent",
            "specs": []
        },
        {
            "name": "gevent-websocket",
            "specs": [
                [
                    "<",
                    "1.0.0"
                ]
            ]
        },
        {
            "name": "greenlet",
            "specs": [
                [
                    "<",
                    "2.0.0"
                ],
                [
                    ">=",
                    "1.0.0"
                ]
            ]
        },
        {
            "name": "pyparsing",
            "specs": [
                [
                    "<",
                    "4.0.0"
                ],
                [
                    ">=",
                    "3.0.0"
                ]
            ]
        },
        {
            "name": "whichcraft",
            "specs": [
                [
                    "~=",
                    "0.4.1"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "paling"
}
        
Elapsed time: 0.21820s