A modified version of python-gnupg, including security patches, extensive documentation, and extra features.
 
 
 
 
Go to file
Isis Lovecruft 48a4055db0
Add distutils record of installation files to .gitignore.
2013-04-05 23:25:10 +00:00
.pc Add quilt patches/ directory, series file, and first external patch. 2013-03-18 19:36:30 +00:00
docs Update Sphinx documentation config for autodoc and for module path discovery. 2013-04-05 23:02:14 +00:00
patches Add quilt patches/ directory, series file, and first external patch. 2013-03-18 19:36:30 +00:00
.gitignore Add distutils record of installation files to .gitignore. 2013-04-05 23:25:10 +00:00
.travis.yml Add TravisCI config file for continuous integration testing. 2013-03-18 19:36:29 +00:00
COPYLEFT Original source from code.google.com, version 0.3.2. 2013-02-13 21:19:18 +00:00
LICENSE Original source from code.google.com, version 0.3.2. 2013-02-13 21:19:18 +00:00
Makefile Add uninstall command to top-level Makefile. 2013-04-05 23:12:53 +00:00
PKG-INFO Original source from code.google.com, version 0.3.2. 2013-02-13 21:19:18 +00:00
README.md Update README to use markdown and include better instructions. 2013-04-05 23:20:39 +00:00
TODO.md Update README to use markdown and include better instructions. 2013-04-05 23:20:39 +00:00
gnupg.py Add missing super() call in ListKeys class. 2013-04-05 21:28:26 +00:00
setup.py Original source from code.google.com, version 0.3.2. 2013-02-13 21:19:18 +00:00
test_gnupg.py Add test for gnupg._copy_data(). 2013-04-05 21:30:55 +00:00

README.md

python-gnupg

================

Fork of python-gnupg-0.3.2, patched to remove Popen([...], shell=True).

Installation


To install this package from this git repository, do:

git clone https://github.com/isislovecruft/python-gnupg.git
cd python-gnupg
make install
make test

Optionally to build the documentation after installation, do:

make docs

To get started using python-gnupg's API, see the documentation online at XXX FIXME add readthedocs link, and import the module like so:

>>> import gnupg

To install this package from a tarballed source distribution, do the following:

  1. Extract all the files in the distribution archive to some directory on your system.
  2. In that directory, run "python setup.py install".
  3. Optionally, run "python test_gnupg.py" to ensure that the package is working as expected.