Flask-Sendmail Documentation

Size: px
Start display at page:

Download "Flask-Sendmail Documentation"

Transcription

1 Flask-Sendmail Documentation Release 0.1 Anthony Ford February 14, 2014

2

3 Contents 1 Installing Flask-Sendmail 3 2 Configuring Flask-Sendmail 5 3 Sending messages 7 4 Bulk s 9 5 Attachments 11 6 Unit tests and suppressing s 13 7 Header injection 15 8 API 17 Python Module Index 19 i

4 ii

5 Flask-Sendmail Documentation, Release 0.1 ing users is essential in most web applications. For most cases, you can easily use SMTP, and in those cases, Flask-Mail is perfect. In other cases, you can only use your system s sendmail client. The Flask-Sendmail extension provides a simple interface to your system s sendmail client from within your Flask application and gives you ability to send messages from your views and scripts. Source code and issue tracking are at GitHub. Contents 1

6 Flask-Sendmail Documentation, Release Contents

7 CHAPTER 1 Installing Flask-Sendmail Install with pip and easy_install: pip install Flask-Sendmail or download the latest version from version control: git clone cd flask-sendmail python setup.py install If you are using virtualenv, it is assumed that you are installing flask-mail in the same virtualenv as your Flask application(s). 3

8 Flask-Sendmail Documentation, Release Chapter 1. Installing Flask-Sendmail

9 CHAPTER 2 Configuring Flask-Sendmail Flask-Sendmail is configured through the standard Flask config API. These are the available options (each is explained later in the documentation): MAIL_MAILER : default /usr/sbin/sendmail MAIL_MAILER_FLAGS : default -t MAIL_DEBUG : default app.debug DEFAULT_MAIL_SENDER : default None DEFAULT_MAX_ S : default None MAIL_FAIL_SILENTLY : default True MAIL_SUPPRESS_SEND : default False In addition the standard Flask TESTING configuration option is used by Flask-Sendmail in unit tests (see below). s are managed through a Mail instance: from flask import Flask from flask.ext.sendmail import Mail app = Flask( name ) mail = Mail(app) Alternatively you can set up your Mail instance later at configuration time, using the init_app method: mail = Mail() app = Flask( name ) mail.init_app(app) 5

10 Flask-Sendmail Documentation, Release Chapter 2. Configuring Flask-Sendmail

11 CHAPTER 3 Sending messages To send a message first create a Message instance: from flask.ext.sendmail import def index(): msg = Message("Hello", sender="from@example.com", recipients=["to@example.com"]) You can set the recipient s immediately, or individually: msg.recipients = ["you@example.com"] msg.add_recipient("somebodyelse@example.com") If you have set DEFAULT_MAIL_SENDER you don t need to set the message sender explicity, as it will use this configuration value by default: msg = Message("Hello", recipients=["to@example.com"]) If the sender is a two-element tuple, this will be split into name and address: msg = Message("Hello", sender=("me", "me@example.com")) assert msg.sender == "Me <me@example.com>" The message can contain a body and/or HTML: msg.body = "testing" msg.html = "<b>testing</b>" Finally, to send the message, you use the Mail instance configured with your Flask application: mail.send(msg) If the setting MAIL_FAIL_SILENTLY is True, and the connection fails (for example, the mail server cannot be found at that hostname) then no error will be raised, although of course no s will be sent either. 7

12 Flask-Sendmail Documentation, Release Chapter 3. Sending messages

13 CHAPTER 4 Bulk s While Flask-Mail supports bulk ing, Flask-Sendmail does not yet support it. If anyone has any suggestions on achieving bulk support, please pull a request on Github. Flask-Sendmail does take the max_ argument in an effort to mantain drop-in compatibility 9

14 Flask-Sendmail Documentation, Release Chapter 4. Bulk s

15 CHAPTER 5 Attachments Attachments are planned for a future release. 11

16 Flask-Sendmail Documentation, Release Chapter 5. Attachments

17 CHAPTER 6 Unit tests and suppressing s When you are sending messages inside of unit tests, or in a development environment, it s useful to be able to suppress sending. If the setting TESTING is set to True, s will be suppressed. Calling send() on your messages will not result in any messages being actually sent. Alternatively outside a testing environment you can set MAIL_SUPPRESS_SEND to False. This will have the same effect. 13

