A Simple yet powerful CAD library written with Python

Py-MADCAD Simple yet powerful CAD (Computer Aided Design) library, written with Python. Features surface generation (3D sketch primitives, extrusion, revolution, …) fast boolean operations common mesh file format import/export kinematic manipulation implicit geometry definition through the constraint/solver system objects display with high-quality graphics Sample usage from madcad import * # define points O = vec3(0) A = vec3(2,0,0) B = vec3(1,2,0) C = vec3(0,2,0) # create a list of primitives line = [ Segment(O, A), ArcThrough(A, B, C), Segment(C,O), ] […]

Read more

A graphical user interface built using Dear PyGui Python GUI Framework

MultiPy MultiPy is a graphical user interface built using Dear PyGui Python GUI Framework that lets you conveniently keep track of your python scripts for personal use or showcase by loading and grouping them into categories. It allows you to either run each script individually or together with just one click. You can choose a name for your categories and scripts, indicate whether your script requires a virtual environment to run and select the virtual environment you need, choose whether […]

Read more

A fast and powerful Graphical User Interface Toolkit for Python

Dear PyGui Dear PyGui is a simple to use (but powerful) Python GUI framework. Dear PyGui is NOT a wrapping of Dear ImGui in the normal sense. It is a library built with Dear ImGui which simulates a traditional retained mode GUI (as opposed to Dear ImGui’s immediate mode paradigm). Dear PyGui is fundamentally different than other Python GUI frameworks. Under the hood, Dear PyGui uses the immediate mode paradigm and your computer’s GPU to facilitate extremely dynamic interfaces. Dear […]

Read more

A simple screen recorder with a minimal interface for python

Kooha Capture your screen in a straightforward and painless way without distractions. Kooha is a simple screen recorder with a minimal interface. You can simply click the record button without having to configure a bunch of settings. The main features of Kooha include the following: The main features of Kooha include the following: 🎥 Capture your screen without any hassle. 🎙️ Record your microphone, computer sounds, or both at the same time. 🖼️ Select an area of your screen to […]

Read more

A youtube-dl GUI written in PyQt

youtube-dl-GUI This repository contains code for a youtube-dl GUI written in PyQt. It is based on youtube-dl which is a Video downloading script maintained by various contributers and released in Public Domain. This GUI code is currently written for Python v3.x. Please note that this GUI code is released under the MIT License and not Public Domain. Requirements: Requirement for build Binaries/Executables Features: This application has the following features: supports downloading videos from 200+ websites allows to download multiple videos […]

Read more

A Python package that enables Python programmers of all levels to create GUIs

PySimpleGUI PySimpleGUI is a Python package that enables Python programmers of all levels to create GUIs. You specify your GUI window using a “layout” which contains widgets (they’re called “Elements” in PySimpleGUI). Your layout is used to create a window using one of the 4 supported frameworks to display and interact with your window. Supported frameworks include tkinter, Qt, WxPython, or Remi. The term “wrapper” is sometimes used for these kinds of packages. Your PySimpleGUI code is simpler and shorter […]

Read more

Build GUIs from python functions using magic

magicgui Build GUIs from python functions using magic. Installation magicgui uses qtpy to support both pyside2 and pyqt5 backends. However, youmust have one of those installed for magicgui to work. install with pip pip install magicgui[pyqt5] # or pip install magicgui[pyside2] or with conda: conda install -c conda-forge magicgui pyqt # or pyside2 instead of pyqt :information_source: If you’d like to help us extend support to a different backend,please open an issue. Basic usage from magicgui import magicgui from enum […]

Read more
1 2 3 4