{ "info": { "author": "Andrew Scott", "author_email": "", "bugtrack_url": null, "classifiers": [], "description": "# Steg\n\nSteg is a simple python library for hiding and extracting messages from losslessly compressed images using least-significant-bit (LSB) steganography. Current supported image formats include PNG, TIFF, BMP, and ICO.\nSteg also includes a command line tool for quick hiding and extraction.\n\n## Installation\n```\n$ pip install steg\n```\n\n## Usage in Code\n```\n# Import library\nfrom steg import steg_img\n\n# Hiding\n# Select your payload and carrier files\ns = steg_img.IMG(payload_path=, image_path=)\n# Create a new image containing your payload\ns.hide()\n\n# Extracting\n# Select the carrier image\ns_prime = steg_img.IMG(image_path=