Metadata-Version: 2.1
Name: EmojiEncode
Version: 0.0.1
Summary: This module encodes and decodes data into partially random Unicode Emoji, it's like a steganography in message or social network.
Home-page: https://github.com/mauricelambert/EmojiEncode
Author: Maurice Lambert
Author-email: mauricelambert434@gmail.com
Maintainer: Maurice Lambert
Maintainer-email: mauricelambert434@gmail.com
License: GPL-3.0 License
Project-URL: Documentation, https://mauricelambert.github.io/info/python/security/EmojiEncode.html
Project-URL: Executable, https://mauricelambert.github.io/info/python/security/EmojiEncode.pyz
Keywords: Emoji,Payloads,Encoding,Web,Bypass,Hacking,Security,Firewall
Platform: Windows
Platform: Linux
Platform: MacOS
Classifier: Topic :: Security
Classifier: Environment :: Console
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Build Tools
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt

![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 '<unicode emoji charaters>'
EmojiEncode --html --decode '&#x0001f674&#x0001f365&#x0001f373&#x0001f674'
```

### 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 = encode(b'my data')
data: bytes = 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/).
