Git Product home page Git Product logo

Comments (3)

kippandrew avatar kippandrew commented on September 27, 2024 2

The issue seems to be the naturaltime function (and possibly others) assumes that a datetime object that is passed is timezone naive (meaning it has no tzinfo). If you do pass a timezone aware datetime, an error is raised because you can't compare a timezone naive and timezone aware datetime object.

A solution might be to allow the caller to pass in the 'now' time.

On Python 3.5:

>>> import datetime
>>> import humanize

# parse a timestamp with utc offset
>>> ts = datetime.datetime.strptime("2018-02-15T21:31:16.048820-0800", "%Y-%m-%dT%H:%M:%S.%f%z")

>>> ts
datetime.datetime(2018, 2, 15, 21, 31, 16, 48820, tzinfo=datetime.timezone(datetime.timedelta(-1, 57600)))

>>> humanize.naturaltime(ts)
Traceback (most recent call last):
  File "<input>", line 1, in <module>
  File "/Users/akipp/.virtualenvs/lucid-kube/lib/python3.5/site-packages/humanize/time.py", line 116, in naturaltime
    date, delta = date_and_delta(value)
  File "/Users/akipp/.virtualenvs/lucid-kube/lib/python3.5/site-packages/humanize/time.py", line 30, in date_and_delta
    delta = now - value
TypeError: can't subtract offset-naive and offset-aware datetimes```

from humanize.

shaleh avatar shaleh commented on September 27, 2024

Can you provide example failures and expected results?

from humanize.

kippandrew avatar kippandrew commented on September 27, 2024

Another solution would be to allow the caller to pass in tzinfo struct and localize the "now" time to that tz.

from humanize.

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.