
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
|Release| |Windows| |Linux| |Mac| |License|
Color picker dialog for Tkinter. Forked from original https://github.com/j4321/tkColorPicker but with a locale fix.
This module contains a ColorPicker
class which implements the color picker
and an askcolor
function that displays the color picker and
returns the chosen color in RGB and HTML formats.
And the python packages:
Pillow <https://pypi.org/project/Pillow/>
_With pip:
::
$ pip install tkcolorpicker2
Syntax:
::
askcolor(color="red", parent=None, title=_("Color Chooser"), alpha=False)
Open a ColorPicker dialog and return the chosen color.
The selected color is returned as a tuple (RGB(A), #RRGGBB(AA)) (None, None) is returned if the color selection is cancelled.
Arguments:
+ color: initially selected color, supported formats:
- RGB(A)
- #RRGGBB(AA)
- tkinter color name (see http://wiki.tcl.tk/37701 for a list)
+ parent: parent window
+ title: dialog title
+ alpha: alpha channel suppport
.. code:: python
import tkinter as tk
import tkinter.ttk as ttk
from tkcolorpicker import askcolor
root = tk.Tk()
style = ttk.Style(root)
style.theme_use('clam')
print(askcolor((255, 255, 0), root))
root.mainloop()
.. |Release| image:: https://badge.fury.io/py/tkcolorpicker.svg :alt: Latest Release :target: https://pypi.org/project/tkcolorpicker2/ .. |Linux| image:: https://img.shields.io/badge/platform-Linux-blue.svg :alt: Platform .. |Windows| image:: https://img.shields.io/badge/platform-Windows-blue.svg :alt: Platform .. |Mac| image:: https://img.shields.io/badge/platform-Mac-blue.svg :alt: Platform .. |License| image:: https://img.shields.io/github/license/j4321/tkColorPicker.svg :target: https://www.gnu.org/licenses/gpl-3.0.en.html :alt: License
FAQs
Color picker dialog for Tkinter forked from original
We found that tkColorPicker2 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.