[Python-Dev] iso8601 parsing (original) (raw)
Chris Barker chris.barker at noaa.gov
Wed Oct 25 19:45:32 EDT 2017
- Previous message (by thread): [Python-Dev] iso8601 parsing
- Next message (by thread): [Python-Dev] iso8601 parsing
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Wed, Oct 25, 2017 at 4:22 PM, Alexander Belopolsky < alexander.belopolsky at gmail.com> wrote:
> times. The only difference is that instead of calling the type directly, > you call the appropriate classmethod. > > What am I missing?
Nothing. The only annoyance is that the data processing code typically needs to know the type anyway, so the classmethod is one more variable to keep track of.
I don't think anyone is arguing that is is hard to do either way, or that hard to use either way.
I think it comes down to a trade-off between:
Having an API for datetime that is like the datetime for number types:
int(str(an_int)) == an_int
so:
datetime(str(a_datetime)) == a_datetime
Alexander strongly supports that.
Or an API that is perhaps more like the rest of the datetime api, which has a number of alternate constructors:
datetime.now()
datetime.fromordinal()
datetime.fromtimestamp()
And has:
datetime.isoformat()
So a
datetime.fromisoformat()
would make a lot of sense.
I would note that the number types don't have all those alternate constructors Also, the number types mostly have a single parameter (except int has an optional base parameter). So I'm not sure the parallel is that strong.
Would it be horrible if we did both?
After all, right now, datetime has:
In [16]: dt.isoformat() Out[16]: '2017-10-25T16:30:48.744489'
and In [18]: dt.str() Out[18]: '2017-10-25 16:30:48.744489'
which do almost the same thing (I understand the "T" is option in iso 8601)
However, maybe they are different when you add a time zone?
ISO 8601 support offsets, but not time zones -- presumably the str supports the full datetime tzinfo somehow. Which may be why .isoformat() exists.
Though I don't think that means you couldn't have the init parse proper ISO strings, in addition to the full datetime str results.
-CHB
--
Christopher Barker, Ph.D. Oceanographer
Emergency Response Division NOAA/NOS/OR&R (206) 526-6959 voice 7600 Sand Point Way NE (206) 526-6329 fax Seattle, WA 98115 (206) 526-6317 main reception
Chris.Barker at noaa.gov -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.python.org/pipermail/python-dev/attachments/20171025/0b5d2067/attachment.html>
- Previous message (by thread): [Python-Dev] iso8601 parsing
- Next message (by thread): [Python-Dev] iso8601 parsing
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]