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

Last updated: September 18,2024

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

This tutorial shows how to install python3-bottle-sqlite.noarch on Fedora 35

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

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

This guide let you learn how to uninstall python3-bottle-sqlite.noarch on Fedora 35:

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

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

Last metadata expiration check: 2:55:40 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : python3-bottle-sqlite
Version : 0.1.3
Release : 18.fc35
Architecture : noarch
Size : 13 k
Source : python-bottle-sqlite-0.1.3-18.fc35.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.