pip install izda
1.0.0
Installation | Changelogs | Website
The package "izda" is just for fun and I coded it because I was bored.
It's not the best packageand my example is shit so don't expect too much
pip3 install izda
import izda # Import the libary
izda.System.title("This is the Title!") # Change the titleimport izda # Import the libary
izda.System.clear() # Clears the consoleimport izda # Import the libary
izda.Write.Print("Typewriter function", interval=0.05) # Typewriter print function
izda.Write.Print("Typewriter input function", interval=0.05, newLine=False) # Typewriter input animation
# The "interval" in the function is the speed and the "newLine=..." is to print a new line after the animation
# You can also use cursor=False/True if you want to show the command prompt cursor or notimport izda # Import the libary
izda.System.init() # Allows you to use colors in print
izda.System.command("echo Hello") # Execute a command into the console
izda.System.enter(5) # Press enter 5 times to exit? Github: @CollinIzDa
? Website: CollinIzDa.com
import izda # Import IzDa
def lol(): # Creating our example function
izda.System.clear() # Clear the command prompt
izda.System.title("Example") # Changes the title
izda.System.init() # Allow us to write colors in the command prompt
izda.System.command("mode 120, 25") # Execute a command
inputa = izda.Write.Input(f'Write "Hi": ', interval=0.05) # Ask the user to input "Hi"
if inputa != "Hi": # If he does not input "Hi"
izda.Write.Print('I said you have to input "Hi"!', interval=0.05) # Say it to him
else: # If he input "Hi" and did all right
izda.Write.Print('Like this! Now press enter 5 times to exit.') # Say he have to press enter 5 times to exit
izda.System.enter(5) # Execute the enter 5 times function
if __name__ == "__main__":
lol() # Execute our created function on program run? Enjoyed "izda"? Consider dropping a star :D
"izda" was created by CollinIzDa.
Discord: CollinIzDa#1594
Website: https://collinizda.com/