Small-n-simple command line utility for generating the hash"s of a string.
Some of the supported formats are:
- md5
- sha224
- sha256
- sha512
__init__.py
: The purpose of this file is to letpip
know that this is a python packagemain.py
: Now, this file holds the code. In practical scenarios, there are multiple files that contains the code but for now, we can dump all the code in this file.setup.py
: This file letpip
know the details of this package such as name, version and entrypoints.
Follow the steps to install the package:
- In the root level of the repo,
- Run this:
pip3 install -e .
-e
let the pip to know that this package is in development mode.