Contains all Functions
Project description
Helper for Maxi
All the Functions I could need multiple times
Instructions
- Install:
pip install helper-for-maxi
- Import package:
from helper import *
OR
import helper
helper.*
# You can replace * with what you need!
Currently Implemented Classes / Functions
appendClipboard()
import helper
helper.appendClipboard(text: str)
OR
from helper import appendClipboard
appendClipboard(text: str)
# copies text
#
# Copies / Appends the given text to the windows clipboard using the utf-8 encoding
#
# Parameters
# ----------
# text: str
# The text that is copied / appended to the clipboard
betterColorInput()
import helper
helper.betterColorInput(text: str, beforeColor: Optional[Terminal.color.foreground] = Terminal.color.RESET, delay: float = .01)
OR
from helper import betterColorInput
betterColorInput(text: str, beforeColor: Optional[Terminal.color.foreground] = Terminal.color.RESET, delay: float = .01)
# Gets an input
#
# Prints the given text letter by letter using the specified delay and gets an input() in cyan after
#
# Parameters
# ----------
# text: Optional[str]
# The text that is printed letter by letter
# DEFAULT: None
#
# beforeColor: Optional[Terminal.color.foreground]
# The color to change back to after getting the input
# DEFAULT: None
#
# delay: Optional[float]
# Changes the time between each printed letter
# DEFAULT: .01
betterInput()
import helper
helper.betterInput(text: str = "", delay: float = .01)
OR
from helper import betterInput
betterInput(text: str = "", delay: float = .01)
# Gets an input
#
# Prints the given text letter by letter using the specified delay and gets an input() after
#
# Parameters
# ----------
# text: Optional[str]
# The text that is printed letter by letter
# DEFAULT: ""
#
# delay: Optional[float]
# Changes the time between each printed letter
# DEFAULT: .01
betterPrint()
import helper
helper.betterPrint(text: str, delay: float = .01)
OR
from helper import betterPrint
betterPrint(text: str, delay: float = .01)
# Prints text
#
# Prints the given text letter by letter to the command line using the specified delay
#
# Parameters
# ----------
# text: str
# The text that is printed letter by letter
#
# delay: Optional[float]
# Changes the time between each printed letter
# DEFAULT: .01
#
# newLine: Optional[bool]
# whether to add a new line at the end or not
# DEFAULT: True
colorInput()
import helper
helper.colorInput(text: str = "", beforeColor: Optional[Terminal.color.foreground] = Terminal.color.RESET)
OR
from helper import colorInput
colorInput(text: str = "", beforeColor: Optional[Terminal.color.foreground] = Terminal.color.RESET)
# Gets an input
#
# executes the input() function in cyan and changes the color back to beforeColor if given
#
# Parameters
# ----------
# text: Optional[str]
# The text that is printed before getting the input
# DEFAULT: None
# beforeColor: Optional[Terminal.color.foreground]
# The color that was used before (if u want it to change back)
# DEFAULT: None
outputStdout()
import helper
helper.outputStdout(outputValue)
OR
from helper import outputStdout
outputStdout(outputValue)
# Outputs to stdout
#
# Outputs the given outputValue to stdout and flushes the stream after
#
# Parameters
# ----------
# outputValue: Any
# The value that's written to stdout
Terminal
import helper
helper.Terminal._ # _ = subclass
OR
from helper import Terminal
Terminal._ # _ = subclass
# Functions & Stuff for the Windows Terminal
#
# Contains classes and Functions to use for/in the Windows Terminal
#
# Subclasses
# ----------
# color:
# returns escape sequences to manipulate the color of the Terminal when printed
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
helper_for_maxi-1.0.3.tar.gz
(5.2 kB
view hashes)
Built Distribution
Close
Hashes for helper_for_maxi-1.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0269dfc0e270c0be6743fcdba9224bf48a43d893d15a497eefa4e529f09d0c9 |
|
MD5 | 39e26611a5aa8f721f9615ccb67341dc |
|
BLAKE2b-256 | 97e0e29c49e095d126aeb741dab79e666035b9b0cb6d6a3fba2ecbf00f17a250 |