File: README.md

package info (click to toggle)
python-bumble 0.0.220-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 9,280 kB
  • sloc: python: 71,701; java: 3,782; javascript: 823; xml: 203; sh: 172; makefile: 8
file content (55 lines) | stat: -rw-r--r-- 2,687 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Bumble For Web Browsers
=======================

Early prototype the consists of running the Bumble stack in a web browser
environment, using [pyodide](https://pyodide.org/)

Two examples are included here:
 
  * scanner - a simple scanner
  * speaker - a pure-web-based version of the Speaker app

Both examples rely on the shared code in `bumble.js`.

Running The Examples
--------------------

To run the examples, you will need an HTTP server to serve the HTML and JS files, and
and a WebSocket server serving an HCI transport.

For HCI over WebSocket, recent versions of the `netsim` virtual controller support it,
or you may use the Bumble HCI Bridge app to bridge a WebSocket server to a virtual
controller using some other transport (ex: `python apps/hci_bridge.py ws-server:_:9999 usb:0`).

For HTTP, start an HTTP server with the `web` directory as its
root. You can use the invoke task `inv web.serve` for convenience.

`inv web.build` will build the local copy of bumble and automatically copy the `.whl` file
to the web directory. To use this build, include the param `?packageFile=true` to the URL.

In a browser, open either `scanner/scanner.html` or `speaker/speaker.html`.
You can pass optional query parameters:

  * `packageFile=true` will automatically use the bumble package built via the
    `inv web.build` command.
  * `package` may be set to point to a local build of Bumble (`.whl` files).
     The filename must be URL-encoded of course, and must be located under
     the `web` directory (the HTTP server won't serve files not under its
     root directory).
  * `hci` may be set to specify a non-default WebSocket URL to use as the HCI
     transport (the default is: `"ws://localhost:9922/hci`). This also needs
     to be URL-encoded.

Example:
    With a local HTTP server running on port 8000, to run the `scanner` example
    with a locally-built Bumble package `../bumble-0.0.163.dev5+g6f832b6.d20230812-py3-none-any.whl` 
    (assuming that `bumble-0.0.163.dev5+g6f832b6.d20230812-py3-none-any.whl` exists under the `web`
    directory and the HCI WebSocket transport at `ws://localhost:9999/hci`, the URL with the 
    URL-encoded query parameters would be:
    `http://localhost:8000/scanner/scanner.html?hci=ws%3A%2F%2Flocalhost%3A9999%2Fhci&package=..%2Fbumble-0.0.163.dev5%2Bg6f832b6.d20230812-py3-none-any.whl`


NOTE: to get a local build of the Bumble package, use `inv build`, the built `.whl` file can be found in the `dist` directory. 
Make a copy of the built `.whl` file in the `web` directory.

Tip: During web developement, disable caching. [Chrome](https://stackoverflow.com/a/7000899]) / [Firefiox](https://stackoverflow.com/a/289771)