githubEdit

Developer Guide

Working with OpenAdapt

circle-info

Experiencing difficulty? Get support on our Discordarrow-up-right.

Installation

OpenAdapt requires Python3.10, you can download it herearrow-up-right or try our installer, which will download Python for you.

Permissions(IMPORTANT)

See how to set up system permissions on macOS herearrow-up-right.

circle-info

Good to know: After installing OpenAdapt, run pytest to verify that the installation was successful.

Usage

Shell

Run this in every new terminal window once (while inside the OpenAdapt root directory) before running any openadapt commands below. This is required to activate the pythom environment:

poetry shell

You should see the something like this:

Notice the environment prefix (openadapt-py3.10).

Run app locally for testing

python -m openadapt.entrypoint

CLI would look something like this after the command

After it runs successfully, you will see an app tray at top right of screen

Make your first recording

Create a new recording by running the following command:

To make your first recording, try the following command:

Wait until all three event writers have started:

To stop recording, focus the terminal and send CTRL+C (SIGINT). The recording is finished saving when you see something like this:

Current limitations:

  • Recording should be short (i.e. under a minute), as they are somewhat memory intensive, and there is currently an open issuearrow-up-right describing a possible memory leak.

  • The only touchpad and trackpad gestures currently supported are pointing the cursor and left or right clicking, as described in this open issuearrow-up-right

Visualize

  • Quickly visualize the latest recording you created by running the following command:

python -m openadapt.visualize

This will generate an HTML file and open a tab in your browser that looks something like this:

  • For a more powerful dashboard, run:

python -m openadapt.app.dashboard.run

  • For a desktop app-based visualization, run:

python -m openadapt.app.visualize

Read more on openadapt.visualize.

This will open a scrollable window that looks something like this:

Playback

You can play back the recording using the following command:

python -m openadapt.replay NaiveReplayStrategy

Other replay strategies include:

circle-info

Good to know: The (*) prefix indicates strategies which accept an "instructions" parameter that is used to modify the recording. e.g.: python -m openadapt.replay VanillaReplayStrategy --instructions "calculate 9-8"

See strategy listarrow-up-right for a complete list. More ReplayStrategies coming soon!

Features

System Tray Icon and Client GUI App(work-in-progress)

python3 -m openadapt.start

Detailed performance monitoring via pymplerarrow-up-right and tracemallocarrow-up-right:

Last updated