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

Last updated: September 21,2024

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

Here is a brief guide to show you how to install python3-bottle-sqlite.noarch on Fedora 36

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

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

This is a short guide on how to uninstall python3-bottle-sqlite.noarch on Fedora 36:

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

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

Last metadata expiration check: 0:21:28 ago on Thu Sep 8 08:04:50 2022.
Available Packages
Name : python3-bottle-sqlite
Version : 0.1.3
Release : 19.fc36
Architecture : noarch
Size : 13 k
Source : python-bottle-sqlite-0.1.3-19.fc36.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.