typer-cli-tool 0.3.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Will Gerstung
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,86 @@
1
+ Metadata-Version: 2.4
2
+ Name: typer-cli-tool
3
+ Version: 0.3.3
4
+ Summary: Typing practice in your terminal. Like monkeytype, but in the CLI.
5
+ Author: Will Gerstung
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/William-Ger/typer
8
+ Keywords: typing,wpm,terminal,cli,practice
9
+ Classifier: Environment :: Console :: Curses
10
+ Classifier: Topic :: Games/Entertainment
11
+ Classifier: Programming Language :: Python :: 3
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Dynamic: license-file
16
+
17
+ # typer
18
+
19
+ Typing practice in your terminal. Like [monkeytype](https://monkeytype.com), but in the CLI.
20
+
21
+ ## Install
22
+
23
+ ```
24
+ brew tap William-Ger/typer
25
+ brew install typer
26
+ ```
27
+
28
+ Then just run:
29
+
30
+ ```
31
+ typer
32
+ ```
33
+
34
+ ## Usage
35
+
36
+ ```
37
+ typer # 30s medium (default)
38
+ typer -t 15 # 15 second test
39
+ typer -t 60 # 60 second test
40
+ typer -d hard # hard difficulty
41
+ typer -t 15 -d easy # quick easy warmup
42
+ ```
43
+
44
+ ## Controls
45
+
46
+ | Key | Action |
47
+ |-----------|---------------------|
48
+ | `tab` | restart / home |
49
+ | `ctrl+q` | quit |
50
+ | `←` `→` | change time |
51
+ | `↑` `↓` | change difficulty |
52
+ | `click` | click time/difficulty|
53
+ | `s` | stats |
54
+
55
+ ## Features
56
+
57
+ - Timed tests: 15s, 30s, 60s, 120s
58
+ - Three difficulty levels (easy, medium, hard)
59
+ - Live WPM and accuracy while typing
60
+ - Personal stats: best WPM, streaks, per-difficulty averages, sparkline
61
+ - User profiles stored locally at `~/.config/typer/`
62
+ - Passive update check — shows update command if a new version is available
63
+
64
+ ## Install from source
65
+
66
+ ```
67
+ pip install .
68
+ ```
69
+
70
+ ## Update
71
+
72
+ Homebrew:
73
+
74
+ ```
75
+ brew update && brew upgrade typer
76
+ ```
77
+
78
+ pip:
79
+
80
+ ```
81
+ pip install --upgrade typer-cli-tool
82
+ ```
83
+
84
+ ## Zero dependencies
85
+
86
+ Pure Python. Only uses `curses` (built-in). Works on macOS and Linux out of the box.
@@ -0,0 +1,70 @@
1
+ # typer
2
+
3
+ Typing practice in your terminal. Like [monkeytype](https://monkeytype.com), but in the CLI.
4
+
5
+ ## Install
6
+
7
+ ```
8
+ brew tap William-Ger/typer
9
+ brew install typer
10
+ ```
11
+
12
+ Then just run:
13
+
14
+ ```
15
+ typer
16
+ ```
17
+
18
+ ## Usage
19
+
20
+ ```
21
+ typer # 30s medium (default)
22
+ typer -t 15 # 15 second test
23
+ typer -t 60 # 60 second test
24
+ typer -d hard # hard difficulty
25
+ typer -t 15 -d easy # quick easy warmup
26
+ ```
27
+
28
+ ## Controls
29
+
30
+ | Key | Action |
31
+ |-----------|---------------------|
32
+ | `tab` | restart / home |
33
+ | `ctrl+q` | quit |
34
+ | `←` `→` | change time |
35
+ | `↑` `↓` | change difficulty |
36
+ | `click` | click time/difficulty|
37
+ | `s` | stats |
38
+
39
+ ## Features
40
+
41
+ - Timed tests: 15s, 30s, 60s, 120s
42
+ - Three difficulty levels (easy, medium, hard)
43
+ - Live WPM and accuracy while typing
44
+ - Personal stats: best WPM, streaks, per-difficulty averages, sparkline
45
+ - User profiles stored locally at `~/.config/typer/`
46
+ - Passive update check — shows update command if a new version is available
47
+
48
+ ## Install from source
49
+
50
+ ```
51
+ pip install .
52
+ ```
53
+
54
+ ## Update
55
+
56
+ Homebrew:
57
+
58
+ ```
59
+ brew update && brew upgrade typer
60
+ ```
61
+
62
+ pip:
63
+
64
+ ```
65
+ pip install --upgrade typer-cli-tool
66
+ ```
67
+
68
+ ## Zero dependencies
69
+
70
+ Pure Python. Only uses `curses` (built-in). Works on macOS and Linux out of the box.
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["setuptools>=64"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "typer-cli-tool"
7
+ version = "0.3.3"
8
+ description = "Typing practice in your terminal. Like monkeytype, but in the CLI."
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ requires-python = ">=3.8"
12
+ authors = [{ name = "Will Gerstung" }]
13
+ keywords = ["typing", "wpm", "terminal", "cli", "practice"]
14
+ classifiers = [
15
+ "Environment :: Console :: Curses",
16
+ "Topic :: Games/Entertainment",
17
+ "Programming Language :: Python :: 3",
18
+ ]
19
+
20
+ [tool.setuptools.packages.find]
21
+ include = ["typer_cli*"]
22
+
23
+ [project.scripts]
24
+ typer = "typer_cli.main:entry"
25
+
26
+ [project.urls]
27
+ Homepage = "https://github.com/William-Ger/typer"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ __version__ = "0.3.3"
@@ -0,0 +1,3 @@
1
+ from typer_cli.main import entry
2
+
3
+ entry()