You are in my Digital Garden.
Python
Last modified: Mar 16th, 2025
OpenCV
- pyimagesearch.com is a great resource
- SimpleCV is a simple CV library
Learning
- I used A Byte of Python
-
Advanced Python Mastery course
- Haven’t done it yet
GUI
Ones I have personal experience with.
- Gooey turns a CLI application into a GUI one with basically one line
- Dear PyGui immediate mode GUI lib built on Dear ImGui
- PySimpleGUI has ugly docs but works well for simple stuff
Other
-
PyInstaller for making Python EXEs
- Tutorial
- My blog post on using WINE to build Python Windows EXEs on Linux
- fastplotlib
Copying files
| Function | Copies metadata |
Copies permissions |
Uses file object | Destination may be directory |
|---|---|---|---|---|
| shutil.copy | No | Yes | No | Yes |
| shutil.copyfile | No | No | No | No |
| shutil.copy2 | Yes | Yes | No | Yes |
| shutil.copyfileobj | No | No | Yes | No |
- Source