reorganization + multicast works on Linux!

This commit is contained in:
2025-10-20 22:35:35 -05:00
parent 28e56feef1
commit 0db078dbe4
28 changed files with 65 additions and 82 deletions

7
util/alphaSort.py Normal file
View File

@@ -0,0 +1,7 @@
import re
def sort_alphanumeric(data):
""" Sorts a list alphanumerically """
convert = lambda text: int(text) if text.isdigit() else text.lower()
alphanum_key = lambda key: [convert(c) for c in re.split('([0.9]+)', key)]
return(sorted(data, key=alphanum_key))