A modified version of python-gnupg, including security patches, extensive documentation, and extra features.
 
 
 
 
Go to file
Isis Lovecruft b8ce529638
Remove duplicate log statement of the GnuPG command we're running.
2013-04-10 18:00:00 +00:00
.pc
docs Updated documentation and .rst files for Sphinx. 2013-04-06 00:35:40 +00:00
patches
.gitignore Update .gitignore. 2013-04-10 17:51:06 +00:00
.travis.yml
COPYLEFT
LICENSE
Makefile Add Makefile command for creating a virtualenv with virtualenvwrapper. 2013-04-10 17:51:06 +00:00
PKG-INFO Fix distutils, PyPI, and pip packaging configuration files. 2013-04-10 17:51:06 +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 Remove duplicate log statement of the GnuPG command we're running. 2013-04-10 18:00:00 +00:00
requirements.txt Fix distutils, PyPI, and pip packaging configuration files. 2013-04-10 17:51:06 +00:00
setup.py Fix distutils, PyPI, and pip packaging configuration files. 2013-04-10 17:51:06 +00:00
test_gnupg.py Add unittest cmdline argparse to hook into unittest.TestProgram's parser. 2013-04-10 17:19:25 +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.