How to Install and Uninstall python3-oauth2.noarch Package on Fedora 38

Last updated: October 11,2024

1. Install "python3-oauth2.noarch" package

In this section, we are going to explain the necessary steps to install python3-oauth2.noarch on Fedora 38

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

2. Uninstall "python3-oauth2.noarch" package

This guide covers the steps necessary to uninstall python3-oauth2.noarch on Fedora 38:

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

3. Information about the python3-oauth2.noarch package on Fedora 38

Last metadata expiration check: 5:01:58 ago on Sat Mar 16 16:59:57 2024.
Available Packages
Name : python3-oauth2
Version : 1.9.0
Release : 27.post1.fc38
Architecture : noarch
Size : 45 k
Source : python-oauth2-1.9.0-27.post1.fc38.src.rpm
Repository : fedora
Summary : Python support for improved oauth
URL : http://pypi.python.org/pypi/oauth2/
License : MIT
Description : Oauth2 was originally forked from Leah Culver and Andy Smith's oauth.py
: code. Some of the tests come from a fork by Vic Fryzel, while a revamped
: Request class and more tests were merged in from Mark Paschal's fork. A
: number of notable differences exist between this code and its forefathers:
:
: - 100% unit test coverage.
: - The DataStore object has been completely ripped out. While creating unit
: tests for the library I found several substantial bugs with the
: implementation and confirmed with Andy Smith that it was never fully
: baked.
: - Classes are no longer prefixed with OAuth.
: - The Request class now extends from dict.
: - The library is likely no longer compatible with Python 2.3.
: - The Client class works and extends from httplib2. It's a thin wrapper
: that handles automatically signing any normal HTTP request you might
: wish to make.