Python: Working with DateTimes

In this tutorial I will show you the different ways of working with dates and times in python. Which includes working with milliseconds. You should note this isn’t all available options just some that I have encountered over the years.

Install Python Packages:

Open cmd/terminal and if required navigate to your sites working folder. (note: if you are working in a virtual env you should ensure you source it first).

  1. pip install python-dateutil

There are many different packages that we can use to work with date and times. You need to decide what is right for you.

dateutil:

The following will convert the date string you give it fast and easily. This gives you back the datetime object. Notice how we don’t need to pass it a date time format. To me this is very convenient.

  1. from dateutil import parser
  2.  
  3. date_str = '2017-06-06'
  4. date_time_str = '2017-06-07 12:34'
  5. date_time_str_2 = '2017-06-07 12:34:46'
  6. date_time_str_3 = '2017-06-07 12:34:42.234'
  7.  
  8. result = parser.parse(date_str)
  9. print(result) #2017-06-06 00:00:00
  10. result = parser.parse(date_time_str)
  11. print(result) #2017-06-07 12:34:00
  12. result = parser.parse(date_time_str_2)
  13. print(result) #2017-06-07 12:34:46
  14. result = parser.parse(date_time_str_3)
  15. print(result) #2017-06-07 12:34:42.234000

datetime:

The following will convert the date string you give it fast and easily. This gives you back the datetime object. Notice how we need to pass the format of the datetime. If you don’t you will get an exception. This is a convenient way if you know the format before hand. But that might not always be the case.

  1. import datetime
  2.  
  3. date_str = '2017-06-06'
  4. date_time_str = '2017-06-07 12:34'
  5. date_time_str_2 = '2017-06-07 12:34:46'
  6. date_time_str_3 = '2017-06-07 12:34:42.234'
  7.  
  8. result = datetime.datetime.strptime(date_str, "%Y-%m-%d")
  9. print(result) #2017-06-06 00:00:00
  10. result = datetime.datetime.strptime(date_time_str, "%Y-%m-%d %H:%M")
  11. print(result) #2017-06-07 12:34:00
  12. result = datetime.datetime.strptime(date_time_str_2, "%Y-%m-%d %H:%M:%S")
  13. print(result) #2017-06-07 12:34:46
  14. result = datetime.datetime.strptime(date_time_str_3, "%Y-%m-%d %H:%M:%S.%f")
  15. print(result) #2017-06-07 12:34:42.234000

The above all works however the following example will not. Why do you think this is?

  1. import datetime
  2.  
  3. date_time_str = '2017-06-07 12:34:46'
  4.  
  5. try:
  6. datetime.datetime.strptime(date_time_str, "%Y-%m-%d %H:%M:%S")
  7. except:
  8. pass #just for this example don't do this lol

The reason is because datetime expects the correct format to be supplied. We gave it hour minute second but not milliseconds. You will get the following exception (ValueError: unconverted data remains: .234)

Timestamps:

Sometimes we want to convert the date to unix (epoch) time or vise versa.

From Date:
  1. from dateutil import parser
  2. from datetime import timezone
  3.  
  4. date_time_str = '2017-06-07 17:34:42.234'
  5. result = parser.parse(date_time_str)
  6.  
  7. timestamp = result.replace(tzinfo=timezone.utc).timestamp()
  8. print(timestamp) #1496856882.234

This gives us the timestamp as a float as 1496856882.234.

From Timestamp:
  1. from dateutil import parser
  2. import datetime
  3.  
  4. timestamp = 1496856882.234
  5.  
  6. result = datetime.datetime.fromtimestamp(timestamp)
  7. print(result) #2017-06-07 13:34:42.234000
  8.  
  9. result = datetime.datetime.utcfromtimestamp(timestamp)
  10. print(result) #2017-06-07 17:34:42.234000

Get Date Parts:

If you want to get specific date parts such as the year, month, day, hour, etc.

  1. import datetime
  2. from dateutil import parser
  3.  
  4. result = parser.parse(date_time_str_3)
  5. print(result) #2017-06-07 12:34:42.234000
  6.  
  7. year = result.year #2017
  8. month = result.month #6
  9. day = result.day #7
  10. hour = result.hour #12
  11. minute = result.minute #34
  12. second = result.second #42
  13. millisecond = result.microsecond #234000

