wxPython provides several different kinds of drag and drop. You can have one of the following types: wx.FileDropTarget, wx.TextDropTarget, or wx.PyDropTarget.
The first two are pretty self-explanatory. The last one, wx.PyDropTarget, is just a loose wrapper around wx.DropTarget itself. It adds a cou...