PyTools-QOL

Python tools that I use for quality of life programming


Keywords
tools, quality, of, life, pytools, pyutils, QOL
License
Other
Install
pip install PyTools-QOL==0.0.2

Documentation

PyTools_QOL

Python tools that I use for quality of life programming

GitHub Actions Workflow Status Downloads

Installation Instructions

Package information and installation instructions can be found on PyPI.

To install package:

pip install PyTools-QOL

Features and Capabilities

Program Execution Time:

Example usage:

import time
from PyTools_QOL import print_execution_time

def main():
    time.sleep(3) # waits for 3 seconds

if __name__ == "__main__":
    main()
    print_execution_time() # > Program executed in 3 seconds.