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

Last updated: September 30,2024

1. Install "python3-bottle-sqlite.noarch" package

Please follow the steps below to install python3-bottle-sqlite.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install python3-bottle-sqlite.noarch

2. Uninstall "python3-bottle-sqlite.noarch" package

Please follow the guidance below to uninstall python3-bottle-sqlite.noarch on Fedora 34:

$ sudo dnf remove python3-bottle-sqlite.noarch $ sudo dnf autoremove

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

Last metadata expiration check: 3:45:40 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : python3-bottle-sqlite
Version : 0.1.3
Release : 16.fc34
Architecture : noarch
Size : 13 k
Source : python-bottle-sqlite-0.1.3-16.fc34.src.rpm
Repository : fedora
Summary : SQLite3 integration for Bottle WSGI framework
URL : http://bottlepy.org
License : MIT
Description : Bottle-sqlite is a plugin that integrates SQLite3 with your Bottle application.
: It automatically connects to a database at the beginning of a request, passes
: the database handle to the route callback and closes the connection afterwards.
:
: To automatically detect routes that need a database connection, the plugin
: searches for route callbacks that require a db keyword argument (configurable)
: and skips routes that do not. This removes any overhead for routes that don't
: need a database connection.