--- title: Codecs emoji: 🐢 colorFrom: red colorTo: red sdk: gradio sdk_version: 4.25.0 app_file: app.py pinned: true license: mit short_description: Text Encoder (ROT13) --- chcek out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference ### Text Encoder (ROT13) readme by [Djekz21](https://huggingface.co/LaynzID12) This repository contains a simple Python script for encoding text using the ROT13 cipher. The script is wrapped in a Gradio interface for easy interaction. #### Usage 1. Clone the repository: ```bash git clone https://huggingface.co/spaces/Hev832/codecs ``` 2. Install the required dependencies: ```bash pip install gradio codecs ``` 3. Run the script: ```bash python app.py ``` 4. Enter the text you want to encode in the provided text input field. 5. The encoded text will be displayed in the output field. #### About ROT13 ROT13 (rotate by 13 places) is a simple letter substitution cipher that replaces a letter with the 13th letter after it in the alphabet. It is a special case of the Caesar cipher, developed in ancient Rome. #### Libraries Used - Gradio: Gradio is a Python library that allows you to create UIs for your machine learning models or any Python function. - Codecs: Codecs is a module that provides access to the internal codecs registry which manages the encoding and decoding of data. #### Author This script was created by [Hev832](https://huggingface.co/Hev832) and is hosted on the Hugging Face Spaces platform. #### License This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.