Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
912 views

How can I account for “AM” or “PM” with datetime.strptime?

Specifically I have code that simplifies to this: from datetime import datetime date_string = '2009-11-29 03:17 PM' format = '%Y-%m-%d %H:%M %p' my_date = datetime.strptime(date_string, format) # ...
6
votes
2answers
2k views

How to parse milliseconds in R?

How do I use strptime or any other functions to parse timestamps with milliseconds in R? > time[1] [1] "2010-01-15 13:55:23.975" > strptime(time[1], format="%Y-%m-%d %H:%M:%S.%f") [1] NA > ...
5
votes
4answers
831 views

str to time in python

time1 = "2010-04-20 10:07:30" time2 = "2010-04-21 10:07:30" How to convert the above from string to time stamp? I need to subtract the above timestamps time2-time1.
3
votes
3answers
95 views

Retrieving a date from a complex string in Python

I'm trying to get a single datetime out of two strings using datetime.strptime. The time is pretty easy (ex. 8:53PM), so I can do something like: theTime = datetime.strptime(givenTime, "%I:%M%p") ...
3
votes
2answers
271 views

Fixed strptime exception with thread lock, but slows down the program

I have the following code, which when is running inside of a thread (the full code is here - https://github.com/eWizardII/homobabel/blob/master/lovebird.py) for null in range(0,1): while ...
3
votes
3answers
333 views

unknown timezone name in R strptime/as.POSIXct

Where can I find a list of all legal time names for R function as.POSIXct? 'as.POSIXct("1970-01-01",tz="CST")' will generate warning that "CST" (Central Standard Time) is unknown. Thanks
3
votes
2answers
154 views

Problem with strptime() - %p is not taken into account

I am trying to convert a date in a particular format using strptime, and i realized that the information about AM/PM is lost. Not sure why. Here is the code. struct tm t; strptime("Wed 4/18/2007 ...
3
votes
3answers
3k views

python datetime strptime wildcard

I want to parse dates like these into a datetime object: December 12th, 2008 January 1st, 2009 The following will work for the first date: datetime.strptime("December 12th, 2008", "%B %dth, %Y") ...
2
votes
1answer
56 views

Milliseconds puzzle when calling strptime in R

options(digits.secs = 3); > strptime("2007-03-30 15:00:00.007", format = "%Y-%m-%d %H:%M:%OS"); [1] "2007-03-30 15:00:00.007" > strptime("2007-03-30 15:00:00.008", format = "%Y-%m-%d ...
2
votes
1answer
36 views

Why is strptime is 4 hours off?

How do I use strptime to format "%Y-%m-%dT%H:%M:%SZ" into the correct UNIX timestamp? I tried writing a method called testDateWithString (below). But, it fails with error message: '2011-12-27 ...
2
votes
1answer
65 views

Parse timestamp with a.m./p.m

I have a file that formats time stamps like 25/03/2011 9:15:00 p.m. How can I parse this text to a Date-Time class with either strptime or as.POSIXct? Here is what almost works: > ...
2
votes
2answers
96 views

Subtract SQL DATETIME from datetime.now() in Python

I have a DATETIME field in SQL. Its content is: 2012-08-26 13:00:00 I want to know how much time has passed from that date until now. In Python 2.7, it's easy: import time,datetime start = ...
2
votes
1answer
121 views

Using python datetime.datetime.strptime on windows with BST timezone

I need to parse many different dates in many different formats. I am having trouble with the following and wondered if anyopne could explain why; The following works on a linux system: from datetime ...
2
votes
1answer
60 views

What does strptime do with the information it reads/converts?

The specification for strptime: http://pubs.opengroup.org/onlinepubs/9699919799/functions/strptime.html is mostly clear on the possible conversion specifications and what input they require. ...
2
votes
4answers
1k views

How to remove unconverted data from a Python datetime object

I have a database of mostly correct datetimes but a few are broke like so: Sat Dec 22 12:34:08 PST 20102015 Without the invalid year, this was working for me: end_date = ...
2
votes
3answers
4k views

Converting a string to a formatted date-time string using Python

I'm trying to convert a string "20091229050936" into "05:09 29 December 2009 (UTC)" >>>import time >>>s = time.strptime("20091229050936", "%Y%m%d%H%M%S") >>>print ...
2
votes
5answers
1k views

PHP strptime format bug?

I am wrestling with a php 5.2.6 problem. An api we use returns dates in this format DDMMYYYYHHMM. Exactly that format, fixed length, no delimiters. However, in my experimentation, this format seems to ...
1
vote
1answer
55 views

Converting time format to numeric with R

In most cases,we convert numeric time to posixct format using R. However, sometimes, we want to compare which time point is earlier, then we would prefer the numeric time format. Thus, it's quite ...
1
vote
1answer
185 views

Ruby strptime with Timezone

I have a String which I parse with DateTime.strptime. The Timezone of the Date in the String is CET but Ruby creates an UTC DateTime Object which ofcourse has an offset of 2hrs. currently im working ...
1
vote
2answers
138 views

How do I plot only the time portion of a timestamp including a date?

So I have a set of timestamps like this: datetime<-c("2011-09-28 03:33:00", "2011-08-24 13:41:00", "2011-09-19 16:14:00", "2011-08-18 11:01:00", "2011-09-17 06:35:00", "2011-08-15 12:48:00") I ...
1
vote
1answer
168 views

No of Days between two dates in python 2.4

This will work in python 2.6 from datetime import datetime print (datetime.strptime('2008-12-31', "%Y-%m-%d")- datetime.strptime('2007-04-30',"%Y-%m-%d")).days But in 2.4 shows following error ...
1
vote
4answers
117 views

How to parse e.g. 2010-04-24T07:47:00.007+02:00 with Python strptime

Does anyone know how to parse the format as described in the title using Pythons strptime method? I have something similar to this: import datetime date = ...
1
vote
3answers
208 views

2 digit years using strptime() is not able to parse birthdays very well

Consider the following birthdays (as dob): 1-Jun-68 1-Jun-69 When parsed with Python’s datetime.strptime(dob, '%d-%b-%y') will yield: datetime.datetime(2068, 6, 1, 0, 0) datetime.datetime(1969, ...
1
vote
2answers
4k views

Formatting date times provided as strings in Django

In my Django application I get times from a webservice, provided as a string, that I use in my templates: {{date.string}} This provides me with a date such as: 2009-06-11 17:02:09+0000 These are ...
1
vote
4answers
808 views

strptime in Javascript

I have a date input field that allows the user to enter in a date and I need to validate this input (I already have server side validation), but the trick is that the format is locale dependent. I ...
0
votes
1answer
60 views

R format answer to time difference

I'm trying to format the answer from subtracting 2 times. Here's an example: > timer2$tdif2 <- as.numeric(strptime(as.character(timer2$time3), "%H:%M:%S:%OS") - ...
0
votes
1answer
49 views

Convert “%y-%m-%d” with strptime() in C fails

I'm trying to convert the character string "2011-12-12" into a time value using strptime. Can someone explain why this doesn't work? According to the docs: The format is composed of zero or ...
0
votes
2answers
93 views

Ruby Soap datetime parsing error

I am trying to convert a datetime that is returning back from a soap service which looks like this: "2011-09-30T11:25:56-05:00". I want to parse it to this format "2011-09-30 11:25:56" When I hard ...
0
votes
3answers
97 views

Changing date format in R

I have some very simple data in R that needs to have its date format changed: date midpoint 1 31/08/2011 0.8378 2 31/07/2011 0.8457 3 30/06/2011 0.8147 4 31/05/2011 0.7970 5 ...
0
votes
1answer
163 views

strptime in c with timezone offsets

I'm having trouble finding a way to parse the timezone out of strings like the following: "Thu, 1 Sep 2011 09:06:03 -0400 (EDT)" What I need to do in the larger scheme of my program is take in a ...
0
votes
3answers
220 views

c strptime warning comparison between pointer and integer

Compiling with gcc 4.4.3 on Ubuntu 10.04.2 x86_64 I get the following warning: warning: comparison between pointer and integer for this line: if (strptime(date_time, "%d-%b-%y %T", &tm) == ...
0
votes
2answers
248 views

perl POSIX::strptime - my data looks like 9:31:00 AM - I want to extract the minute and perform a calculation

I want to extract the minute from a specified time that exists in the 2nd column of a comma delimited file and perform a calculation. The format of the time is as follows: 9:31:00 AM I want to ...
0
votes
2answers
260 views

Python: strptime not matching format

ValueError: time data '03-10-2011 04:35 PM' does not match format '%m-%d-%Y %I:M %p' That looks like it matches to me? datetime = datestr + " " + timestr date_struct = ...
0
votes
2answers
500 views

Python 2.5 fails on a datetime.strptime format

I have seen several questions with people asking about the same problem but none of the answers are helping me. I'm receiving this error: pydev debugger: starting Traceback (most recent call ...
0
votes
4answers
2k views

datetime.datetime.strptime problem

My input string is '16-MAR-2010 03:37:04' and i want to store it as datetime. I am trying to use: db_inst.HB_Create_Ship_Date = datetime.strptime(fields[7]," %d-%b-%Y %H:%M:%S ") fields[7] = ...
0
votes
3answers
390 views

converting strptime into 'X hours ago'

I have a a date in strptime that I want to show as 'X hours ago'. I can happily convert hours into days and weeks etc. but I don't know how to do the initial sum. Here is how I'm converting the string ...