Python

wxPython: Drag and Drop an Image onto Your Application

I recently came across a question on StackOverflow where the user wanted to know how to drag images onto their image control in wxPython and have the dragged image resize into a thumbnail. This piqued my interest and I decided to figure out how to do it. I knew that you could create a thumbnail

wxPython: Drag and Drop an Image onto Your Application Read More »

Anaconda and Microsoft Partner for Machine Learning

Anaconda released a statement that they are partnering with Microsoft to “deliver Python-powered machine learning”. Anaconda is a data science distribution of the Python programming language. If you go check out the statement, you will find that Microsoft is specifically planning to “embed Anaconda into Azure Machine Learning, Visual Studio and SQL Server”. I used

Anaconda and Microsoft Partner for Machine Learning Read More »

wxPython: All About Accelerators

The wxPython toolkit supports using keyboard shortcuts via the concept of Accelerators and Accelerator Tables. You can also bind directly to key presses, but in a lot of cases, you will want to go with Accelerators. The accelerator gives to the ability to add a keyboard shortcut to your application, such as the ubiquitous “CTRL+S”

wxPython: All About Accelerators Read More »