Open In App

Date Time Expression (dte) module in python

In this article, we will discuss how to process and work with dates and time using the Python in command line. Python provides dte module for the same. This module has the following features – 

Installation 

This module does not come built-in with Python. To install this type the below command in the terminal



pip install dte
pip install appdirs

Example 1: Working with Dates

Working with Dates

Example 2: Working with Time



Playing with Time

Example 3: Working with Weekdays

Demonstrating Weekdays

Note: dow Takes unix timestamp and returns the day of week corresponding to it.

In Keyword 

It serves two purposes. Converts time formats, like today in seconds. Also converts point of time in Unix timestamp.

Example usage – in operator

Working with extremities

In this, we use ‘last’ operator to get the date of last weekday from current time.

Syntax : dte last [weekday]

Working of last

Working with operators

The dte library supports addition and subtraction of dates, even some comparison operations like – 

Example: 

Examples of using operators

Working with deltas

delta is a time delta object made by chaining of [number + unit] together without spaces.

Example:

Working with delta

Article Tags :