Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-07T19:44:14.000Z (4 months ago)
- Last Synced: 2024-09-07T20:51:47.493Z (4 months 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 logo](https://mauricelambert.github.io/info/python/security/EmojiEncode_small.png "EmojiEncode logo")
# 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_encodeemojis: 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/).