18 Flask-Sendmail Documentation, Release Chapter 6. Unit tests and suppressing s

19 CHAPTER 7 Header injection To prevent header injection, attempts to send a message with newlines in the subject, sender or recipient addresses will result in a BadHeaderError. 15

20 Flask-Sendmail Documentation, Release Chapter 7. Header injection

21 CHAPTER 8 API class flask_sendmail.mail(app=none) connect(max_ s=none) Opens a connection to the system s sendmail client. send(message) Sends message through system s sendmail client. Parameters message Mail Message instance send_message(*args, **kwargs) Shortcut for send(msg). Takes same arguments as Message constructor. class flask_sendmail.connection(mail, max_ s=none) Handles connection to host. send_message(*args, **kwargs) Shortcut for send(msg). Takes same arguments as Message constructor. class flask_sendmail.message(subject, recipients=none, body=none, html=none, sender=none, cc=none, bcc=none, attachments=none, reply_to=none, charset=none) Encapsulates an message. Parameters subject subject header recipients list of addresses body plain text message html HTML message sender sender address, or DEFAULT_MAIL_SENDER by default cc CC list bcc BCC list attachments list of Attachment instances reply_to reply-to address charset used to set MIMEText _charset 17

22 Flask-Sendmail Documentation, Release 0.1 add_recipient(recipient) Adds another recipient to the message. Parameters recipient address. 18 Chapter 8. API

23 Python Module Index f flask-mail, 3 flask_sendmail, 17 19

pushka Documentation Release Alexey Kinëv

pushka Documentation Release Alexey Kinëv pushka Documentation Release 0.1.0 Alexey Kinëv March 02, 2016 Contents 1 Install 3 2 Quickstart 5 3 Contents 7 3.1 Sending emails.............................................. 7 3.2 Sending SMS...............................................

More information

yagmail Documentation

yagmail Documentation yagmail Documentation Release 0.10.189 kootenpv Feb 08, 2018 Contents 1 API Reference 3 1.1 Authentication.............................................. 3 1.2 SMTP Client...............................................

More information

Flask-Twilio Documentation

Flask-Twilio Documentation Flask-Twilio Documentation Release 0.0.6 Leo Singer Mar 02, 2018 Contents 1 Flask-Twilio Installation 1 2 Set Up 3 3 Making a Call 5 4 Sending a Text Message 7 5 Full Example Flask Application 9 6 Configuration

More information

flask-dynamo Documentation

flask-dynamo Documentation flask-dynamo Documentation Release 0.1.2 Randall Degges January 22, 2018 Contents 1 User s Guide 3 1.1 Quickstart................................................ 3 1.2 Getting Help...............................................

More information

Django-CSP Documentation

Django-CSP Documentation Django-CSP Documentation Release 3.0 James Socol, Mozilla September 06, 2016 Contents 1 Installing django-csp 3 2 Configuring django-csp 5 2.1 Policy Settings..............................................

More information

Flask- Documentation

Flask- Documentation Flask-Email Documentation Release 1.4.3 Allan Lei Sep 09, 2017 Contents 1 Installion 3 2 Usage 5 2.1 Sending an Email............................................. 5 2.2 Shortcuts.................................................

More information

django-idioticon Documentation

django-idioticon Documentation django-idioticon Documentation Release 0.0.1 openpolis June 10, 2014 Contents 1 django-idioticon 3 1.1 Documentation.............................................. 3 1.2 Quickstart................................................

More information

Flask-Cors Documentation

Flask-Cors Documentation Flask-Cors Documentation Release 3.0.4 Cory Dolphin Apr 26, 2018 Contents 1 Installation 3 2 Usage 5 2.1 Simple Usage............................................... 5 3 Documentation 7 4 Troubleshooting

More information

Python wrapper for Viscosity.app Documentation

Python wrapper for Viscosity.app Documentation Python wrapper for Viscosity.app Documentation Release Paul Kremer March 08, 2014 Contents 1 Python wrapper for Viscosity.app 3 1.1 Features.................................................. 3 2 Installation

More information

Python easy mail library Documentation

Python easy mail library Documentation Python easy mail library Documentation Release 1.0.2 Alain Spineux Oct 31, 2017 Contents 1 Download and Install 3 2 Support for Python 3.x 5 3 Use pyzmail 7 4 Documentation 9 4.1 Articles..................................................

