Blame lang/python/examples/howto/README.org

Packit Service 30b792
#+TITLE: GPGME Python Bindings HOWTO Examples
Packit Service 30b792
#+LATEX_COMPILER: xelatex
Packit Service 30b792
#+LATEX_CLASS: article
Packit Service 30b792
#+LATEX_CLASS_OPTIONS: [12pt]
Packit Service 30b792
#+LATEX_HEADER: \usepackage{xltxtra}
Packit Service 30b792
#+LATEX_HEADER: \usepackage[margin=1in]{geometry}
Packit Service 30b792
#+LATEX_HEADER: \setmainfont[Ligatures={Common}]{Times New Roman}
Packit Service 30b792
#+LATEX_HEADER: \author{Ben McGinnes <ben@gnupg.org>}
Packit Service 30b792
Packit Service 30b792
Packit Service 30b792
* Examples
Packit Service 30b792
  :PROPERTIES:
Packit Service 30b792
  :CUSTOM_ID: gpgme-python3-examples
Packit Service 30b792
  :END:
Packit Service 30b792
Packit Service 30b792
  The contents of this directory are the examples included in the /GNU
Packit Service 30b792
  Privacy Guard (GnuPG) Made Easy Python Bindings HOWTO/ file.  Each
Packit Service 30b792
  script is explicitly for Python 3 and specifically for Python 3.4 or
Packit Service 30b792
  later.
Packit Service 30b792
Packit Service 30b792
  Some of these scripts may work with Python 2.7, but there are no
Packit Service 30b792
  guarantees.  They will include the relevant imports from the
Packit Service 30b792
  =__future__= module to facilitate that if possible.
Packit Service 30b792
Packit Service 30b792
Packit Service 30b792
* Copyright and Licensing
Packit Service 30b792
  :PROPERTIES:
Packit Service 30b792
  :CUSTOM_ID: copyright-and-license
Packit Service 30b792
  :END:
Packit Service 30b792
Packit Service 30b792
  Unless otherwise stated, all the examples in this directory are
Packit Service 30b792
  released under the same terms as GPGME itself; that is they are dual
Packit Service 30b792
  licensed under the terms of both the GNU General Public License
Packit Service 30b792
  version 2.0 (or any later version) *and* the GNU Lesser General
Packit Service 30b792
  Public License version 2.1 (or any later version).
Packit Service 30b792
Packit Service 30b792
Packit Service 30b792
** Copyright (C) The GnuPG Project, 2018
Packit Service 30b792
   :PROPERTIES:
Packit Service 30b792
   :CUSTOM_ID: copyright
Packit Service 30b792
   :END:
Packit Service 30b792
Packit Service 30b792
   Copyright © The GnuPG Project, 2018.
Packit Service 30b792
Packit Service 30b792
Packit Service 30b792
** License GPL compatible
Packit Service 30b792
   :PROPERTIES:
Packit Service 30b792
   :CUSTOM_ID: license
Packit Service 30b792
   :END:
Packit Service 30b792
Packit Service 30b792
   This file is free software; as a special exception the author gives
Packit Service 30b792
   unlimited permission to copy and/or distribute it, with or without
Packit Service 30b792
   modifications, as long as this notice is preserved.
Packit Service 30b792
Packit Service 30b792
   This file is distributed in the hope that it will be useful, but
Packit Service 30b792
   WITHOUT ANY WARRANTY, to the extent permitted by law; without even
Packit Service 30b792
   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
Packit Service 30b792
   PURPOSE.