From f4ba16b31ea282d0787a40be3f37b951584143a1 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 10 May 2016 13:19:26 +0200 Subject: python: Rename bindings. -- Signed-off-by: Justus Winter --- lang/python/examples/delkey.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 lang/python/examples/delkey.py (limited to 'lang/python/examples/delkey.py') diff --git a/lang/python/examples/delkey.py b/lang/python/examples/delkey.py new file mode 100755 index 00000000..dfcc5ea4 --- /dev/null +++ b/lang/python/examples/delkey.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python3 +# $Id$ +# Copyright (C) 2004,2008 Igor Belyi +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +# Sample of key deletion +# It deletes keys for joe@example.org generated by genkey.pl script + +from pyme import core + +core.check_version(None) + +# Note that we need to collect all keys out of the iterator return by c.op_keylist_all() +# method before starting to delete them. If you delete a key in the middle of iteration +# c.op_keylist_next() will raise INV_VALUE exception + +c = core.Context() +# 0 in keylist means to list not only public but secret keys as well. +for thekey in [x for x in c.op_keylist_all(b"joe@example.org", 0)]: + # 1 in delete means to delete not only public but secret keys as well. + c.op_delete(thekey, 1) -- cgit v1.2.3 From 11392a80d9a85bcd8718b105e6d58038e61beaac Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 10 May 2016 14:45:44 +0200 Subject: python: PEP8 fixes. Cherry picked from 0267c151. Signed-off-by: Justus Winter --- lang/python/examples/delkey.py | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'lang/python/examples/delkey.py') diff --git a/lang/python/examples/delkey.py b/lang/python/examples/delkey.py index dfcc5ea4..600e0c07 100755 --- a/lang/python/examples/delkey.py +++ b/lang/python/examples/delkey.py @@ -2,10 +2,10 @@ # $Id$ # Copyright (C) 2004,2008 Igor Belyi # -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -14,7 +14,8 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA # Sample of key deletion # It deletes keys for joe@example.org generated by genkey.pl script @@ -23,9 +24,10 @@ from pyme import core core.check_version(None) -# Note that we need to collect all keys out of the iterator return by c.op_keylist_all() -# method before starting to delete them. If you delete a key in the middle of iteration -# c.op_keylist_next() will raise INV_VALUE exception +# Note that we need to collect all keys out of the iterator return by +# c.op_keylist_all() method before starting to delete them. If you +# delete a key in the middle of iteration c.op_keylist_next() will +# raise INV_VALUE exception c = core.Context() # 0 in keylist means to list not only public but secret keys as well. -- cgit v1.2.3 From 10328324c8fc9725cd0c885eaebfc80dc32c1ff6 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 17 May 2016 14:15:21 +0200 Subject: python: Clean up examples. * lang/python/examples/delkey.py: Clean up example. * lang/python/examples/encrypt-to-all.py: Likewise. * lang/python/examples/genkey.py: Likewise. * lang/python/examples/inter-edit.py: Likewise. * lang/python/examples/sign.py: Likewise. * lang/python/examples/signverify.py: Likewise. * lang/python/examples/simple.py: Likewise. * lang/python/examples/t-edit.py: Likewise. * lang/python/examples/verifydetails.py: Likewise. * lang/python/pyme/__init__.py: Likewise. Signed-off-by: Justus Winter --- lang/python/examples/delkey.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lang/python/examples/delkey.py') diff --git a/lang/python/examples/delkey.py b/lang/python/examples/delkey.py index 600e0c07..773b2623 100755 --- a/lang/python/examples/delkey.py +++ b/lang/python/examples/delkey.py @@ -31,6 +31,6 @@ core.check_version(None) c = core.Context() # 0 in keylist means to list not only public but secret keys as well. -for thekey in [x for x in c.op_keylist_all(b"joe@example.org", 0)]: +for thekey in [x for x in c.op_keylist_all("joe+pyme@example.org", 0)]: # 1 in delete means to delete not only public but secret keys as well. c.op_delete(thekey, 1) -- cgit v1.2.3