In my app engine application, I would like to use the alternate regular expression module pypi/regex instead of the default re module. First of all, is it possible? If yes, how do I do that?
I've installed the regex module in my development environment and tested. It works fine in the python shell. In order to make it part of my app engine project, I copied the following files to my project folder.
lib\
regex.py
_regex_core.py
However, I get the following error in my application.
No module named lib._regex
copying _regex.so is not helping either.