More information

pydrill Documentation

pydrill Documentation pydrill Documentation Release 0.3.4 Wojciech Nowak Apr 24, 2018 Contents 1 pydrill 3 1.1 Features.................................................. 3 1.2 Installation................................................

More information

Roman Numeral Converter Documentation

Roman Numeral Converter Documentation Roman Numeral Converter Documentation Release 0.1.0 Adrian Cruz October 07, 2014 Contents 1 Roman Numeral Converter 3 1.1 Features.................................................. 3 2 Installation 5

More information

Flask-Sitemap Documentation

Flask-Sitemap Documentation Flask-Sitemap Documentation Release 0.3.0 CERN May 06, 2018 Contents 1 Contents 3 2 Installation 5 2.1 Requirements............................................... 5 3 Usage 7 3.1 Simple Example.............................................

More information

GMusicProcurator Documentation

GMusicProcurator Documentation GMusicProcurator Documentation Release 0.5.0 Mark Lee Sep 27, 2017 Contents 1 Features 3 2 Table of Contents 5 2.1 Installation................................................ 5 2.1.1 Requirements..........................................

More information

TPS Documentation. Release Thomas Roten

TPS Documentation. Release Thomas Roten TPS Documentation Release 0.1.0 Thomas Roten Sep 27, 2017 Contents 1 TPS: TargetProcess in Python! 3 2 Installation 5 3 Contributing 7 3.1 Types of Contributions..........................................

More information

API Wrapper Documentation

API Wrapper Documentation API Wrapper Documentation Release 0.1.7 Ardy Dedase February 09, 2017 Contents 1 API Wrapper 3 1.1 Overview................................................. 3 1.2 Installation................................................

More information

scrapekit Documentation

scrapekit Documentation scrapekit Documentation Release 0.1 Friedrich Lindenberg July 06, 2015 Contents 1 Example 3 2 Reporting 5 3 Contents 7 3.1 Installation Guide............................................ 7 3.2 Quickstart................................................

More information

django-reinhardt Documentation

django-reinhardt Documentation django-reinhardt Documentation Release 0.1.0 Hyuntak Joo December 02, 2016 Contents 1 django-reinhardt 3 1.1 Installation................................................ 3 1.2 Usage...................................................

More information

django-contact-form Documentation

django-contact-form Documentation django-contact-form Documentation Release 1.4.2 James Bennett Aug 01, 2017 Installation and configuration 1 Installation guide 3 2 Quick start guide 5 3 Contact form classes 9 4 Built-in views 13 5 Frequently

More information

pyoutlook Documentation

pyoutlook Documentation pyoutlook Documentation Release 4.2.1 Jens Astrup Jul 28, 2018 Contents 1 About: 3 1.1 Python Versions............................................. 3 2 Recommended: 5 3 Notes: 7 4 Contents: 9 4.1 Installation................................................

More information

chatterbot-weather Documentation

chatterbot-weather Documentation chatterbot-weather Documentation Release 0.1.1 Gunther Cox Nov 23, 2018 Contents 1 chatterbot-weather 3 1.1 Installation................................................ 3 1.2 Example.................................................

More information

micawber Documentation

micawber Documentation micawber Documentation Release 0.3.4 charles leifer Nov 29, 2017 Contents 1 examples 3 2 integration with web frameworks 5 2.1 Installation................................................ 5 2.2 Getting

More information

polib Documentation Release David Jean Louis

polib Documentation Release David Jean Louis polib Documentation Release 1.0.6 David Jean Louis January 04, 2015 Contents 1 Quick start guide 3 1.1 Installing polib.............................................. 3 1.2 Some basics

More information

is still the most used Internet app. According to some studies around 85% of Internet users still use for communication.

is still the most used Internet app. According to some studies around 85% of Internet users still use  for communication. 1 E-mail is still the most used Internet app. According to some studies around 85% of Internet users still use e-mail for communication. Electronic mail is a method to exchange digital messages from a

More information

Python Schema Generator Documentation

Python Schema Generator Documentation Python Schema Generator Documentation Release 1.0.0 Peter Demin June 26, 2016 Contents 1 Mutant - Python code generator 3 1.1 Project Status............................................... 3 1.2 Design..................................................

More information

flask-jwt-simple Documentation

