How to Install and Uninstall python3-beanbag.noarch Package on Fedora 34

Last updated: October 07,2024

1. Install "python3-beanbag.noarch" package

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

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

2. Uninstall "python3-beanbag.noarch" package

This guide covers the steps necessary to uninstall python3-beanbag.noarch on Fedora 34:

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

3. Information about the python3-beanbag.noarch package on Fedora 34

Last metadata expiration check: 2:29:09 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : python3-beanbag
Version : 1.9.2
Release : 21.fc34
Architecture : noarch
Size : 34 k
Source : python-beanbag-1.9.2-21.fc34.src.rpm
Repository : fedora
Summary : A helper module for accessing REST APIs
URL : https://github.com/ajtowns/beanbag
License : MIT
Description : BeanBag is a simple module that lets you access REST APIs in an easy way. For
: example:
:
: >>> import beanbag
: >>> github = beanbag.BeanBag("https://api.github.com")
: >>> watchers = github.repos.ajtowns.beanbag.watchers()
: >>> for w in watchers:
: ... print(w["login"])
: See http://beanbag.readthedocs.org/ for more information.