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 *
# You can replace * with what you need!
Currently Implemented Classes / Functions
BetterInput()
import helper
helper.BetterInput(text: str, end: str = None, delay: float = None)
OR
from helper import BetterInput
BetterInput(text: str, end: str = None, delay: float = None)
# Gets an input
#
# Prints the given text letter by letter using the specified delay and gets an input() after
#
# Parameters
# ----------
# text: str
# The text that is printed letter by letter
#
# end: Optional[str]
# The text that is passed into the input() statement.
# Be aware that this part is not printed letter by letter.
# DEFAULT: None
#
# delay: Optional[float]
# Changes the time between each printed letter
# DEFAULT: None
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
ColorInput()
import helper
helper.ColorInput(text: str = None, beforeColor: Terminal.color.foreground = None)
OR
from helper import ColorInput
ColorInput(text: str = None, beforeColor: Terminal.color.foreground = None)
# 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
Output()
import helper
helper.Output(outputValue)
OR
from helper import Output
Output(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
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-0.1.1.tar.gz
(4.3 kB
view hashes)
Built Distribution
Close
Hashes for helper_for_maxi-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d963c0b29b14458d282c55bb261319f513ea8c1fe33095e7bd7b012e012160f0 |
|
MD5 | 1929c8841f4c6d8810d3ebe7e15e3d1a |
|
BLAKE2b-256 | e06f36cb33697ad553f72366ef35e2ab208b3a97472a160c7d4b38bdd43e0838 |