Metadata-Version: 1.0
Name: rere
Version: 0.1.0
Summary: regex redone
Home-page: https://github.com/malea/rere
Author: Malea Grubb
Author-email: maleangrubb@gmail.com
License: Apache 2
Description: 
        rere: regex redone
        ------------------
        
            from rere import *
        
            money_regex = Exactly('$') + Digit*2 + (Exactly('.') + Digit*2).zero_or_one
        
            regex.match('$23.95') # ==> True
        
        Isn't this better than `regex.compile('\\$\\d\\d(\\.\\d\\d)?')`?
        
        
Platform: UNKNOWN
