How to Install and Uninstall python3-isodate.noarch Package on Red Hat Enterprise Linux 9 (RHEL 9)

Last updated: October 10,2024

1. Install "python3-isodate.noarch" package

This guide covers the steps necessary to install python3-isodate.noarch on Red Hat Enterprise Linux 9 (RHEL 9)

$ sudo dnf update $ sudo dnf install python3-isodate.noarch

2. Uninstall "python3-isodate.noarch" package

In this section, we are going to explain the necessary steps to uninstall python3-isodate.noarch on Red Hat Enterprise Linux 9 (RHEL 9):

$ sudo dnf remove python3-isodate.noarch $ sudo dnf autoremove

3. Information about the python3-isodate.noarch package on Red Hat Enterprise Linux 9 (RHEL 9)

Last metadata expiration check: 1:07:05 ago on Mon Feb 26 07:04:30 2024.
Available Packages
Name : python3-isodate
Version : 0.6.1
Release : 3.el9
Architecture : noarch
Size : 56 k
Source : python-isodate-0.6.1-3.el9.src.rpm
Repository : epel
Summary : An ISO 8601 date/time/duration parser and formatter
URL : https://pypi.org/project/isodate/
License : BSD
Description : This module implements ISO 8601 date, time and duration
: parsing. The implementation follows ISO8601:2004 standard, and implements only
: date/time representations mentioned in the standard. If something is not
: mentioned there, then it is treated as non existent, and not as an allowed
: option.
:
: For instance, ISO8601:2004 never mentions 2 digit years. So, it is not intended
: by this module to support 2 digit years. (while it may still be valid as ISO
: date, because it is not explicitly forbidden.) Another example is, when no time
: zone information is given for a time, then it should be interpreted as local
: time, and not UTC.
:
: As this module maps ISO 8601 dates/times to standard Python data types, like
: date, time, datetime and timedelta, it is not possible to convert all possible
: ISO 8601 dates/times. For instance, dates before 0001-01-01 are not allowed by
: the Python date and datetime classes. Additionally fractional seconds are
: limited to microseconds. That means if the parser finds for instance
: nanoseconds it will round it to microseconds.