Marc Hernández

Results 15 issues of Marc Hernández

At this moment, the main `number-parser` goal is to return the number equivalences from different languages, but only when those words are representing the number using the "decimal numeral system"...

I think it could be really cool to add an optional parameter to ignore some words. Example: ```python >>> parse('twenty one') '21' >>> parse('twenty one', ignore=["one"]) '20 one' ``` or...

enhancement

I open this ticket to track the ordinal's feature. From my understanding, what we should achieve is: ```python >>> parse('first') '1st' >>> parse('second') '2nd' >>> parse('third') '3rd' >>> parse('twenty-third') '23rd'...

enhancement

Hello @tibbi! I like your apps a lot. They are just what you expect they should be and nothing more, thank you. I would like to suggest a new app....

feature request

I needed to anonimyze the `User` model data from `django.contrib.auth.models`, so I wrote an anonymizer in an app of our project but referring to a the model outside the app....