I have a python console application that contains 300+ regular expressions. The set of regular expressions is fixed for each release. When users run the app, the entire se
As long as you create them on program start, the pyc file will cache them. You don't need to result to pickling.