Fast and efficient coding of binary data into non-breaking unicode whitespace
Reason this release was yanked:
accidental broken file
Project description
invisicode
Encodes arbitrary byte-strings into strings that display invisibly on devices and platforms supporting unicode.
Operates in base 4096 with one additional padding character for specific input widths, meaning 1.5 bytes per character on average.
Originally a coding scheme designed for github.com/thomas-xin/Miza, as one of the methods to hide small amounts of persistent data in text messages to reduce visual clutter.
Usage
encode(
b: str | bytes | bytearray | memoryview | numpy.ndarray,
padding: int = 119162
) -> str
decode(s: str, padding: int = 119162) -> bytes
import invisicode
data = b"Hello World!"
encoded = invisicode.encode(data) # '\U000e0548\U000e06c6\U000e0f6c\U000e0206\U000e0f57\U000e0726\U000e046c\U000e0216'
assert invisicode.decode(encoded) == data # b"Hello World!"
import invisicode
data = "Hello World! ❤️"
encoded = invisicode.encode(data) # '\U000e0548\U000e06c6\U000e0f6c\U000e0206\U000e0f57\U000e0726\U000e046c\U000e0216\U000e0220\U000e09de\U000e0fa4\U000e0b8e\U000e008f'
assert invisicode.decode(encoded) == data.encode("utf-8") # b'Hello World! \xe2\x9d\xa4\xef\xb8\x8f'
import invisicode
import numpy as np
data = np.random.randint(0, 256, size=10 ** 8, dtype=np.uint8)
encoded = invisicode.encode(data) # '\U000e05b7\U000e0504\U000e02cc\U000e09a9\U000e0df5\U000e0066\U000e0d96󠅋\U000e0959\U000e0469...
assert invisicode.decode(encoded) == data.tobytes()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file invisicode-1.0.0.tar.gz.
File metadata
- Download URL: invisicode-1.0.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10aa4f986e45dcde34c125056bf57a1e062dddb552f00997191fd0128d748431
|
|
| MD5 |
db5057df26e8d88a2686225b50c3762c
|
|
| BLAKE2b-256 |
d59930bd7facaa6b96995f2e178c9ca112d486a21af7b9a8ab69c5e07529531e
|
File details
Details for the file invisicode-1.0.0-py3-none-any.whl.
File metadata
- Download URL: invisicode-1.0.0-py3-none-any.whl
- Upload date:
- Size: 3.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dfa43aa7b260dce30b774604fa1aeb2754e30d38963eb615278c12716becb441
|
|
| MD5 |
7406823173716b9376822d070f2b53a3
|
|
| BLAKE2b-256 |
37f6a330e901c95a3ea5303791d9acbbf4c8db3b4a7373ac2baf71bc0ad355af
|