Make python scripts independent

March 24, 2026 ยท View on GitHub

List of ideas

  1. Self-updating python script (also: https://docs.python.org/3/library/os.html#os.execv)
  2. Automatically installing dependencies
  3. Graciously handling Keyboard Interrupts
  4. Running scripts as processes
  5. Parsing configs(https://docs.python.org/3/library/configparser.html)
  6. Handling Sensitive data using hashes
    • https://docs.python.org/3/library/hashlib.html#key-derivation
    • https://stackoverflow.com/a/56915300/8209510