Questions tagged [rfc3339]

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

See for more details on RFC

RFC 3339 was released in July 2002.

RFC 3339 is a simplification of which excludes durations, week numbers and ordinal days.

Resources:

100 questions
0
votes
2 answers

RFC 3339 date formatters - why is output date shifted by one day?

We have received an issue in our existing iOS application developed using Objective-c. Issue : The output date is shifting by one day back, only for PST time zone. We have written below code for converting the date to short format. -(NSString…
Raj
  • 1
  • 1
0
votes
3 answers

Make a video using Python+GST from a set of `YYYY-MM-DD`-dated pictures

I have a directory with a set of YYYY-MM-DD-dated files in as so: pictures/ 2010-08-14.png 2010-08-17.png 2010-08-18.png How can I use Python GStreamer to turn these files into a video? The filenames must remain the same. I have a…
Zaz
  • 46,476
  • 14
  • 84
  • 101
0
votes
1 answer

Passing RFC3339 standard time to InfluxDB, resulting in wrong results

I am trying to populate data into InfluxDB using Python. My RFC 3339 timestamp is "2016-01-11T01:07:39+05:30". When I try to pass this to InfluxDB, it returns a time of: "2016-01-10T19:37:39Z", while I actually want the time in InfluxDB to be…
Vishal Puliani
  • 201
  • 1
  • 3
  • 14
0
votes
1 answer

invalid rfc 3339 timestamp format?

I inserted this timestamp as part of the blogger query: http://www.blogger.com/feeds/26861498/posts/default?published-min=1937-01-01T12:00:27.87+08:00 It returned me an invalid pub-min format error. But as far as I know, this time format looks…
goh
  • 27,631
  • 28
  • 89
  • 151
0
votes
1 answer

How come I cannot parse an already RFC3339 string back to a RFC3339 string?

I'm storing a variable into a MySQL database with the field type of VARCHAR(255) like this: ts, err := time.Parse(time.RFC3339, nonce[0:20]) which works great and shows up like this: Then when I need to get it from the database I do this: rows,…
Datsik
  • 14,453
  • 14
  • 80
  • 121
0
votes
0 answers

Parsing timezone information with datetime

i' ve a string i' d like to parse and create a datetime object from it. For example: 2013-07-09T11:21:32+0500 . Using datetime.datetime.strptime(str(dt)[0:19], '%Y-%m-%dT%H:%M:%S') will do the half of the work, but what can i do with the timezone…
user2194805
  • 1,201
  • 1
  • 17
  • 35
0
votes
0 answers

Python strptime isoformat template

Actually i guess it is a easy question, but I could not find a answer for my datestring. It is formated like this: '2015-01-16T14:13:56+01:00' I tried to parse it with: datetime.datetime.strptime(timestring,…
Igl3
  • 4,900
  • 5
  • 35
  • 69
0
votes
1 answer

jQuery UI DatePicker date convert to RFC 3339 format

Currently working on the Google Calendar API and basically my end will provide Start and End date for user to pick the date and time. But would like anyone to advise how to convert them from (DatePicker/TimePicker/input field) to RFC 3339 format…
user862602
  • 33
  • 5
0
votes
1 answer

rfc 3339 to dd.mm.yyyy format

I have a string like that: NSString *string = @"2012-06-14T00:00:00+03:00"; I tried this and get "2012-06-14 21:00:00 GMT". But i need "14.06.2012". Is it possible? NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; formatter.dateFormat =…
Daedelus
  • 266
  • 5
  • 14
-1
votes
1 answer

How to add Rfc3339 date time string to add one second in c#

I have this date time string 2020-06-30T20:59:59.415Z. now i have to add 1 second for this date time string. i am converting this to date time this date time are convert to other format and date time are convert to other date time. so please explain…
1 2 3 4 5 6
7