Skip to main content

Helpful functions for python.

Project description

Collection of useful python functions/features.

Prepared by: Daniel A Hagen
Build Status PEP8 Coverage Status

Installation

pip install danpy

Installation from GitHub

git clone https://github.com/danhagen/danpy.git && cd danpy
pip install -r requirements.txt
pip install .

Statusbar for Python for/while loops with danpy.sb

This helpful statusbar can be used with for/while loops to keep track of how much time has elapsed as well as how much time remains. Simply place inside the loop (after initializing the statusbar -- dsb -- with final_value) and update with the current timestep (i). A title can be added to the statusbar to keep track of individual function/loops and it is recommended that any function that runs a loop uses arbitrary_function_name.__name__ to automatically assign an appropriate title. The initial_value can also be initialized or left at default (0).

Initialize statusbar before running a for/while loop.

from danpy.sb import *
from time import sleep

initial_value = 0
final_value = 10
statusbar = dsb(initial_value,final_value,title='a Loop')
for i in range(final_value):
  sleep(0.5)
  statusbar.update(i)

It is useful to either reset the statusbar instance. However, loops run in succession will automatically reset if the loops are of the same size.

from danpy.sb import *
from time import sleep

initial_value = 0
final_value = 10
number_of_outside_loops = 3
statusbar = dsb(initial_value,final_value,title="Loop-D-Loops")
for j in range(number_of_outside_loops):
  for i in range(final_value):
    sleep(0.5)
    statusbar.update(i)

It is also possible to rename loops when they are run in succession by using the updating title.

from danpy.sb import *
from time import sleep

initial_value = 0
final_value = 10
statusbar = dsb(initial_value,final_value,title="a Loop")
for i in range(final_value):
  sleep(0.5)
  statusbar.update(i)

for i in range(final_value):
  sleep(0.5)
  statusbar.update(i,title="a Different Loop")

However, these automatic reset features will only work if the length of each loop is the same and they have the same starting value. If you wish to run consecutive loops with different starting values or loop lengths, then you can reset the statusbar. It should be noted that the automatic reset, although convenient, will initialize the start_time after the first iteration of the loop. Therefore it is not the most accurate representation of runtime. We recommend a hard reset between trials or a redefinition of the statusbar before each loop.

Resetting Statusbar

A statusbar can be reset by calling the builtin function reset one of two way; reset() will return a statusbar with the previously used initial_value, final_value, and title, or reset(**kwargs) can manually reset any of those values (while the others are kept as previously define).

from danpy.sb import *
from time import sleep

initial_value = 0
final_value = 10
statusbar = dsb(initial_value,final_value,title='One Loop')
for i in range(final_value):
  sleep(0.5)
  statusbar.update(i)

a_different_final_value = 1010
a_different_initial_value = 1000
statusbar.reset(
  initial_value=a_different_initial_value,
  final_value=a_different_final_value,
  title="Another Loop")
for i in range(a_different_initial_value,a_different_final_value):
  sleep(0.5)
  statusbar.update(i)

Using while Loops

If using a while loop, the statusbar will still update, but depending on the nature of the code in the loop, the extrapolation to determine time remaining may be off.

from danpy.sb import *
from time import sleep

count = 0
final_count = 10
statusbar = dsb(count,final_count,title="a while Loop")
while count<final_count:
  sleep(0.5)
  statusbar.update(count)
  count+=1

Only compatible with while loops that utilize a count metric where the loop continues while count<final_value. The "<" ensures that the statusbar terminates at 100%. If you use "<=" then the input to the statusbar will be statusbar.update(i,final_value+1,**kwargs).

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

danpy-1.0.0.tar.gz (7.8 kB view details)

Uploaded Source

Built Distribution

danpy-1.0.0-py3-none-any.whl (10.5 kB view details)

Uploaded Python 3

File details

Details for the file danpy-1.0.0.tar.gz.

File metadata

  • Download URL: danpy-1.0.0.tar.gz
  • Upload date:
  • Size: 7.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.5

File hashes

Hashes for danpy-1.0.0.tar.gz
Algorithm Hash digest
SHA256 25f58c0fa8b459a4db3bbc0340d603920d3e364de1947fd03df67739d444586b
MD5 1d754a1c52776bdc9356f616c92d1988
BLAKE2b-256 90e96c8b412d36d65024daccd0ae88fd6d02ff98a1bd6958a7061f1ce2a9270e

See more details on using hashes here.

File details

Details for the file danpy-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: danpy-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 10.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.5

File hashes

Hashes for danpy-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ca0d3502c5454d991a22800649904b2e71f78b5146b6f66171916fd5268dd893
MD5 e0a6122e49a3709b1d34d1b53bddacbf
BLAKE2b-256 6d4334fcf39e6b1e2daa031342211fe7bfb1ed025394c6779b8076375b9e56fe

See more details on using hashes here.

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