Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
A Python implementation of HSLuv (revision 4).
pip install hsluv
Python 2 users: pip install hsluv==5.0.0
This library does not hide (clamp) floating point error, e.g. you might receive a value outside of the expected range. If you wish to display the outputs of this library, consider rounding them for your purpose. The floating point error has not been quantified, but at least 10 decimal digits should be free of it.
hsluv_to_hex([hue, saturation, lightness])
hue
is a float between 0 and 360, saturation
and lightness
are floats between 0 and 100. This
function returns the resulting color as a hex string.
hsluv_to_rgb([hue, saturation, lightness])
Like above, but returns a list of 3 floats between 0 and 1, for each RGB channel.
hex_to_hsluv(hex)
Takes a hex string and returns the HSLuv color as a list of floats as defined above.
rgb_to_hsluv([red, green, blue])
Like above, but red
, green
and blue
are passed as floats between 0 and 1.
For HPLuv (the pastel variant), use hpluv_to_hex
, hpluv_to_rgb
, hex_to_hpluv
and rgb_to_hpluv
.
Run python setup.py test
.
FAQs
Human-friendly HSL
We found that hsluv demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.