Converting utc time string to datetime object

后端 未结 4 1987
失恋的感觉
失恋的感觉 2021-01-01 11:23

I\'m using the Paypal API and I get back a timestamp in the following format. It try to parse this to a datetime object using strptime, but I get the following error:

<
4条回答
  •  猫巷女王i
    2021-01-01 11:54

    The parser from dateutil is your friend.

    You'll have to pip install dateutil but you've save bags and bags of date conversion code:

    pip install python-dateutil
    

    You can use it like this.

    from dateutil import parser
    ds = '2012-03-01T10:00:00Z' # or any date sting of differing formats.
    date = parser.parse(ds)
    

    You'll find you can deal with almost any date string formats with this parser and you'll get a nice standard python date back

提交回复
热议问题