Some useful tools for Python development by MinWei
Project description
minwei_tools
This tools contain 3 major function
- Dotter : Display animated text on screen during long missions
- re_result : A Rust-like approach to error handling
- server : A file transfer server
- us_doc : A
uvdoc generator
Install
pip install minwei_tools
Usage
-
File Transfer server
python -m minwei_tools.server -p {port} -h {host}
-
Dotter
An example of dotter, DotStyle have many style can use.
from minwei_tools import Dotter from minwei_tools import DotStyle from time import sleep rand_style = DotStyle.random() with Dotter(message="[*] Normal speed", cycle=rand_style, delay=0.25, show_timer=0) as d: d.insert_message("This is a test message 1") sleep(1) d.insert_message("This is a test message 2") sleep(1) d.insert_message("This is a test message 3") sleep(1) d.update_message("[*] Fast spin", delay=0.05) sleep(1) d.insert_message("This is a test message 4") sleep(1) d.insert_message("This is a test message 5") sleep(1) d.insert_message("This is a test message 6") d.update_message("[*] Slow spin", delay=1) for i in range(7, 80): d.insert_message(f"This is another message {i}", max_str = 10, prefix = "*") sleep(0.05) d.update_message("[*] Longer msg", delay=0.5) for i in range(80, 250): d.insert_message(f"This is another message {i}", max_str = 20, prefix = f"🚀{cm.Style.RESET_ALL}{cm.Style.BRIGHT}") sleep(0.01) d.update_message("[*] Short msg", delay=0.5) for i in range(250, 500): d.insert_message(f"This is another message {i}", max_str = 3, prefix = f"{cm.Style.RESET_ALL}{cm.Style.BRIGHT}🚀{cm.Style.RESET_ALL}{cm.Style.DIM}") sleep(0.01)
Also support an
asyncdotterfrom time import sleep import asyncio from minwei_tools import AsyncDotter async def main(): async with AsyncDotter("Thinking", show_timer=True, delay=0.1): await asyncio.sleep(120) asyncio.run(main())
-
rs_result
from minwei_tools.rs_result import Result, Ok, Err def devide(a: int, b: int) -> Result[int, str]: if b == 0: return Err("Division by zero error") return Ok(a // b) """ >>> result : Result[int, str] = devide(10, 0) >>> result.is_ok() False >>> result.is_err() >>> result : Result[int, str] = devide(10, 2) >>> result.is_ok() True >>> result.unwrap() 5 """ result : Result[int, str] = devide(10, 0) match result: case Ok(value): print(f"Result: {value}") case Err(value): print(f"Error: {value}") result : Result[int, str] = devide(10, 2) match result: case Ok(value): print(f"Result: {value}") case Err(value): print(f"Error: {value}")
-
uv doc
python -m minwei_tools.uv_doc -p {PROJECT_NAME}
-h, --help show this help message and exit -p PROJECT_NAME, --project_name PROJECT_NAME Name of the project. Defaults to the current directory name. -o OUTPUT, --output OUTPUT Output file name. Defaults to README.md. -d DIRECTORY, --directory DIRECTORY Directory to scan. Defaults to the current working directory.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
minwei_tools-0.1.18.tar.gz
(12.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file minwei_tools-0.1.18.tar.gz.
File metadata
- Download URL: minwei_tools-0.1.18.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c37e61b026d877ea81c5e909e89625ce760fada8ef87508d157ab30172eb6260
|
|
| MD5 |
6f7e3d2eadbc2d50ed9d7566c4a635b4
|
|
| BLAKE2b-256 |
73feb1e3940dcc27aa7956cfa13b14f9253d172ee7945e31d1c07156654ceac7
|
File details
Details for the file minwei_tools-0.1.18-py3-none-any.whl.
File metadata
- Download URL: minwei_tools-0.1.18-py3-none-any.whl
- Upload date:
- Size: 13.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70e2b254764e68af632766ebb03a0439eed4417e779b9a2bf1887328a6eb6848
|
|
| MD5 |
612a3b1b3ab5603f30b76fe8fb6ad43f
|
|
| BLAKE2b-256 |
c90ce320198524cf1c00bf975b3795ad1fa24ecf904b3a06fac30f13bed9124d
|