wormhole-ui

UI for Magic Wormhole - get things from one computer to another safely


License
GPL-3.0
Install
pip install wormhole-ui==0.2.0

Documentation

Magic Wormhole UI

A GUI for the Magic Wormhole. Get things from one computer to another safely.

Screenshot

PyPI Build Status

Installation

Windows

Download the Windows installer.

MacOS

Download the MacOS installer.

Linux

Installer coming soon. In the meantime, see below for installing with pipx.

From Source

The recommended method to run from the Python source is with pipx:

  pipx install wormhole-ui
  wormhole-ui

(or use pip if you prefer)

Development

Requires Poetry.

  git clone https://github.com/sneakypete81/wormhole-ui.git
  cd wormhole-ui
  poetry install

Then you can use the following:

  poetry run wormhole-ui  # Run the app
  poetry run pytest       # Run unit tests
  poetry run flake8       # Run the linter
  poetry run black .      # Run the code autoformatter
  poetry run tox          # Run all checks across all supported Python versions