flask-jwt-simple Documentation flask-jwt-simple Documentation Release 0.0.3 vimalloc rlam3 Nov 17, 2018 Contents 1 Installation 3 2 Basic Usage 5 3 Changing JWT Claims 7 4 Changing Default Behaviors 9 5 Configuration Options 11 6 API

More information

Python simple arp table reader Documentation

Python simple arp table reader Documentation Python simple arp table reader Documentation Release 0.0.1 David Francos Nov 17, 2017 Contents 1 Python simple arp table reader 3 1.1 Features.................................................. 3 1.2 Usage...................................................

More information

Python StatsD Documentation

Python StatsD Documentation Python StatsD Documentation Release 3.2.2 James Socol Dec 15, 2017 Contents 1 Installing 3 2 Contents 5 2.1 Configuring Statsd............................................ 5 2.2 Data Types................................................

More information

Watson - DB. Release 2.7.0

Watson - DB. Release 2.7.0 Watson - DB Release 2.7.0 Jan 15, 2018 Contents 1 Build Status 3 2 Dependencies 5 3 Installation 7 4 Testing 9 5 Contributing 11 6 Table of Contents 13 6.1 Usage...................................................

More information

google-search Documentation

google-search Documentation google-search Documentation Release 1.0.0 Anthony Hseb May 08, 2017 Contents 1 google-search 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

Android InsecureBankv2 Usage Guide. InsecureBankv2

Android InsecureBankv2 Usage Guide.   InsecureBankv2 Android InsecureBankv2 Usage Guide Author Name Email ID GitHub Link Twitter Dinesh Shetty dinezh.shetty@gmail.com https://github.com/dineshshetty/android- InsecureBankv2 https://twitter.com/din3zh Usage

More information

Python StatsD Documentation

Python StatsD Documentation Python StatsD Documentation Release 2.0.3 James Socol January 03, 2014 Contents i ii statsd is a friendly front-end to Graphite. This is a Python client for the statsd daemon. Quickly, to use: >>> import

More information

eventbrite-sdk-python Documentation

eventbrite-sdk-python Documentation eventbrite-sdk-python Documentation Release 3.3.4 Eventbrite December 18, 2016 Contents 1 eventbrite-sdk-python 3 1.1 Installation from PyPI.......................................... 3 1.2 Usage...................................................

More information

nacelle Documentation

nacelle Documentation nacelle Documentation Release 0.4.1 Patrick Carey August 16, 2014 Contents 1 Standing on the shoulders of giants 3 2 Contents 5 2.1 Getting Started.............................................. 5 2.2

More information

Niv Mizrahi. VP github.com/nivm

Niv Mizrahi. VP  github.com/nivm Python Packaging Niv Mizrahi VP R&D @ emedgene @ravinizme github.com/nivm Python We Love Python Python The syntax is simple and expressive, it has tons of open source modules and frameworks and a great

More information

ouimeaux Documentation

ouimeaux Documentation ouimeaux Documentation Release 0.7.2 Ian McCracken Jan 08, 2018 Contents 1 Installation 3 1.1 Basic................................................... 3 1.2 Linux...................................................

More information

Aircrack-ng python bindings Documentation

Aircrack-ng python bindings Documentation Aircrack-ng python bindings Documentation Release 0.1.1 David Francos Cuartero January 20, 2016 Contents 1 Aircrack-ng python bindings 3 1.1 Features..................................................

More information

Bootstrap-Flask Documentation

Bootstrap-Flask Documentation Bootstrap-Flask Documentation Release 1.0.4 Grey Li Nov 14, 2018 Contents 1 Contents 3 1.1 Basic Usage............................................... 3 1.2 Use Macros................................................

More information

requests-cache Documentation

requests-cache Documentation requests-cache Documentation Release 0.4.13 Roman Haritonov Nov 09, 2017 Contents 1 User guide 3 1.1 Installation................................................ 3 1.2 Usage...................................................

More information

GitHub-Flask Documentation

GitHub-Flask Documentation GitHub-Flask Documentation Release 3.2.0 Cenk Altı Jul 01, 2018 Contents 1 Installation 3 2 Configuration 5 3 Authenticating / Authorizing Users 7 4 Invoking Remote Methods 9 5 Full Example 11 6 API Reference

More information

flask-jwt Documentation

