This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################# | |
# Author: Pavol Harar ([email protected]) | |
# Created: 04. January 2024 | |
# Licence: MIT | |
# Prerequisits: `apt install python3-nautilus gir1.2-gtk-4.0` | |
# Copy this script into `~/.local/share/nautilus-python/extensions/` | |
# Kill all Nautilus processes with `nautilus -q` | |
# Restart Nautilus | |
# Tested on Ubuntu 24.04.01 | |
# At the time of writing and testing this extension, I already had the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# | |
# Very simple Python script to download/upload emails from/to an IMAP folder. | |
# This code is based on a simpler version from https://gist.github.com/robulouski/7442321 | |
# This code is released into the public domain. | |
# | |
# Paloha 2020 | |
import os | |
import sys |