Skip to content

Tutorial Docs

This part of the project documentation focuses on a learning-oriented approach.
You'll learn how to get started with the code in this project.

Configuring the environment

Follow the below steps to configure the environment.

  1. Install the poetry.
    pip install poetry
  2. Initialize poetry shell.
    poetry shell
  3. Install the dependencies.
    poetry install

Run the project

To run the project, use the following command.

`python main.py`

This tool provides an all-in-one platform to encode , decode or hash a given text.

Encode, Decode and Hashing Shell Description: A tool developed to encode, decode and hash a given string Developed by: Anurag Sandeep Patil Date: Aug 12, 2023 Commands: encode, decode, hash, help, exit

Examples:

hash abcd md5 dj4723847rh4839rh338204234830e

main()

Tool execution starts here Returns


None

Source code in main.py
22
23
24
25
26
27
28
29
30
def main():
    """
    Tool execution starts here
    Returns
    -------
    None
    """
    initiate_commands()
    run_command_shell()