flask-jwt Documentation flask-jwt Documentation Release 0.3.2 Dan Jacob Nov 16, 2017 Contents 1 Links 3 2 Installation 5 3 Quickstart 7 4 Configuration Options 9 5 API 11 6 Changelog 13 6.1 Flask-JWT Changelog..........................................

More information

Airoscript-ng Documentation

Airoscript-ng Documentation Airoscript-ng Documentation Release 0.0.4 David Francos Cuartero January 22, 2015 Contents 1 Airoscript-ng 3 1.1 Features.................................................. 3 1.2 TODO..................................................

More information

Simple libtorrent streaming module Documentation

Simple libtorrent streaming module Documentation Simple libtorrent streaming module Documentation Release 0.1.0 David Francos August 31, 2015 Contents 1 Simple libtorrent streaming module 3 1.1 Dependences...............................................

More information

sainsmart Documentation

sainsmart Documentation sainsmart Documentation Release 0.3.1 Victor Yap Jun 21, 2017 Contents 1 sainsmart 3 1.1 Install................................................... 3 1.2 Usage...................................................

More information

ing With PHP History of Applications or Use

ing With PHP History of  Applications or Use Emailing With PHP What is Email? E mail, short for electronic mail and often abbreviated to e mail, email or simply mail, is a store and forward method of composing, sending, receiving and storing messages

More information

py-couchdb Documentation

py-couchdb Documentation py-couchdb Documentation Release 1.12 Andrey Antukh May 15, 2015 Contents 1 Advantages of py-couchdb 3 2 User guide 5 2.1 Installation................................................ 5 2.2 Quickstart................................................

More information

django-stored-messages Documentation

django-stored-messages Documentation django-stored-messages Documentation Release 1.4.0 evonove Nov 10, 2017 Contents 1 Features 3 2 Compatibility table 5 3 Contents 7 3.1 Installation................................................ 7 3.2

More information

Package mailr. May 31, 2014

Package mailr. May 31, 2014 Package mailr May 31, 2014 Type Package Title Generate mails and send them via sendmail Author Meik Michalke Maintainer Meik Michalke Depends R (>= 2.9.0),methods You can use this

More information

django-dynamic-db-router Documentation

django-dynamic-db-router Documentation django-dynamic-db-router Documentation Release 0.1.1 Erik Swanson August 24, 2016 Contents 1 Table of Contents 3 1.1 Installation................................................ 3 1.2 Quickstart................................................

More information

Django Wordpress API Documentation

Django Wordpress API Documentation Django Wordpress API Documentation Release 0.1.0 Swapps Jun 28, 2017 Contents 1 Django Wordpress API 3 1.1 Documentation.............................................. 3 1.2 Quickstart................................................

More information

django-messages Documentation

django-messages Documentation django-messages Documentation Release 0.5.0 Arne Brodowski Nov 18, 2017 Contents 1 Contents 3 1.1 Installing django-messages........................................ 3 1.2 Using django-messages.........................................

More information

PrettyPandas Documentation

PrettyPandas Documentation PrettyPandas Documentation Release 0.0.4 Henry Hammond Mar 26, 2018 Contents 1 Features 3 2 Installation 5 3 Contributing 7 4 Contents 9 4.1 Quick Start................................................

More information

Python Project Example Documentation

Python Project Example Documentation Python Project Example Documentation Release 0.1.0 Neil Stoddard Mar 22, 2017 Contents 1 Neilvana Example 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

Archan. Release 2.0.1

Archan. Release 2.0.1 Archan Release 2.0.1 Jul 30, 2018 Contents 1 Archan 1 1.1 Features.................................................. 1 1.2 Installation................................................ 1 1.3 Documentation..............................................

More information

PyCRC Documentation. Release 1.0

PyCRC Documentation. Release 1.0 PyCRC Documentation Release 1.0 Cristian Năvălici May 12, 2018 Contents 1 PyCRC 3 1.1 Features.................................................. 3 2 Installation 5 3 Usage 7 4 Contributing 9 4.1 Types

More information

Python Finite State Machine. Release 0.1.5

Python Finite State Machine. Release 0.1.5 Python Finite State Machine Release 0.1.5 Sep 15, 2017 Contents 1 Overview 1 1.1 Installation................................................ 1 1.2 Documentation..............................................

More information

django mail admin Documentation

