my version of @dis.sociat.ing's dollcode algorithm in python

updated readme with install & usage instructions

+22 -1
+22 -1
README.md
··· 1 1 # dollcode 2 2 3 - port of @dis.sociat.ing's [dollcode](https://noe.sh/dollcode/) to python. prints to terminal. 3 + port of @dis.sociat.ing's [dollcode](https://noe.sh/dollcode/) to python. 4 + 5 + ## install 6 + requires uv. 7 + 8 + ```sh 9 + # install uv with personal package manager, then... 10 + git clone https://tangled.org/bruja.moe/dollcode 11 + ``` 12 + 13 + ## usage 14 + `uv run main.py <number>`: convert a positive number to dollcode: 15 + ```sh 16 + uv run main.py 676767 17 + # outputs: ▌▖▌▌▘▌▌▘▘▌▌▌ 18 + ``` 19 + 20 + `uv run main.py <number> -c`: converts number and copies output to clipboard 21 + ```sh 22 + uv run main.py 8008135 -c 23 + # outputs: ▖▖▘▘▌▖▘▖▖▘▌▘▖▘▖ -> 📋 copied! 24 + ```