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

Last updated: June 29,2024

1. Install "python39-emoji" package

This guide let you learn how to install python39-emoji on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python39-emoji

2. Uninstall "python39-emoji" package

In this section, we are going to explain the necessary steps to uninstall python39-emoji on openSuSE Tumbleweed:

$ sudo zypper remove python39-emoji

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

Information for package python39-emoji:
---------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python39-emoji
Version : 2.10.1-1.4
Arch : noarch
Vendor : openSUSE
Installed Size : 5.2 MiB
Installed : No
Status : not installed
Source package : python-emoji-2.10.1-1.4.src
Upstream URL : https://github.com/carpedm20/emoji/
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'``). Further supported langauges are:
* Spanish ('es')
* Portuguese ('pt')
* Italian ('it')
* French ('fr')
* German ('de')
* Farsi/Persian ('fa')
* Indonesian ('id')
* Simplified Chinese ('zh')
* Japanese ('ja')
* Korean ('ko')
* Russian ('ru')
* Arabic ('ar')
* Turkish ('tr')