untils 1.0.0__py3-none-any.whl

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,50 @@
1
+ # Welcome to `untils`
2
+
3
+ ![Version](https://img.shields.io/badge/version-1.0.0-blue)
4
+ ![License](https://img.shields.io/badge/license-MIT-green)
5
+ ![Python](https://img.shields.io/badge/python-3.12-yellow)
6
+
7
+ *untils* - Is light-weight library for console games or small utils to process user input as commands and describe structure with config.
8
+
9
+ ## Abilities
10
+
11
+ - Module-based config in markup line.
12
+ - Custom logic in OOP.
13
+ - Validation and parsing user input for 10 lines.
14
+ - Process exceptions.
15
+ - Almost-perfect detailed annotations everywhere.
16
+ - Fast command processing (~208µs).
17
+ - Infinitely extendable abilities.
18
+ - Calm about anything.
19
+
20
+ ## Architecture
21
+
22
+ This library was builded with next architecture:
23
+
24
+ ![Architecture diagramm.](docs/assets/diagramm0.svg)
25
+
26
+ ## Installation
27
+
28
+ ```bash
29
+ pip install untils
30
+ ```
31
+
32
+ ## Documentation
33
+
34
+ [Start Course](start-guide/01-first-project.md "Beginner course into the library.")
35
+
36
+ [API Reference](api-reference.md)
37
+
38
+ ## Roadmap
39
+
40
+ I have resolve my thoughs to several categories:
41
+
42
+ 1. **Main**:
43
+ - [ ] Add command description in `"description"` field.
44
+ - [ ] Add reserved commands in format like internal state name: `"__help__"` - Get all and available commands.
45
+
46
+ 2. **Additional**:
47
+ - [ ] ...
48
+
49
+ 3. **Conceptions**:
50
+ - [ ] Typing system in config through `"type"` field.
@@ -0,0 +1 @@
1
+ untils