A hotkey manager that runs in the system tray

PySimpleHotkey A hotkey manager that runs in the system tray. Uses PySimpleGUI for the GUI and the system tray. This project uses these pip installable packages: PySimpleGUI psgtray keyboard This project is a mash-up of some PySimpleGUI demo programs and a program called pingmote. The pingmote project is the origin of the keyboard handler. A big thank you to @dchen327 for the code and inspiration. The system tray code is from the psgtray demo program. The 2 utilities that are […]

Read more

Make NixOS usable for non-technical users through a settings / package management GUI

Nix-Gui Make NixOS usable for non-technical users through a settings / package management GUI. Motives The declarative nature of NixOS provides it the capability of being the most user friendly linux distro. No more editing dotfiles, /etc files, manually writing timers, services, running commands to manage and create users and groups, etc. NixOS integrates all of that into a declarative system, and this project integrates NixOS’ declarative system into a GUI. Serve Users Unfamiliar with or Learning Nix Nix-Gui is […]

Read more

A GUI app base on warp-cli for linux

warp cloudflare gui a GUI app base on warp-cli for linux Installation read warp-cli install doc. install warp-cli and register with $ warp-cli register. and then: git clone https://github.com/mrmoein/warp-cloudflare-gui cd warp-cloudflare-gui python3 install.py now search for warp cloudflare app in your desktop menu Uninstall just remove ~/.local/share/applications/warp-gui.desktop file GitHub https://github.com/mrmoein/warp-cloudflare-gui    

Read more

A relatively simple user interface in pyqt5 for UNIX systems

scrcpy-pyqtgui A relatively simple user interface in pyqt5 for UNIX systems Requirements: You can install them with sudo apt-get install scrcpy python3 python3-pip adb pip3 install PyQt5 Usage To run the program you can use the following command in the terminal inside the folder python3 main.py GitHub https://github.com/hayukimori/scrcpy-pyqtgui    

Read more

An interactive GUI for WhiteboxTools in a Jupyter-based environment

whiteboxgui The whiteboxgui Python package is a Jupyter frontend for WhiteboxTools, an advanced geospatial data analysis platform developed by Prof. John Lindsay (webpage; jblindsay) at the University of Guelph’s Geomorphometry and Hydrogeomatics Research Group. WhiteboxTools can be used to perform common geographical information systems (GIS) analysis operations, such as cost-distance analysis, distance buffering, and raster reclassification. Remote sensing and image processing tasks include image enhancement (e.g. panchromatic sharpening, contrast adjustments), image mosaicing, numerous filtering operations, simple classification (k-means), and common […]

Read more

A GUI for identifying visages in an image

Visage Differentiation Visage Differentiation is a GUI application for outlining and labeling the visages in an image. The main functionality is provided by the tkinter and face-recognition Python modules. Images Usage Select a path to a directory containing images of known visages to be used in identifying unknown visages. The filenames are used as labels for identified visages. Select a path to an image containing visages to identify. Click the “Identify Visages” button. GitHub https://github.com/grantranda/visage-differentiation    

Read more

A GUI-based Python code generator

Visual Python Visual Python is a GUI-based Python code generator, developed on the Jupyter Notebook environment as an extension. Key Features Automatically generates Python code based on a graphic user interface Creates code blocks by tasks (such as data processing, visualization) You can save the analysis process and share it (as .vp file) with others Who and What is it for? Visual Python is a data analytics solution for both Programmers & Non-programmers. Programmers can use the tool : to […]

Read more

Created to speed up the GUI-development process in Python

Tkinter Designer Tkinter Designer was created to speed up the GUI-development process in Python. It uses the well-known design software Figma to make creating beautiful Tkinter GUIs in Python a piece of cake. Tkinter Designer uses the Figma API to analyse a design file and create the respective code and files needed for the GUI. Even Tkinter Designer’s GUI is created using Tkinter Designer. ☄️ Advantages of Tkinter Designer Drag and Drop Interfaces Significantly faster than creating code manually. Ability […]

Read more

A Python interface to create battling pokemon agents

The pokemon showdown Python environment A Python interface to create battling pokemon agents. poke-env offers an easy-to-use interface for creating rule-based or training Reinforcement Learning bots to battle on pokemon showdown. Agents are instance of python classes inheriting from Player. Here is what your first agent could look like: class YourFirstAgent(Player): def choose_move(self, battle): for move in battle.available_moves: if move.base_power > 90: # A powerful move! Let’s use it return self.create_order(move) # No available move? Let’s switch then! for switch […]

Read more

A Pancakeswap v2 trading client with limit orders and much more

Pancakeswap v2 trading client A Pancakeswap trading client (and bot) with limit orders, stop-loss, custom gas strategies, a GUI and much more. If you have any questions or inquiries, you can contact me via telegram: aviddot Check out the demo of my Pancakeswap sniping bot: https://github.com/aviddot/Pancakeswap-sniping-bot-demo Prerequisites An ethereum/bsc address A Windows machine Not sure whether needed anymore: Visual C++ build tools (www.visualstudio.microsoft.com/visual-cpp-build-tools/) Getting started Read prerequisites Download the latest release or download “configfile.py” and “pancakeswap_bot.exe” from the repository. Open […]

Read more
1 2 3 4