How to Install and Uninstall python3-tempdir.noarch Package on Fedora 35

Last updated: July 08,2024

1. Install "python3-tempdir.noarch" package

This guide covers the steps necessary to install python3-tempdir.noarch on Fedora 35

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

2. Uninstall "python3-tempdir.noarch" package

In this section, we are going to explain the necessary steps to uninstall python3-tempdir.noarch on Fedora 35:

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

3. Information about the python3-tempdir.noarch package on Fedora 35

Last metadata expiration check: 5:02:51 ago on Wed Sep 7 08:25:01 2022.
Available Packages
Name : python3-tempdir
Version : 0.7.1
Release : 19.fc35
Architecture : noarch
Size : 13 k
Source : python-tempdir-0.7.1-19.fc35.src.rpm
Repository : fedora
Summary : Automatically manage temporary directories, based on tempfile.mkdtemp
URL : https://bitbucket.org/another_thomas/tempdir
License : MIT
Description :
: Having to manually manage temporary directories is annoying.
: So this class encapsulates temporary directories which just disappear after
: use, including contained directories and files.
: Temporary directories are created with tempfile.mkdtemp and thus safe from
: race conditions. Cleanup might not work on windows if files are still opened.