Skip to content

Commit

Permalink
Add superdsm.textual.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kostrykin committed Sep 15, 2024
1 parent 83e22f5 commit 24cb7ec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Run the script `load_data.py` to download the example image data from the web.

Run `python -m 'superdsm' .` within this directory to process the examples.
Run `python -m superdsm .` within this directory to process the examples using a command-line interface, or use `python -m superdsm.textual .` if you prefer a text-based user interface.

You can add your own data to this directory, and then process it in the same way.
6 changes: 6 additions & 0 deletions superdsm/textual.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import repype.textual.app

import superdsm.task

app = repype.textual.app.Repype(task_cls = superdsm.task.Task)
app.run()

0 comments on commit 24cb7ec

Please sign in to comment.