🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

bonzo

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bonzo

Bonzo is a minimalistic SMTP Proxy built on top of Tornado.

0.1.2
PyPI
Maintainers
1

===== Bonzo

.. image:: https://travis-ci.org/puentesarrin/bonzo.png :target: https://travis-ci.org/puentesarrin/bonzo :alt: Travis CI status

.. image:: https://coveralls.io/repos/puentesarrin/bonzo/badge.png :target: https://coveralls.io/r/puentesarrin/bonzo :alt: Coveralls status

.. image:: https://pypip.in/v/bonzo/badge.png :target: https://pypi.python.org/pypi/bonzo :alt: Latest PyPI version

.. image:: https://pypip.in/d/bonzo/badge.png :target: https://pypi.python.org/pypi/bonzo :alt: Number of PyPI downloads

About

Bonzo is a minimalistic SMTP Proxy built on top of Tornado_.

.. code-block:: python

import tornado.ioloop import email

from bonzo.server import SMTPServer

def receive_message(message): print "New received message: " print "From: " + message['from'] print "Subject: " + message['subject'] for line in email.iterators.body_line_iterator(message): print line

SMTPServer(receive_message).listen(25) tornado.ioloop.IOLoop.instance().start()

Installation

You can to use pip_ to install Bonzo::

$ pip install bonzo

Or using last source::

$ pip install git+git://github.com/puentesarrin/bonzo.git

.. _Tornado: http://tornadoweb.org .. _pip: http://pypi.python.org/pypi/pip

Keywords

bonzo

FAQs

Did you know?

Socket

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