Skip to main content

Command-line gui library for python

Project description

clgui

Command-Line-GUI

Docs

Install clgui

pip install clgui

Create new gui

import clgui

vertical_layout = clgui.layout.VStack() # Currently the only layout is VStack, more are planned
main = clgui.GUI(layout=vertical_layout) # Initialize a new GUI

# Elements
button_list = clgui.ButtonList() # Currently the only element types are ButtonList and Button, more are planned
button = clgui.Button("click me") # Buttons do not need event handlers but can have them.

def handleClick(data):
	print(data)
# Methods
button1 = clgui.Button("Hello", handleClick, ["data1", "data2"]) # Create a new button with an event handler when enter is pressed on it
button2 = clgui.Button("World") # Create a new button with an event handler when enter is pressed on it
button_list.addButtons([button1, button2]) # Add buttons to the button list

button_list.addButton(button1) # A single button can also be added

vertical_layout.add(button_list) # Add button list to the layout
vertical_layout.add(button) # You can also directly add a button to the layout
main.show() # Show the main GUI
main.destroy() # Close the gui

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

clgui-0.1.0.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

clgui-0.1.0-py3-none-any.whl (15.1 kB view details)

Uploaded Python 3

File details

Details for the file clgui-0.1.0.tar.gz.

File metadata

  • Download URL: clgui-0.1.0.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for clgui-0.1.0.tar.gz
Algorithm Hash digest
SHA256 83384c46df0ab7336e06970ab26d3545692728243f9fc3615b9b18bc47f985dd
MD5 9dc1f73c417b5c7fd4db58a1789cf6d5
BLAKE2b-256 b6027b39f96dd67eea60a84f13789808f72e0d39789ff899196ddb80dee8d8d6

See more details on using hashes here.

File details

Details for the file clgui-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: clgui-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 15.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for clgui-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b87103edb077e9275ebbf2d02d2078cb6403b5e62a7c45262b1ea17a5f9d8646
MD5 a93a5429805f74843a9e53df66d5f22e
BLAKE2b-256 0068c8427ff4af23a80a19a67b04de1ec2a28c875f8033aacb99243d23db7369

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page