Giter Club home page Giter Club logo

Comments (3)

bear avatar bear commented on August 18, 2024

always willing to consider new code - can you work up a pull request that implements it along with tests?

from parsedatetime.

idpaterson avatar idpaterson commented on August 18, 2024

This is supported for English language numbers up to and including twenty. After that it would get tricky since numbers may be expressed in multiple words. For larger numbers, it looks like parsedatetime has the text2num logic incorporated in the _convertUnitAsWords function, but that function is not actually used anywhere.

It would probably be possibly to parse those multi-word numbers but likely not worth the effort. Except in limited circumstances I would imagine that spelling out numbers higher than twenty is very rare.

from parsedatetime.

plajjan avatar plajjan commented on August 18, 2024

I'm sorry, I realize that my problem lies with an older version of parsedatetime that ships with Ubuntu 14.04. Using the latest from pypi does correctly parse words, like "three months";

Old version in Ubuntu 14.04:

>>> pdt.parse("3 months")
(time.struct_time(tm_year=2015, tm_mon=8, tm_mday=25, tm_hour=8, tm_min=3, tm_sec=37, tm_wday=1, tm_yday=237, tm_isdst=-1), 1)
>>> pdt.parse("three months")
(time.struct_time(tm_year=2015, tm_mon=6, tm_mday=4, tm_hour=8, tm_min=3, tm_sec=38, tm_wday=3, tm_yday=155, tm_isdst=-1), 1)
>>> 

Latest pypi:

>>> pdt.parse("3 months")
(time.struct_time(tm_year=2015, tm_mon=8, tm_mday=25, tm_hour=8, tm_min=2, tm_sec=29, tm_wday=1, tm_yday=237, tm_isdst=-1), 1)
>>> pdt.parse("three months")
(time.struct_time(tm_year=2015, tm_mon=8, tm_mday=25, tm_hour=8, tm_min=4, tm_sec=8, tm_wday=1, tm_yday=237, tm_isdst=-1), 1)
>>> 

from parsedatetime.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.