AmPhIbIaN26
AmPhIbIaN26
Ohh ok thanks, I'll work on it
@noviluni I am doing a bit of research on this topic first, so do you only want conversion of numbers to int or a readable string. Or maybe could you...
i looked up on how to parse roman numerals, it can be added to the current parser, but for the case of these other numerals for Chinese Japanese and other...
So I add roman to parser and then make a new parser for the other languages, right?
parsing roman is not a big or complex task and can be added directly to parser.py, what I meant by a different parser for other languages was that to create...
I'll look into it, will make a pull request for roman numeral by tomorrow maybe and was thinking of taking other numerals in my proposal, how does that sound?
Thanks a lot, I am excited to work on this!!
I worked on a way for parse_number, where you have to set ```language='rom'```, I did this because unlike other languages where you can add the ones tens and hundreds to...
Ok, I'll see a work around to it.
Hey @Gallaecio hope you're doing well! I have implemented parsing roman numerals, and have made a [pull request ](https://github.com/scrapinghub/number-parser/pull/63) for it. So the ```parse_number()``` now works like this: ```python >>>parse_number('MMCDXX')...