For precise information about the library, see the library's Wiki page.
For the libraries latest changes, see the change log.
Open a console and run the command:
pip install xulbux
This should install the latest version of the library, along with some other required libraries.
To upgrade the library (if there is a new release) run the following command in your console:
pip install --upgrade xulbux
Import the full library under the alias xx
, so it's classes, types and functions are accessible with xx.Class.method()
, xx.type()
and xx.function()
:
import xulbux as xx
So you don't have to write xx
in front of the library's types, you can import them directly:
from xulbux import rgba, hsla, hexa
The library xx
with above imported types) contains the following modules:
• CUSTOM TYPES:
• rgba(int,int,int,float)
• hsla(int,int,int,float)
• hexa(str)
• PATH OPERATIONS xx.Path
• FILE OPERATIONS xx.File
• JSON FILE OPERATIONS xx.Json
• SYSTEM ACTIONS xx.System
• MANAGE THE ENV PATH VAR xx.EnvPath
• CONSOLE LOG AND ACTIONS xx.Console
• EASY PRETTY PRINTING xx.FormatCodes
• WORKING WITH COLORS xx.Color
• DATA OPERATIONS xx.Data
• STRING OPERATIONS xx.String
• CODE STRING OPERATIONS xx.Code
• REGEX PATTERN TEMPLATES xx.Regex