| python Programming Glossary: datetime.strptimeParse dates when YYYYMMDD and HH are in separate columns using pandas in Python http://stackoverflow.com/questions/11615504/parse-dates-when-yyyymmdd-and-hh-are-in-separate-columns-using-pandas-in-python  import datetime import pandas as pd parse lambda x datetime.strptime x ' Y m d H' pd.read_csv .. file.csv parse_dates 'YYYYMMDD'.. 
 plotting time in python with matplotlib http://stackoverflow.com/questions/1574088/plotting-time-in-python-with-matplotlib  convert your timestamps to python datetime objects use datetime.strptime . Then use date2num to convert the dates to matplotlib format... 
 Sorting CSV in Python http://stackoverflow.com/questions/2089036/sorting-csv-in-python  zip types values Usage import datetime def date s return datetime.strptime s ' m d y' convert int date str '1' '2 15 09' 'z' 1 datetime.datetime.. 
 Converting string to datetime object in python http://stackoverflow.com/questions/2609259/converting-string-to-datetime-object-in-python  str 'Fri 09 Apr 2010 14 10 50 0000' fmt ' a d b Y H M S z' datetime.strptime str fmt Traceback most recent call last File stdin line 1 in.. str 'Fri 09 Apr 2010 14 10 50' fmt ' a d b Y H M S' datetime.strptime str fmt datetime.datetime 2010 4 9 14 10 50 But I'm stuck with.. 
 Difference between two time intervals in Python http://stackoverflow.com/questions/3096953/difference-between-two-time-intervals-in-python  '10 33 26' s2 '11 15 49' # for example FMT ' H M S' tdelta datetime.strptime s1 FMT datetime.strptime s2 FMT That gets you a timedelta object.. # for example FMT ' H M S' tdelta datetime.strptime s1 FMT datetime.strptime s2 FMT That gets you a timedelta object that contains the difference.. 
 Extracting date from a string in Python http://stackoverflow.com/questions/3276180/extracting-date-from-a-string-in-python  use a regular expression to extract the date and datetime.datetime.strptime to parse the date match re.search r' d 4 d 2 d 2 ' text date.. parse the date match re.search r' d 4 d 2 d 2 ' text date datetime.strptime ' Y m d' .date Otherwise if the date is given in an arbitrary.. 
 Comparing dates in Python http://stackoverflow.com/questions/3278999/comparing-dates-in-python  that I'm trying execute from datetime import item_date datetime.strptime '7 16 10' m d y from_date date.today timedelta days 3 print.. 
 Python strptime() and timezones? http://stackoverflow.com/questions/3305413/python-strptime-and-timezones  to use the strptime function from datettime. datetime.datetime.strptime 'Tue Jun 22 12 10 20 2010 EST' ' a b d H M S Y Z' However for.. with it. I did read on this page that apparently datetime.strptime silently discards tzinfo however I checked the documentation.. 
 Best way to find the months between two dates (in python) http://stackoverflow.com/questions/4039879/best-way-to-find-the-months-between-two-dates-in-python  but its not very good as in elegant or fast. dateRange datetime.strptime dateRanges 0 Y m d datetime.strptime dateRanges 1 Y m d months.. or fast. dateRange datetime.strptime dateRanges 0 Y m d datetime.strptime dateRanges 1 Y m d months tmpTime dateRange 0 oneWeek timedelta.. 
 Python - Convert UTC datetime string to local datetime http://stackoverflow.com/questions/4770297/python-convert-utc-datetime-string-to-local-datetime  tz.tzutc to_zone tz.tzlocal # utc datetime.utcnow utc datetime.strptime '2011 01 21 02 37 21' ' Y m d H M S' # Tell the datetime object.. 
 python time to age part 2, timezones http://stackoverflow.com/questions/526406/python-time-to-age-part-2-timezones  from datetime import datetime fmt a d b Y H M S 0200 datetime.strptime Tue 22 Jul 2008 08 17 41 0200 fmt datetime.datetime 2008 7 22.. 2008 08 17 41 0200 fmt datetime.datetime 2008 7 22 8 17 41 datetime.strptime Tue 22 Jul 2008 08 17 41 0300 fmt Traceback most recent call.. delta timedelta hours offset 100 fmt a d b Y H M S time datetime.strptime Tue 22 Jul 2008 08 17 41 0200 6 fmt time delta   share improve.. 
 Equation parsing in Python http://stackoverflow.com/questions/594266/equation-parsing-in-python 
 How can I parse a time string containing milliseconds in it with python? http://stackoverflow.com/questions/698223/how-can-i-parse-a-time-string-containing-milliseconds-in-it-with-python  using datetime like this from datetime import datetime a datetime.strptime '30 03 09 16 31 32.123' ' d m y H M S. f' a.microsecond 123000.. 
 How do I convert local time to UTC in Python? http://stackoverflow.com/questions/79797/how-do-i-convert-local-time-to-utc-in-python  no attached timezone information. See documentation for datetime.strptime for information on parsing the date string. Use the pytz module.. local pytz.timezone America Los_Angeles naive datetime.datetime.strptime 2001 2 3 10 11 12 Y m d H M S local_dt local.localize naive.. 
 |