5 changed files with 14 additions and 7 deletions
@ -1 +1 @@ |
|||
VERSION = '0.0.10' |
|||
VERSION = '0.0.11-rc.1' |
|||
|
@ -0,0 +1,9 @@ |
|||
import re |
|||
|
|||
|
|||
# Taken from inflection library |
|||
def underscore(word): |
|||
word = re.sub(r'([A-Z]+)([A-Z][a-z])', r'\1_\2', word) |
|||
word = re.sub(r'([a-z\d])([A-Z])', r'\1_\2', word) |
|||
word = word.replace('-', '_') |
|||
return word.lower() |
Loading…
Reference in new issue