Closed oseminck closed 2 years ago
No, regex
is a different module. Python's builtin re
does not have nearly enough support for Unicode regexes to use here.
regex.Match
exists in the regex dependency. I have to assume that you used some workaround to install wordfreq without its dependencies, such as manually setting your PYTHONPATH, and in that case you have an unrelated module called "regex" sitting around in your PYTHONPATH. All I can say is, don't do that.
You should install wordfreq using poetry, or if that's not an option, using pip.
/wordfreq/numbers.py", line 99, in
def _sub_zeroes(match: regex.Match) -> str:
AttributeError: module 'regex' has no attribute 'Match'
Hi, there I got this error, but I got it solved by going into the file "numbers.py" and change
import regex
into:
import re as regex
Did I do the right thing?