Steganography with Stepic
Stepic provides a Python module and a command-line interface to hide arbitrary data within images using the LSB technique. You can install it with the following command:
$ pip3 install stepic
Stepic provides the following methods available for encoding and decoding data in images:
>>> import stepic >>> help(stepic) Help on module stepic: NAME     stepic - # stepic - Python image steganography FUNCTIONS     decode(image)         extracts data from an image     decode_imdata(imdata)         Given a sequence of pixels, returns an iterator of characters         encoded in the image     encode(image, data)         generates an image with hidden data, starting with an existing     ...