This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Copyright 2017 Atlas Guide (Author : Lucas Jo) | |
| # | |
| # Apache 2.0 | |
| # | |
| import unicodedata | |
| import re | |
| measureUnits = "".join(chr(i) for i in range(0xffff) if i >= 0x3380 and i<=0x33DD) | |
| percents = ''.join(chr(i) for i in range(0xffff) \ |