How to Install and Uninstall python38-emoji Package on openSuSE Tumbleweed

Last updated: June 26,2024

1. Install "python38-emoji" package

In this section, we are going to explain the necessary steps to install python38-emoji on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python38-emoji

2. Uninstall "python38-emoji" package

Here is a brief guide to show you how to uninstall python38-emoji on openSuSE Tumbleweed:

$ sudo zypper remove python38-emoji

3. Information about the python38-emoji package on openSuSE Tumbleweed

Information for package python38-emoji:
---------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python38-emoji
Version : 1.6.1-1.1
Arch : noarch
Vendor : openSUSE
Installed Size : 2,4 MiB
Installed : No
Status : not installed
Source package : python-emoji-1.6.1-1.1.src
Summary : Emoji for Python
Description :
This Python module provides unicode emoji output for strings containing emoji codes.
In addition to the official list defined by the unicode consortium a whole bunch of aliases is defined.
Example:
>> import emoji
>> print(emoji.emojize('Python is :thumbs_up:'))
Python is 👍
>> print(emoji.emojize('Python is :thumbsup:', use_aliases=True))
Python is 👍
By default, the language is English (``language='en'``) but Spanish (``'es'``), Portuguese (``'pt'``) and Italian (``'it'``) are also supported.