django mail admin Documentation django mail admin Documentation Release 0.1.1 Denis Bobrov Mar 11, 2018 Contents 1 Django Mail Admin 3 1.1 Features.................................................. 3 1.2 Documentation..............................................

More information

SyncHg Documentation. Release Graeme Coupar

SyncHg Documentation. Release Graeme Coupar SyncHg Documentation Release 0.9.5 Graeme Coupar November 01, 2012 CONTENTS i ii SyncHg Documentation, Release 0.9.5 Ever had to keep two mercurial repositories on different machines in sync? Mercurials

More information

diceware Documentation

diceware Documentation diceware Documentation Release 0.1 Uli Fouquet March 28, 2015 Contents 1 Install 3 2 Usage 5 3 What is it good for? 7 4 Is it secure? 9 5 Developer Install 11 5.1 Documentation Install..........................................

More information

Flask-Genshi Documentation

Flask-Genshi Documentation Flask-Genshi Documentation Release 0.1 Dag Odenhall September 14, 2011 CONTENTS i ii Flask-Genshi Documentation, Release 0.1 Flask-Genshi is an extension to Flask that allows you to easily use Genshi

More information

Release Manu Phatak

Release Manu Phatak cache r equestsdocumentation Release 4.0.0 Manu Phatak December 26, 2015 Contents 1 Contents: 1 1.1 cache_requests.............................................. 1 1.2 Installation................................................

More information

BanzaiDB Documentation

BanzaiDB Documentation BanzaiDB Documentation Release 0.3.0 Mitchell Stanton-Cook Jul 19, 2017 Contents 1 BanzaiDB documentation contents 3 2 Indices and tables 11 i ii BanzaiDB is a tool for pairing Microbial Genomics Next

More information

Webmail Documentation

Webmail Documentation Webmail Documentation Version 7 Printed 5/15/2009 1 WebMail Documentation Contents WebMail Documentation Login page... 2 Get Message... 3 Folders... 5 New Message... 8 Search... 11 Address Book... 12 Settings...

More information

Watson - Events. Release 1.0.3

Watson - Events. Release 1.0.3 Watson - Events Release 1.0.3 Jan 15, 2018 Contents 1 Build Status 3 2 Installation 5 3 Testing 7 4 Contributing 9 5 Table of Contents 11 5.1 Usage................................................... 11

More information

I2C LCD Documentation

I2C LCD Documentation I2C LCD Documentation Release 0.1.0 Peter Landoll Sep 04, 2017 Contents 1 I2C LCD 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

Use Mail Merge with Gmail to send personalized messages to a large group of people from your Gmail account.

Use Mail Merge with Gmail to send personalized  messages to a large group of people from your Gmail account. Mail Merge with Gmail Use Mail Merge with Gmail to send personalized email messages to a large group of people from your Gmail account. The program is written in Google Apps Script and includes support

More information

withenv Documentation

withenv Documentation withenv Documentation Release 0.7.0 Eric Larson Aug 02, 2017 Contents 1 withenv 3 2 Installation 5 3 Usage 7 3.1 YAML Format.............................................. 7 3.2 Command Substitutions.........................................

More information

Snakemine: Redmine API wrapper Documentation

Snakemine: Redmine API wrapper Documentation Snakemine: Redmine API wrapper Documentation Release 1.0b1 Mark Lee Sep 27, 2017 Contents 1 Installation 3 2 Example 5 3 License 7 4 Contributing 9 5 Contributors 11 6 API Documentation 13 6.1 Package:

More information

sinon Documentation Release Kir Chou

sinon Documentation Release Kir Chou sinon Documentation Release 0.1.1 Kir Chou Jun 10, 2017 Contents 1 Overview 3 2 Contents 5 2.1 Setup................................................... 5 2.2 Spies...................................................

More information

httpclient Documentation

httpclient Documentation httpclient Documentation Release 1 Franck Cuny May 07, 2012 CONTENTS 1 Basic usage 3 2 User Guide 5 2.1 Installing httpclient............................................ 5 2.2 Creating your first client.........................................

More information

Flask-SimpleLDAP Documentation

Flask-SimpleLDAP Documentation Flask-SimpleLDAP Documentation Release 1.1.2 Alexandre Ferland Sep 14, 2017 Contents 1 Quickstart 3 2 Configuration 5 3 API 7 3.1 Classes.................................................. 7 3.2 History..................................................

