atlas news
    
Python GUIs
27  mars     06h00
Q&A: How Do I Display Images in PySide6? Using QLabel to easily add images to your applications
   Adding images to your application is a common requirement, whether you’re building an image photo viewer, or just want to add some decoration to your GUI. Unfortunately, because of how this is done in Qt, it can be a little bit tricky to work out at first. In this short tutorial, we will look at...
06  mars     13h00
Drag & Drop Widgets with PySide6 Sort widgets visually with drag and drop in a container
   I had an interesting question from a reader of my PySide book, about how to handle dragging and dropping of widgets in a container showing the dragged widget as it is moved. I’m interested in managing movement of a QWidget with mouse in a container. I’ve implemented the application with drag...
04  mars     06h00
Working With Python Virtual Environments Setting Your Python Working Environment, the Right Way
   As Python developers, we often need to add functionality to our applications which isn’t provided by the standard library. Rather than implement everything ourselves, we can instead install rd party Python packages from the official Python package index at PyPI using pip. The pip tool downloads...
26  février     06h00
Which Python GUI library should you use? Comparing the Python GUI libraries available in 2024
   Python is a popular programming used for everything from scripting routine tasks to building websites and performing complex data analysis. While you can accomplish a lot with command line tools, some tasks are better suited to graphical interfaces. You may also find yourself wanting to build a...
19  février     06h00
Plotting With PyQtGraph Create Custom Plots in PyQt6 With PyQtGraph
   One of the major fields where Python shines is in data science. For data exploration and cleaning, Python has many powerful tools, such as pandas and polar. For visualization, Python has Matplotlib. When you’re building GUI applications with PyQt, you can have access to all those tools directly...
14  février     06h00
Q&A: How Do I Display Images in PyQt6? Using QLabel to easily add images to your applications
   Adding images to your application is a common requirement, whether you’re building an image photo viewer, or just want to add some decoration to your GUI. Unfortunately, because of how this is done in Qt, it can be a little bit tricky to work out at first. In this short tutorial, we will look at...
07  février     13h00
Drag & Drop Widgets with PyQt6 Sort widgets visually with drag and drop in a container
   I had an interesting question from a reader of my PyQt book, about how to handle dragging and dropping of widgets in a container showing the dragged widget as it is moved. I’m interested in managing movement of a QWidget with mouse in a container. I’ve implemented the application with drag amp;...
05  février     06h00
QLineEdit A Simple Text Input Widget
   The QLineEdit class is a versatile tool for single line text input. The widget facilitates text manipulation by supporting insertion, deletion, selection, and cut copy paste operations natively. You can use line edits when you need to accept text input from your users in a PyQt PySide application....
15  janvier     06h00
Plotting With PyQtGraph Create Custom Plots in PyQt with PyQtGraph
   One of the major fields where Python shines is in data science. For data exploration and cleaning, Python has many powerful tools, such as pandas and polar. For visualization, Python has Matplotlib. When you’re building GUI applications with PyQt, you can have access to all those tools directly...
27  novembre     13h00
How to Create a Custom Title Bar for a PyQt Window Customize Your Python App’s Title Bars
   PyQt provides plenty of tools for creating unique and visually appealing graphical user interfaces GUIs . One aspect of your applications that you may not have considered customizing is the title bar. The title bar is the topmost part of the window, where your users find the app’s name, window...