https://github.com/mauricelambert/emojiencode
This module encodes and decodes data into partially random Unicode Emoji, it's like a steganography in message or social network.
https://github.com/mauricelambert/emojiencode
emoji encoding package pip python3 steganography web
Last synced: 4 months ago
JSON representation
This module encodes and decodes data into partially random Unicode Emoji, it's like a steganography in message or social network.
- Host: GitHub
- URL: https://github.com/mauricelambert/emojiencode
- Owner: mauricelambert
- License: gpl-3.0
- Created: 2023-01-29T19:57:06.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-07T19:44:14.000Z (almost 2 years ago)
- Last Synced: 2025-05-07T19:43:47.761Z (about 1 year ago)
- Topics: emoji, encoding, package, pip, python3, steganography, web
- Language: Python
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README

# EmojiEncode
## Description
This module encodes and decodes data into partially random Unicode Emoji, it's like a steganography in message or social network.
## Requirements
This package require:
- python3
- python3 Standard Library
## Installation
```bash
pip install EmojiEncode
```
## Usages
### Command line
```bash
python3 -m EmojiEncode 'my data'
python3 EmojiEncode.pyz --html 'first data' 'second data'
EmojiEncode --decode ''
EmojiEncode --html --decode '🙴🍥🍳🙴'
```
### Python script
```python
from EmojiEncode import encode, decode, html_decode, html_encode
emojis: str = encode(b'my data')
data: bytes = decode(emojis)
html_emojis: str = html_encode('html_string')
data: bytes = html_decode(html_emojis)
```
## Links
- [Github Page](https://github.com/mauricelambert/EmojiEncode/)
- [Documentation](https://mauricelambert.github.io/info/python/security/EmojiEncode.html)
- [Pypi package](https://pypi.org/project/EmojiEncode/)
- [Executable](https://mauricelambert.github.io/info/python/security/EmojiEncode.pyz)
## Licence
Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).