Skip to content

Commit 62a9222

Browse files
committed
Added related util sections
1 parent 230e1b3 commit 62a9222

8 files changed

Lines changed: 45 additions & 1 deletion

File tree

find-project-root/docs/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,14 @@ root = find_project_root(path='src', max_depth=5, markers=['manifest.json'])
7777

7878
Copyright © 2026 [Adam Lui](https://github.com/adamlui).
7979

80+
## Related
81+
82+
🏷️ [project-markers](project-markers-gh) - Common project root markers.
83+
<br>📊 [get-min-py](https://github.com/adamlui/python-utils/tree/main/get-min-py/#readme) - Get the minimum Python version required for a PyPI package.
84+
8085
#
8186

8287
<a href="#top">Back to top ↑</a>
8388

84-
[project-markers-gh]: https://github.com/adamlui/python-utils/tree/main/project-markers
89+
[project-markers-gh]: https://github.com/adamlui/python-utils/tree/main/project-markers/#readme
8590
[project-markers-json]: https://github.com/adamlui/python-utils/blob/main/project-markers/src/project_markers/project_markers.json

get-min-py/docs/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ _Note: Most type checkers will falsely warn_ `get_min_py` _is not a callable mod
5959

6060
Copyright © 2026 [Adam Lui](https://github.com/adamlui).
6161

62+
## Related
63+
64+
📂 [find-project-root](https://github.com/adamlui/python-utils/tree/main/find-project-root/#readme) - Locate project root via custom markers.
65+
6266
#
6367

6468
<a href="#top">Back to top ↑</a>

is-unicode-supported/docs/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@ _Note: Most type checkers will falsely warn_ `is_unicode_supported` _is not a ca
5353

5454
Copyright © 2026 [Adam Lui](https://github.com/adamlui).
5555

56+
## Related
57+
58+
🇪🇸 [latin-locales](https://github.com/adamlui/python-utils/tree/main/latin-locales/#readme) - ISO 639-1 (2-letter) codes for Latin locales.
59+
<br>🇨🇳 [non-latin-locales](https://github.com/adamlui/python-utils/tree/main/non-latin-locales/#readme) - ISO 639-1 (2-letter) codes for non-Latin locales.
60+
<br>🌍 [translate-messages](https://github.com/adamlui/python-utils/tree/main/translate-messages/#readme) - Translate `en/messages.json` (chrome.i18n format) to 100+ locales automatically.
61+
5662
#
5763

5864
<a href="#top">Back to top ↑</a>

latin-locales/docs/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,9 @@ _Note: Most type checkers will falsely warn_ `latin_locales` _is not iterable be
3535
## MIT License
3636

3737
Copyright © 2026 [Adam Lui](https://github.com/adamlui).
38+
39+
## Related
40+
41+
🇨🇳 [non-latin-locales](https://github.com/adamlui/python-utils/tree/main/non-latin-locales/#readme) - ISO 639-1 (2-letter) codes for non-Latin locales.
42+
<br>🌍 [translate-messages](https://github.com/adamlui/python-utils/tree/main/translate-messages/#readme) - Translate `en/messages.json` (chrome.i18n format) to 100+ locales automatically.
43+
<br>📟 [is-unicode-supported](https://github.com/adamlui/python-utils/tree/main/is-unicode-supported/#readme) - Detect whether the terminal supports advanced Unicode.

non-latin-locales/docs/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,9 @@ _Note: Most type checkers will falsely warn_ `non_latin_locales` _is not iterabl
3535
## MIT License
3636

3737
Copyright © 2026 [Adam Lui](https://github.com/adamlui).
38+
39+
## Related
40+
41+
🇪🇸 [latin-locales](https://github.com/adamlui/python-utils/tree/main/latin-locales/#readme) - ISO 639-1 (2-letter) codes for Latin locales.
42+
<br>🌍 [translate-messages](https://github.com/adamlui/python-utils/tree/main/translate-messages/#readme) - Translate `en/messages.json` (chrome.i18n format) to 100+ locales automatically.
43+
<br>📟 [is-unicode-supported](https://github.com/adamlui/python-utils/tree/main/is-unicode-supported/#readme) - Detect whether the terminal supports advanced Unicode.

project-markers/docs/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,8 @@ The list includes hundreds of markers from many tools and ecosystems, including:
4343
## MIT License
4444

4545
Copyright © 2026 [Adam Lui](https://github.com/adamlui).
46+
47+
## Related
48+
49+
📂 [find-project-root](https://github.com/adamlui/python-utils/tree/main/find-project-root/#readme) - Locate project root via custom markers.
50+
<br>📊 [get-min-py](https://github.com/adamlui/python-utils/tree/main/get-min-py/#readme) - Get the minimum Python version required for a PyPI package.

remove-json-keys/docs/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,11 @@ _Note: CLI arguments always override config file._
9292

9393
Copyright © 2023–2026 [Adam Lui](https://github.com/adamlui).
9494

95+
## Related
96+
97+
🌍 [translate-messages](https://github.com/adamlui/python-utils/tree/main/translate-messages/#readme) - Translate `en/messages.json` (chrome.i18n format) to 100+ locales automatically.
98+
<br>🏷️ [project-markers](https://github.com/adamlui/python-utils/tree/main/project-markers/#readme) - Common project root markers.
99+
95100
#
96101

97102
<a href="#top">Back to top ↑</a>

translate-messages/docs/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,13 @@ _Note: CLI arguments always override config file._
100100

101101
Copyright © 2023–2026 [Adam Lui](https://github.com/adamlui).
102102

103+
## Related
104+
105+
📟 [is-unicode-supported](https://github.com/adamlui/python-utils/tree/main/is-unicode-supported/#readme) - Detect whether the terminal supports advanced Unicode.
106+
<br>🇨🇳 [non-latin-locales](https://github.com/adamlui/python-utils/tree/main/non-latin-locales/#readme) - ISO 639-1 (2-letter) codes for non-Latin locales.
107+
<br>🇪🇸 [latin-locales](https://github.com/adamlui/python-utils/tree/main/latin-locales/#readme) - ISO 639-1 (2-letter) codes for Latin locales.
108+
<br><b>{ }</b> [remove-json-keys](https://github.com/adamlui/python-utils/tree/main/remove-json-keys/#readme) - Simply remove JSON keys via CLI command.
109+
103110
#
104111

105112
<a href="#top">Back to top ↑</a>

0 commit comments

Comments
 (0)