Skip to main content

A few handy tools for your python program!

Project description

Handy Dandy

A collection of handy programs for your python project.

Output validator

Handy dandy's validate decorator can make sure that functions return the type that you want them to.

from handy_dandy import validator as val

@val.string # expecting function to return string
def foo(x):
	return x

y = foo(5)

Timer

Records how long a function takes to run.

from handy_dandy import timer

@timer
def foo():
	pass

System

system function. Returns the computer's os (win32, win64, mac, linux).

Recorder

Records the amount of times it has been ran. This can be helpful when you want to see how many times multiple functions have been ran durring the program.

>>> from handy_dandy import Recorder
>>> x = Recorder('f', 's')
>>> x.click('f')
1
>>> x.clicks()
{'f': 1, 's': 0}
>>> x.click()
>>> x.clicks()
{'f': 2, 's': 1}

Design

I made a bunch of text design programs for this package, inspired by this. They're really self-explanitory, so i'll just give a list of the function names:

  • scroll_clear()
  • underline(text, color='white')
  • bold(text, color='white')
  • italic(text, color='white)
  • color(text, color)
  • ascii(text)p

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

handy-dandy-0.1.3.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

handy_dandy-0.1.3-py3-none-any.whl (2.9 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