Skip to main content

An assortment of handy Python tools made by someone named Andrew

Project description

About

andrewtools is an assortment of handy Python tools made by someone named Andrew.

Quick Start

Supported Python Versions

Python 3.8+

Mac / Linux

pip install andrewtools

Windows

py -m pip install andrewtools

Examples

Progress Bar

If you are working on a program that uses a loop that takes a significant amount of time to execute, it can be nice to follow the progress of your program while it runs. Use print_progress_bar to visualize the progress via the command line.

import time
from andrewtools import print_progress_bar

iterations = 10
for i in range(iterations):
    print_progress_bar(i, iterations, width=10, prefix="Progress")
    time.sleep(0.5)

# Printed to command line:
Progress | ***------- | 30%  <- % and progress bar update in-place while loop runs
  • Warning: this function will not play well if the loop includes other print statements. The progress bar may get printed on a separate line for each iteration, which may not be desirable.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

andrewtools-0.0.1.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

andrewtools-0.0.1-py3-none-any.whl (5.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page