Skip to content

Work in progress utility Discord Bot

License

Notifications You must be signed in to change notification settings

annhilati/fragment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Static Badge Static Badge GitHub last commit GitHub License

Build (installing requirements)

sh build.sh

Start

sh start.sh

or execute main.py

Hexadezimalfarbe in Farbinteger umwandeln

def f(hex_color):
    if hex_color.startswith("#"):
        hex_color = hex_color[1:]
    return int(hex_color, 16)

print(f("#3BA561"))