Add To Date:

If you want to add time to a date.

  1. import datetime
  2. from dateutil import parser
  3. from datetime import timezone, timedelta
  4.  
  5. date_time_str = '2017-06-07 17:34:42.234'
  6. result = parser.parse(date_time_str)
  7. print(result) #2017-06-07 17:34:42.234000
  8.  
  9. timestamp = result.replace(tzinfo=timezone.utc).timestamp()
  10. print(timestamp) #1496856882.234
  11.  
  12. #Add 10 seconds to datetime
  13. new_time = int((datetime.datetime.fromtimestamp(timestamp) + timedelta(milliseconds=10000)).timestamp() * 1000)
  14. print(new_time) #1496856892234

As you can see you can 10 seconds has been added the datetime.

datetime strftime

  1. from datetime import datetime
  2.  
  3. now = datetime.now()
  4. datetime_str = now.strftime("%Y-%m-%d %H:%M:%S")
  5. print(datetime_str)

datetime fromisoformat

  1. from datetime import datetime
  2.  
  3. print(datetime.fromisoformat("2024-04-09 13:48:20"))

 

Postgres: Misc

Here are some misc things you can do in postgres 9.4.

Print to Console:

  1. raise notice 'VALUE: %', value;

Json Build Object:

  1. json_build_object('name', value, 'name2': value2)

Json Array:

  1. json_agg(data)

Extract Month:
You can also extract year, day, etc.

  1. extract(month from date_column)

Json Querying:
You can extract a field from a json field. You can do:

  1. rec->>'id'
  2. rec#>'{field, sub_field,value}'
  3. rec->'object'

Row To Json:

  1. SELECT row_to_json(t)
  2. FROM mytable t

Update With FROM:

  1. UPDATE mytable l
  2. SET old_val_id=sub.new_val_id
  3. FROM (
  4. SELECT l2.id, s.id as new_val_id
  5. FROM mytable l2
  6. INNER JOIN mysupertable s ON s.id=l2.old_val_id
  7. ) sub
  8. WHERE sub.id=l.id;

Inline Script:

  1. DO $do$
  2. DECLARE id integer;
  3. BEGIN      
  4.  
  5. END $do$ LANGUAGE plpgsql;

If:

  1. IF CONDITION THEN
  2. END IF;

Let’s say you have a json field and in that field you have a field which tells you what key you should select for certain data. It could be customizable from the user entering data. To dynamically select that field you can do the below.

  1. jsonField->((to_json((jsonField->'key'->'sub_key'))#>>'{}')::text)

Upsert:
Sometimes we want to perform update if the record exists or an insert if it doesn’t. Most of the time we write a function that deals with this on a record by record basis. But what if we want to do a batch update or insert. What do we do then. We perform an upsert. See below. We write the update and return the result in the remainder of the query  we check if upsert gave us anything. If it didn’t we perform the insert.

  1. WITH upsert AS (UPDATE MyTable mt
  2. SET column_name = sub.new_value
  3. FROM (SELECT mot.id, mot.new_value
  4. FROM MyOtherTable mot
  5. ) sub
  6. WHERE sub.id=mt.related_id
  7. RETURNING *)
  8. INSERT INTO MyTable (id, column_name, related_id)
  9. SELECT ?, ?, ?
  10. WHERE NOT EXISTS (SELECT * FROM upsert)

Regex Substring:
There are different ways of using regex. This is one way.

  1. substring(column_name from '([0-9]{4}-[0-9]{2}-[0-9]{2})')

PGSQL Loop:
This is one way to loop using pgsql.

  1. DO $do$
  2. DECLARE rec RECORD;
  3. BEGIN
  4. FOR rec IN SELECT * FROM MyTable
  5. LOOP
  6. --We can then use rec like rec.colum_name
  7. END LOOP;
  8. END $do$ LANGUAGE plpgsql;

Milliseconds to timestamp:

This will return 2017-08-17 21:26:04

  1. select to_timestamp(1503005165);