Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ __Table of Contents__
<!-- toc -->
* [Quickstart](#quickstart)
* [Usage](#usage)
* [GUI (Windows)](#gui-windows)
* [Authentication](#authentication)
* [Web login (default)](#web-login-default)
* [App login](#app-login)
Expand Down Expand Up @@ -93,6 +94,17 @@ Options:
```
<!-- end runcmd -->

## GUI (Windows)

A Windows desktop interface that exposes all pytr functionality without the command line.
It requires the same Python installation and dependencies as the CLI.

After installing (see [Quickstart](#quickstart)), run:

```sh
pytr-gui
```

## Authentication

There are two authentication methods:
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,15 @@ dependencies = [
"pathvalidate",
"playwright",
"pygments",
"reportlab",
"requests_futures",
"shtab",
"websockets>=14",
]

[project.scripts]
pytr = "pytr.main:main"
pytr-gui = "pytr.gui:main"

[tool.hatch.build.hooks.babel]
locale_dir = "pytr/locale"
Expand All @@ -48,8 +50,9 @@ dev = [
"pytest>=8.3.4",
"mypy>=1.15.0",
"types-babel>=2.11.0.15",
"types-requests>=2.32.0.20241016",
"types-pygments>=2.19.0.20250107",
"types-reportlab",
"types-requests>=2.32.0.20241016",
]

[tool.ruff]
Expand Down
Loading