More information

Pure Storage REST Client Documentation

Pure Storage REST Client Documentation Pure Storage REST Client Documentation Release 1.14.1 Pure Storage Jul 20, 2018 Contents 1 Installation Guide 1 1.1 Python Package Index Installation.................................... 1 1.2 Source Code

More information

mltool Documentation Release Maurizio Sambati

mltool Documentation Release Maurizio Sambati mltool Documentation Release 0.5.1 Maurizio Sambati November 18, 2015 Contents 1 Overview 3 1.1 Features.................................................. 3 1.2 Installation................................................

More information

HOW TO FLASK. And a very short intro to web development and databases

HOW TO FLASK. And a very short intro to web development and databases HOW TO FLASK And a very short intro to web development and databases FLASK Flask is a web application framework written in Python. Created by an international Python community called Pocco. Based on 2

More information

Poulpe Documentation. Release Edouard Klein

Poulpe Documentation. Release Edouard Klein Poulpe Documentation Release 0.0.5 Edouard Klein Jul 18, 2017 Contents 1 Poulpe 1 1.1 Features.................................................. 1 2 Usage 3 3 Installation 5 4 Contributing 7 4.1 Types

More information

Pulp Python Support Documentation

Pulp Python Support Documentation Pulp Python Support Documentation Release 1.0.1 Pulp Project October 20, 2015 Contents 1 Release Notes 3 1.1 1.0 Release Notes............................................ 3 2 Administrator Documentation

More information

Aldryn Installer Documentation

Aldryn Installer Documentation Aldryn Installer Documentation Release 0.2.0 Iacopo Spalletti February 06, 2014 Contents 1 django CMS Installer 3 1.1 Features.................................................. 3 1.2 Installation................................................

More information

Mantis STIX Importer Documentation

Mantis STIX Importer Documentation Mantis STIX Importer Documentation Release 0.2.0 Siemens February 27, 2014 Contents 1 Mantis STIX Importer 3 1.1 Documentation.............................................. 3 1.2 Quickstart................................................

More information

Google Domain Shared Contacts Client Documentation

Google Domain Shared Contacts Client Documentation Google Domain Shared Contacts Client Documentation Release 0.1.0 Robert Joyal Mar 31, 2018 Contents 1 Google Domain Shared Contacts Client 3 1.1 Features..................................................

More information

Server-side Development using Python and SQL

Server-side Development using Python and SQL Lab 2 Server-side Development using Python and SQL Spring 2018 TDDD97 Web Programming http://www.ida.liu.se/~tddd97/ Department of Computer and Information Science (IDA) Linköping University Sweden 1 2

More information

AIL Framework for Analysis of Information Leaks

AIL Framework for Analysis of Information Leaks AIL Framework for Analysis of Information Leaks hack.lu workshop - A generic analysis information leak open source software Alexandre Dulaunoy alexandre.dulaunoy@circl.lu Sami Mokaddem sami.mokaddem@circl.lu

More information

1. You can send messages to one or multiple recipients in the course.

1. You can send messages to one or multiple recipients in the course. 13-Mail Mail allows you to communicate with other users via written correspondence, in text or HTML format, and file attachments. You can send mail to other users in the selected course or section. Mailcan

More information

yardstick Documentation

yardstick Documentation yardstick Documentation Release 0.1.0 Kenny Freeman December 30, 2015 Contents 1 yardstick 3 1.1 What is yardstick?............................................ 3 1.2 Features..................................................

More information

ejpiaj Documentation Release Marek Wywiał

ejpiaj Documentation Release Marek Wywiał ejpiaj Documentation Release 0.4.0 Marek Wywiał Mar 06, 2018 Contents 1 ejpiaj 3 1.1 License.................................................. 3 1.2 Features..................................................

More information

Release Fulfil.IO Inc.

Release Fulfil.IO Inc. api a idocumentation Release 0.1.0 Fulfil.IO Inc. July 29, 2016 Contents 1 api_ai 3 1.1 Features.................................................. 3 1.2 Installation................................................

More information

Redis Timeseries Documentation

Redis Timeseries Documentation Redis Timeseries Documentation Release 0.1.8 Ryan Anguiano Jul 26, 2017 Contents 1 Redis Timeseries 3 1.1 Install................................................... 3 1.2 Usage...................................................

