Category: devPython

how to example bash python – test driving Hetzner’s s3 bucket
04.10.2024

how to get started: have a hetzner account login to https://console.hetzner.cloud/ create a new project click on project in the left menu there is a new entry: Object Storage tested and works: upload download delete untested: https://docs.hetzner.com/de/storage/object-storage/howto-protect-objects/protect-versioning/ pricing: https://docs.hetzner.com/de/storage/object-storage/overview/#preise max. […]

Ubuntu + Debian: how to pip (python package manager) cheat sheed how to examples and getting started with robot + selenium gui testing framework – nokia’s eclipse red vs vscode extension (how to eclipse+pydev + virtual python environment) (error: “externally-managed-environment” “This environment is externally managed”)
29.09.2024

imho it’s recommended to solve things without 3rd party packages (which might possible be neglected (no more security updates) or even hijacked after some time) it is sometimes agreed upon to extend python’s capabilities with 3rd party packages like psutil […]

Python on GNU Linux mate how to run script in external separate terminal window
24.06.2024

hostnamectl; # tested on Static hostname: debian12DevPython Operating System: Debian GNU/Linux 12 (bookworm) Kernel: Linux 6.1.0-20-amd64 Architecture: x86-64 python –version Python 3.11.2; # tested on vim run_script_in_external_terminal.py #!/usr/bin/env python import subprocess process = subprocess.Popen(‘/usr/bin/mate-terminal -e /run/some/script.sh’.split(), stdout=subprocess.PIPE) output, error = […]