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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file handy-dandy-0.1.3.tar.gz
.
File metadata
- Download URL: handy-dandy-0.1.3.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.6 CPython/3.8.10 Linux/5.8.0-1035-gcp
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5adca1e5ff5d1ef65ffed50618c0b62bbded0406c1f0c06f5d4a0e6437f76c9 |
|
MD5 | c3cad287aa748585c6663ecf13f1520a |
|
BLAKE2b-256 | 01db0018c01a828783e1bb4b9bd2d3ff28b59bcae1eadcbec40abba026fd0ceb |
File details
Details for the file handy_dandy-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: handy_dandy-0.1.3-py3-none-any.whl
- Upload date:
- Size: 2.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.6 CPython/3.8.10 Linux/5.8.0-1035-gcp
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33cb681ff5da8ca89ad5370afdcbbf4ce01208e7393e9b5e8208824310cc45de |
|
MD5 | 8444806e75fe103e48313a8e814a7803 |
|
BLAKE2b-256 | b95472008b4ea951ee2ef45ec930fb50dacbfa84b6b7d459d2dcc1d48993c6e3 |