More information

Python State Machine Documentation

Python State Machine Documentation Python State Machine Documentation Release 0.7.1 Fernando Macedo Jan 17, 2019 Contents 1 Python State Machine 3 1.1 Getting started.............................................. 3 2 Installation 9 2.1

More information

Sendmail Process Failed With Error Code 67

Sendmail Process Failed With Error Code 67 Sendmail Process Failed With Error Code 67 Any accounts which previously were using Send Mail As via Gmail servers will not be affected, you can keep the previous set up. For those of I'm Swedish but it

More information

OnePlace Contacts User s Guide. Managing your contacts with the OnePlace Contact Manager.

OnePlace Contacts User s Guide. Managing your contacts with the OnePlace Contact Manager. OnePlace Contacts User s Guide Managing your contacts with the OnePlace Contact Manager. How to Find It Go to http://www.ouroneplace.net Choose My Contacts Adding Contacts Contact: Summary The Contact

More information

SyncHg Documentation. Release Graeme Coupar

SyncHg Documentation. Release Graeme Coupar SyncHg Documentation Release 1.0.0 Graeme Coupar March 28, 2013 CONTENTS 1 Installation 3 2 Using SyncHg 5 2.1 Configuration............................................... 5 3 SyncHg API 7 3.1 Syncing

More information

htmlmin Documentation

htmlmin Documentation htmlmin Documentation Release 0.1 Dave Mankoff Dec 07, 2017 Contents 1 Quickstart 3 1.1 Command Line.............................................. 4 2 Tutorial & Examples 7 3 API Reference 9 3.1 Main

More information

SQLAlchemy-ORM-tree Documentation

SQLAlchemy-ORM-tree Documentation SQLAlchemy-ORM-tree Documentation Release 0.2.0 RokuSigma Inc. and contributors July 05, 2016 Contents 1 Installation 3 2 API 5 2.1 Managers................................................. 5 2.2 ORM

More information

django-composite-foreignkey Documentation

django-composite-foreignkey Documentation django-composite-foreignkey Documentation Release 1.0.0a10 Darius BERNARD Nov 08, 2017 Contents 1 Installation 3 2 Quickstart 5 2.1 Example simple composite ForeignKey models.............................

More information

AIL Framework for Analysis of Information Leaks

AIL Framework for Analysis of Information Leaks AIL Framework for Analysis of Information Leaks Workshop - A generic analysis information leak open source software Sami Mokaddem sami.mokaddem@circl.lu Aurélien Thirion info@circl.lu July 2, 2018 2 of

More information

Quick Guide for Sending Broadcast s

Quick Guide for Sending Broadcast  s Quick Guide for Sending Broadcast E-mails What is the Broadcast E-mail tool? The Broadcast E-mail tool makes it easy to send a large an e-mail to a selection of contacts. This function allows you to enter

More information

IoC Documentation. Release Thomas Rabaix

IoC Documentation. Release Thomas Rabaix IoC Documentation Release 0.0.16 Thomas Rabaix April 15, 2015 Contents 1 Installation 3 2 References 5 2.1 Bootstrapping.............................................. 5 2.2 Extension.................................................

More information

CIS192 Python Programming

CIS192 Python Programming CIS192 Python Programming Web Servers and Web APIs Eric Kutschera University of Pennsylvania March 6, 2015 Eric Kutschera (University of Pennsylvania) CIS 192 March 6, 2015 1 / 22 Outline 1 Web Servers

More information

IoT Relay Documentation

IoT Relay Documentation IoT Relay Documentation Release 1.2.2 Emmanuel Levijarvi January 16, 2017 Contents 1 Installation 3 2 Source 5 3 License 7 4 Contents 9 4.1 Running IoT Relay............................................

More information

Simple Binary Search Tree Documentation

Simple Binary Search Tree Documentation Simple Binary Search Tree Documentation Release 0.4.1 Adrian Cruz October 23, 2014 Contents 1 Simple Binary Search Tree 3 1.1 Features.................................................. 3 2 Installation

More information

Flask-Testing Documentation

Flask-Testing Documentation Flask-Testing Documentation Release 0.3 Dan Jacob Dec 31, 2017 Contents 1 Installing Flask-Testing 3 2 Writing tests 5 2.1 Testing with LiveServer......................................... 5 2.2 Dynamic

More information