How to Install and Uninstall python311-pytimeparse Package on openSuSE Tumbleweed

Last updated: July 05,2024

1. Install "python311-pytimeparse" package

Here is a brief guide to show you how to install python311-pytimeparse on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python311-pytimeparse

2. Uninstall "python311-pytimeparse" package

This is a short guide on how to uninstall python311-pytimeparse on openSuSE Tumbleweed:

$ sudo zypper remove python311-pytimeparse

3. Information about the python311-pytimeparse package on openSuSE Tumbleweed

Information for package python311-pytimeparse:
----------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python311-pytimeparse
Version : 1.1.8-3.18
Arch : noarch
Vendor : openSUSE
Installed Size : 70.3 KiB
Installed : No
Status : not installed
Source package : python-pytimeparse-1.1.8-3.18.src
Upstream URL : https://github.com/wroberts/pytimeparse
Summary : Time expression parser
Description :
A small Python library to parse various kinds of time expressions,
inspired by a StackOverflow question.
The single function pytimeparse.timeparse.timeparse defined in the
library (also available as pytimeparse.parse) parses time expressions
like the following:
* 32m
* 2h32m
* 3d2h32m
* 1w3d2h32m
* 1w 3d 2h 32m
* 1 w 3 d 2 h 32 m
* ...
It returns the time as a number of seconds (an integer value if
possible, otherwise a floating-point number)
A number of seconds can be converted back into a string using the
datetime module in the standard library.