I am trying to use alternate secret key in python-gnupg, equivalent to -u switch for commands:
gpg --encrypt --armor -r <<theirkeyid>> -u <<my_nondefault_key_id>>
gpg --decrypt -r <<theirkeyid>> -u <<my_nondefault_key_id>>
but cannot figure it out, python-gnupg always uses my default private key. Only thing I figured out is maybe to use another keyring, or is there a way? Or does another py library support multiple private keys?