Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

alyssum

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alyssum

A small helper package for personal needs

pipPyPI
Version
0.0.14
Maintainers
1

Alyssum

this package contains my personal helpers if you want to use below the usage examples

Title

from alyssum.seperators import Title

title = Title(label='Default Text', length=80, color='yellow', design_char='*')
title.configure(label='Default Text', length=80,color='blue',design_char='*')

title.write() # writes "Default Text"
title.write("any title") # writes "any title"

title.configure(color=blue).write("any title") # can be usable

label length can not be greater than (length - 2)
color can be 'grey', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan' or 'white'
length must be greater than 1 and smaller than 81

Cleaner

from alyssum.cleaners import Cleaner
Cleaner.clean("Hello World!")

Decorators

from alyssum.decorators import run_once, run_only

@run_once
def hello():
    print("hello")

@run_only(2)
def hello():
    print("hello")

@run_once_message("It's come to end")
...

@run_only(3,"It's come to end"):
...

@run_only() 
...

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts