Top "Rfc3339" questions

A RFC entitled "Date and Time on the Internet: Timestamps"

How do I parse an ISO 8601-formatted date?

I need to parse RFC 3339 strings like "2008-09-03T20:56:35.450686Z" into Python's datetime type. I have found strptime in …

python datetime iso8601 datetime-parsing rfc3339
Parse rfc3339 date strings in Python?

I have a datasets where all the dates have the following format: 2012-10-09T19:00:55Z I'd like to be …

python date datetime-parsing rfc3339
How can I parse / create a date time stamp formatted with fractional seconds UTC timezone (ISO 8601, RFC 3339) in Swift?

How to generate a date time stamp, using the format standards for ISO 8601 and RFC 3339? The goal is a string …

date swift time iso8601 rfc3339
How to convert a timezone aware string to datetime in Python without dateutil?

I have to convert a timezone-aware string like "2012-11-01T04:16:13-04:00" to a Python datetime object. I saw the …

python datetime timezone rfc3339
What exactly does the T and Z mean in timestamp?

I have this timestamp value being return by a web service "2014-09-12T19:34:29Z" I know that it means …

python datetime timestamp strftime rfc3339
How to convert Python's .isoformat() string back into datetime object

So in Python 3, you can generate an ISO 8601 date with .isoformat(), but you can't convert a string created by isoformat() …

python datetime iso8601 rfc3339
Generate RFC 3339 timestamp in Python

I'm trying to generate an RFC 3339 UTC timestamp in Python. So far I've been able to do the following: >&…

python datetime iso8601 rfc3339
Generate an RFC 3339 timestamp similar to Google Tasks API?

I am in the process of building an app that syncs with Google Tasks. As part part of the syncing, …

javascript timestamp google-tasks-api rfc3339 google-tasks
Output RFC 3339 Timestamp in Java

I want to output a timestamp with a PST offset (e.g., 2008-11-13T13:23:30-08:00). java.util.SimpleDateFormat does …

java timestamp rfc3339
ISO to datetime object: 'z' is a bad directive

I am trying to convert ISO to datetime using the code below: dt = datetime.datetime.strptime("2013-07-23T15:10:59.342107+01:00", "%Y-%…

python datetime iso rfc3339