Socket
Socket
Sign inDemoInstall

pystunnel

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pystunnel

Python interface to stunnel


Maintainers
1

Readme

========= pystunnel


Python library and command line utility to control a stunnel instance

Overview

Start and stop a stunnel_ instance given a stunnel configuration file_.

The stunnel executable must be available on the system PATH. The configuration file must specify a PID file.

.. _stunnel: https://www.stunnel.org .. _stunnel configuration file: https://www.stunnel.org/static/stunnel.html#CONFIGURATION-FILE

Installation

Use your favorite installer to install the pystunnel library and script. E.g.::

$ pip install pystunnel

Examples

From the command line::

$ pystunnel -c /path/to/stunnel.conf start
started
$ pystunnel -c /path/to/stunnel.conf check
running
$ pystunnel -c /path/to/stunnel.conf stop
stopped

If the command is omitted, pystunnel enters an interactive shell::

$ pystunnel -c /path/to/stunnel.conf
pystunnel> start
started
pystunnel> check
running
pystunnel> stop
stopped
pystunnel> quit
$

From Python::

from pystunnel import Stunnel
stunnel = Stunnel("/path/to/stunnel.conf")

rc = stunnel.start()
print("stunnel started with rc", rc)

if stunnel.check() == 0:
    print("stunnel is running with pid", stunnel.getpid())
else:
    print("stunnel is not running")

rc = stunnel.stop()
print("stunnel stopped with rc", rc)

Return Codes

0 means OK, 1 or higher means error.

Changelog

1.0a1 - 2016-03-14

  • Initial release.

Keywords

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc