Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicpwns/random-unicode-emoji-py
A simple Python package that returns random Unicode emojis. 🐍
https://github.com/nicpwns/random-unicode-emoji-py
discord discord-bot discord-py emoji emojis package pip pypi pypi-package pypi-packages python python-3 unicode unicode-characters
Last synced: about 2 months ago
JSON representation
A simple Python package that returns random Unicode emojis. 🐍
- Host: GitHub
- URL: https://github.com/nicpwns/random-unicode-emoji-py
- Owner: NicPWNs
- License: mit
- Created: 2023-02-28T02:22:17.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-17T17:51:42.000Z (10 months ago)
- Last Synced: 2024-11-01T20:29:18.341Z (about 2 months ago)
- Topics: discord, discord-bot, discord-py, emoji, emojis, package, pip, pypi, pypi-package, pypi-packages, python, python-3, unicode, unicode-characters
- Language: Python
- Homepage: https://pypi.org/project/random-unicode-emoji/
- Size: 203 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.rst
Awesome Lists containing this project
README
# random-unicode-emoji
[![python](https://img.shields.io/pypi/pyversions/random-unicode-emoji)](https://pypi.org/project/random-unicode-emoji/)
[![pypi](https://img.shields.io/pypi/v/random-unicode-emoji)](https://pypi.org/project/random-unicode-emoji/)
[![Unicode](https://img.shields.io/badge/Unicode-15.0-success)](https://www.unicode.org/Public/emoji/15.0/)
[![downloads](https://pepy.tech/badge/random-unicode-emoji)](https://pepy.tech/project/random-unicode-emoji)
[![stars](https://img.shields.io/github/stars/NicPWNs/random-unicode-emoji-py)](https://github.com/NicPWNs/random-unicode-emoji-py/stargazers)
[![forks](https://img.shields.io/github/forks/NicPWNs/random-unicode-emoji-py.svg)](https://github.com/NicPWNs/random-unicode-emoji-py/forks)
[![repo size](https://img.shields.io/github/repo-size/NicPWNs/random-unicode-emoji-py)](https://github.com/NicPWNs/random-unicode-emoji-py)
[![license](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/NicPWNs/random-unicode-emoji-py/blob/main/LICENSE.rst)
[![issues](https://img.shields.io/github/issues/NicPWNs/random-unicode-emoji-py.svg)](https://github.com/NicPWNs/random-unicode-emoji-py/issues)A simple Python package that returns random Unicode emojis. 🐍
> Like this repo? Give it a [⭐ on GitHub!](https://github.com/NicPWNs/random-unicode-emoji-py)
## Install
Install the package:
```bash
pip install random-unicode-emoji
```> No dependencies!
## Usage
Use the package:
```py
# Import the Library
from random_unicode_emoji import random_emoji
# Use the Function
print(random_emoji())
# Return Specific Count
print(random_emoji(count=3))
# Use Specific Version
print(random_emoji(version="15.0"))
# Append Custom Emoji
print(random_emoji(custom=['(° ͜ʖ ͡°)','(╯°□°)╯︵ ┻━┻']))
# All Together Now
print(random_emoji(3, 15, ['(° ͜ʖ ͡°)','(╯°□°)╯︵ ┻━┻']))
```## Upgrade
Upgrade the package to the latest version:
```bash
pip install random-unicode-emoji -U
```## Unicode
Uses Unicode Standard Emoji from [Unicode.org](https://www.unicode.org/Public/emoji/)
### Supported Unicode Versions
4.0, 5.0, 11.0, 12.0, 12.1, 13.0, 13.1, 14.0, 15.0 (latest)
> _Uses latest version by default._
## Language
This is the Python 🐍 version. There is also a [JavaScript 📜](https://github.com/NicPWNs/random-unicode-emoji) and [Rust ⚙️](https://github.com/NicPWNs/random-unicode-emoji-rs) version.
## Maintainer
[Nic Jones, (@NicPWNs)](https://github.com/NicPWNs)
## Credit
Originally Inspired by [randomEmoji.py](https://gist.github.com/shello/efa2655e8a7bce52f273)