qcrash Documentation Release Author

Size: px
Start display at page:

Download "qcrash Documentation Release Author"

Transcription

1 qcrash Documentation Release Author October 31, 2016

2

3 Contents 1 Introduction 3 2 Changelog 5 3 Examples 7 4 API reference 13 5 Contributing 17 6 Indices and tables 19 Python Module Index 21 i

4 ii

5 A PyQt/PySide framework for reporting application crash (unhandled exception) and/or let the user report an issue/feature request. Contents: Contents 1

6 2 Contents

7 CHAPTER 1 Introduction 1.1 About A PyQt/PySide framework for reporting application crash (unhandled exception) and/or let the user report an issue/feature request. 1.2 Features multiple builtin backends for reporting bugs: github_backend: let you create issues on github _backend: let you send an with the crash report. highly configurable, you can create your own backend, set your own formatter,... a thread safe exception hook mechanism with a way to setup your own function 1.3 Screenshots Screenshots taken on KDE Plasma 5 Report dialog Review report before submitting Github integration 1.4 LICENSE QCrash is licensed under the MIT license. 1.5 Installation pip install qcrash 3

8 1.6 Usage Basic usage: import qcrash.api as qcrash # setup our own function to collect system info and application log qcrash.get_application_log = my_app.get_application_log qcrash.get_system_information = my_app.get_system_info # configure backends github = qcrash.backends.githubbackend('colinduquesnoy', 'QCrash') = qcrash.backends. backend('colin.duquesnoy@gmail.com') qcrash.install_backend([github, ]) # install exception hook qcrash.install_except_hook() # or show the report dialog manually qcrash.show_report_dialog() Some more detailed examples are available. Also have a look at the API documentation. 1.7 Dependencies keyring githubpy (embedded into the package) 1.8 Testing To run the tests, just run the following command: python setup.py test 4 Chapter 1. Introduction

9 CHAPTER 2 Changelog Improvements [All] don t limit size of application log, github backend will upload it as an anonymous gist [All] split review dialog into two tabs: General and Log [GitHub] add option to save user name only [GUI] allow to use TAB to change focus of input text area (do not insert a t anymore) [GUI] allow the user to press Ctrl+Return to accept a dialog Fixed bugs fix segfault with PyQt 5.6 on Plasma fix a few minor GUI issues (unaligned labels in gh login dialog, fix missing dialog icons, remove unused help buttons from dialogs) First public release. 5

10 6 Chapter 2. Changelog

11 CHAPTER 3 Examples 3.1 PyQt5 1 import logging 2 import sys 3 4 from PyQt5 import QtCore, QtWidgets 5 6 import qcrash.api as qcrash logging.basicconfig() 11 GITHUB_OWNER = 'ColinDuquesnoy' 12 GITHUB_REPO = 'QCrash-Test' 13 = 'your. @provider.com' def get_system_info(): 17 return 'OS: %s\npython: %r' % (sys.platform, sys.version_info) def get_application_log(): 21 return "Blabla" app = QtWidgets.QApplication(sys.argv) 25 my_settings = QtCore.QSettings() # use own qsettings to remember username,... (password stored via keyring) 29 qcrash.set_qsettings(my_settings) # configure backends 33 qcrash.install_backend(qcrash.backends.githubbackend( 34 GITHUB_OWNER, GITHUB_REPO)) 35 qcrash.install_backend(qcrash.backends. backend( , 'TestApp')) # setup our own function to collect system info and application log 39 qcrash.get_application_log = get_application_log 7

12 40 qcrash.get_system_information = get_system_info # show report dialog manually 44 qcrash.show_report_dialog() # create a window 48 win = QtWidgets.QMainWindow() 49 label = QtWidgets.QLabel() 50 label.settext('wait a few seconds for an unhandled exception to occur...') 51 label.setalignment(qtcore.qt.alignhcenter QtCore.Qt.AlignVCenter) 52 win.setcentralwidget(label) 53 win.showmaximized() # install our own except hook. 57 def except_hook(exc, tb): 58 res = QtWidgets.QMessageBox.question( 59 win, "Unhandled exception", "An unhandled exception has occured. Do " 60 "you want to report") 61 if res == QtWidgets.QMessageBox.Yes: 62 qcrash.show_report_dialog( 63 window_title='report unhandled exception', 64 issue_title=str(exc), traceback=tb) qcrash.install_except_hook(except_hook=except_hook) # raise an unhandled exception in a few seconds 70 def raise_unhandled_exception(): 71 raise Exception('this is an unhandled exception') 72 QtCore.QTimer.singleShot(2000, raise_unhandled_exception) # run qt app 75 app.exec_() 3.2 PyQt4 1 import logging 2 import sys 3 from PyQt4 import QtCore, QtGui 4 import qcrash.api as qcrash 5 6 logging.basicconfig(level=logging.debug) 7 8 GITHUB_OWNER = 'ColinDuquesnoy' 9 GITHUB_REPO = 'QCrash-Test' 10 = 'your. @provider.com' def get_system_info(): 14 return 'OS: %s\npython: %r' % (sys.platform, sys.version_info) def get_application_log(): 8 Chapter 3. Examples

13 18 return "Blabla" app = QtGui.QApplication(sys.argv) 22 my_settings = QtCore.QSettings() # use own qsettings to remember username,... (password stored via keyring) 26 qcrash.set_qsettings(my_settings) # configure backends 30 qcrash.install_backend(qcrash.backends.githubbackend( 31 GITHUB_OWNER, GITHUB_REPO)) 32 qcrash.install_backend(qcrash.backends. backend( , 'TestApp')) # setup our own function to collect system info and application log 36 qcrash.get_application_log = get_application_log 37 qcrash.get_system_information = get_system_info # show report dialog manually 41 qcrash.show_report_dialog() # create a window 45 win = QtGui.QMainWindow() 46 label = QtGui.QLabel() 47 label.settext('wait a few seconds for an unhandled exception to occur...') 48 label.setalignment(qtcore.qt.alignhcenter QtCore.Qt.AlignVCenter) 49 win.setcentralwidget(label) 50 win.showmaximized() # install our own except hook. 54 def except_hook(exc, tb): 55 res = QtGui.QMessageBox.question( 56 win, "Unhandled exception", "An unhandled exception has occured. Do " 57 "you want to report") 58 if res == QtGui.QMessageBox.Ok: 59 qcrash.show_report_dialog( 60 window_title='report unhandled exception', 61 issue_title=str(exc), traceback=tb) qcrash.install_except_hook(except_hook=except_hook) # raise an unhandled exception in a few seconds 67 def raise_unhandled_exception(): 68 raise Exception('this is an unhandled exception') 69 QtCore.QTimer.singleShot(2000, raise_unhandled_exception) # run qt app 72 app.exec_() 3.2. PyQt4 9

14 3.3 PySide 1 import logging 2 import sys 3 4 from PySide import QtCore, QtGui 5 6 import qcrash.api as qcrash logging.basicconfig() 11 GITHUB_OWNER = 'ColinDuquesnoy' 12 GITHUB_REPO = 'QCrash-Test' 13 = 'your. @provider.com' def get_system_info(): 17 return 'OS: %s\npython: %r' % (sys.platform, sys.version_info) def get_application_log(): 21 return "Blabla" app = QtGui.QApplication(sys.argv) 25 my_settings = QtCore.QSettings() # use own qsettings to remember username,... (password stored via keyring) 29 qcrash.set_qsettings(my_settings) # configure backends 33 qcrash.install_backend(qcrash.backends.githubbackend( 34 GITHUB_OWNER, GITHUB_REPO)) 35 qcrash.install_backend(qcrash.backends. backend( , 'TestApp')) # setup our own function to collect system info and application log 39 qcrash.get_application_log = get_application_log 40 qcrash.get_system_information = get_system_info # show report dialog manually 44 qcrash.show_report_dialog() # create a window 48 win = QtGui.QMainWindow() 49 label = QtGui.QLabel() 50 label.settext('wait a few seconds for an unhandled exception to occur...') 51 label.setalignment(qtcore.qt.alignhcenter QtCore.Qt.AlignVCenter) 52 win.setcentralwidget(label) 53 win.showmaximized() # install our own except hook. 10 Chapter 3. Examples

15 57 def except_hook(exc, tb): 58 res = QtGui.QMessageBox.question( 59 win, "Unhandled exception", "An unhandled exception has occured. Do " 60 "you want to report") 61 if res == QtGui.QMessageBox.Ok: 62 qcrash.show_report_dialog( 63 window_title='report unhandled exception', 64 issue_title=str(exc), traceback=tb) qcrash.install_except_hook(except_hook=except_hook) # raise an unhandled exception in a few seconds 70 def raise_unhandled_exception(): 71 raise Exception('this is an unhandled exception') 72 QtCore.QTimer.singleShot(2000, raise_unhandled_exception) # run qt app 75 app.exec_() 3.3. PySide 11

16 12 Chapter 3. Examples

17 CHAPTER 4 API reference 4.1 qcrash.api This module contains the top level API functions. qcrash.api.install_backend(*args) Install one or more backends. Usage: qcrash.install_backend(backend1) qcrash.install_backend(backend2, backend3) Parameters args the backends to install. Each backend must be a subclass of qcrash.backends.basebackend (e.g.:: qcrash.backends. backend or qcrash.backends.githubbackend) qcrash.api.get_backends() Gets the list of installed backends. qcrash.api.install_except_hook(except_hook=<function except_hook>) Install an except hook that will show the crash report dialog when an unhandled exception has occured. Parameters except_hook except_hook function that will be called on the main thread whenever an unhandled exception occured. The function takes two parameters: the exception object and the traceback string. qcrash.api.set_qsettings(qsettings) Sets the qsettings used by the backends to cache some information such as the user credentials. If no custom qsettings is defined, qcrash will use its own settings (QSettings( QCrash )) Parameters qsettings QtCore.QSettings instance qcrash.api.show_report_dialog(window_title= Report an issue..., window_icon=none, traceback=none, issue_title=, issue_description=, parent=none, modal=none, include_log=true, include_sys_info=true) Show the issue report dialog manually. Parameters window_title Title of dialog window window_icon the icon to use for the dialog window traceback optional traceback string to include in the report. 13

18 issue_title optional issue title issue_description optional issue description parent parent widget include_log Initial state of the include log check box include_sys_info Initial state of the include system info check box qcrash.api.get_application_log() Reference to the function to use to collect the application s log. Client code should redefine it. qcrash.api.get_system_information() Reference to the function to use to collect system information. Client code should redefine it. 4.2 qcrash.backends BaseBackend class qcrash.backends.basebackend(formatter, button_text, button_tooltip, button_icon=none, need_review=true) Bases: object Base class for implementing a backend. Subclass must define button_text, button_tooltip and button_icon and implement send_report(title, description). The report s title and body will be formatted automatically by the associated formatter. qsettings() Gets the qsettings instance that you can use to store various settings such as the user credentials (you should use the keyring module if you want to store user s password). send_report(title, body, application_log=none) Sends the actual bug report. Parameters title title of the report, already formatted. body body of the reporit, already formtatted. application_log Content of the application log. Default is None. Returns Whether the dialog should be closed. set_formatter(formatter) Sets the formatter associated with the backend. The formatter will automatically get called to format the report title and body before send_report is being called Backend class qcrash.backends. backend( , app_name, formatter=<qcrash.formatters. . formatter object>) Bases: qcrash.backends.base.basebackend This backend sends the crash report via (using mailto). 14 Chapter 4. API reference

19 Usage: _backend = qcrash.backends. backend( 'your_ @provider.com', 'YourAppName') qcrash.install_backend( _backend) send_report(title, body, application_log=none) GithubBackend class qcrash.backends.githubbackend(gh_owner, gh_repo, formatter=<qcrash.formatters.markdown.mardownformatter object>) Bases: qcrash.backends.base.basebackend This backend sends the crash report on a github issue tracker: Usage: github_backend = qcrash.backends.githubbackend( 'ColinDuquesnoy', 'QCrash') qcrash.install_backend(github_backend) get_user_credentials() send_report(title, body, application_log=none) upload_log_file(log_content) 4.3 qcrash.formatters BaseFormatter class qcrash.formatters.base.baseformatter Bases: object Base class for implementing a custom formatter. Just implement format_body() and format_title() functions and set your formatter on the backends you created. format_body(description, sys_info=none, traceback=none) Not implemented. Parameters description Description of the issue, written by the user. sys_info Optional system information string traceback Optional traceback. format_title(title) Formats the issue title. By default this method does nothing. An formatter might want to append the application to name to the object field qcrash.formatters 15

20 Formatter class qcrash.formatters. . formatter(app_name=none) Bases: qcrash.formatters.base.baseformatter Formats the crash report for use in an (text/plain) format_body(description, sys_info=none, traceback=none) Formats the body in plain text. (add a series of - under each section title). Parameters description Description of the issue, written by the user. sys_info Optional system information string log Optional application log traceback Optional traceback. format_title(title) Formats title (add [app_name] if app_name is not None) MardownFormatter class qcrash.formatters.markdown.mardownformatter Bases: qcrash.formatters.base.baseformatter Formats the issue report using Markdown. format_body(description, sys_info=none, traceback=none) Formats the body using markdown. Parameters description Description of the issue, written by the user. sys_info Optional system information string log Optional application log traceback Optional traceback. 16 Chapter 4. API reference

21 CHAPTER 5 Contributing 5.1 Report bugs or ask a question You can report bugs or ask question on our issue tracker. 5.2 Submitting pull requests: Pull Requests are great! 1. Fork the Repo on github. 2. Create a feature/bug fix branch based on the master branch. 3. If you are adding functionality or fixing a bug, please add a test! 4. Push to your fork and submit a pull request to the master branch. Please use PEP8 to style your code: python setup.py test -a "--flake8 -m flake8" 17

22 18 Chapter 5. Contributing

23 CHAPTER 6 Indices and tables genindex modindex search 19

24 20 Chapter 6. Indices and tables

25 Python Module Index q qcrash.api, 13 21

26 22 Python Module Index

27 Index B BaseBackend (class in qcrash.backends), 14 BaseFormatter (class in qcrash.formatters.base), 15 E Backend (class in qcrash.backends), 14 Formatter (class in qcrash.formatters. ), 16 F format_body() (qcrash.formatters.base.baseformatter method), 15 format_body() (qcrash.formatters. . formatter method), 16 U format_body() (qcrash.formatters.markdown.mardownformatter upload_log_file() method), 16 method), 15 format_title() (qcrash.formatters.base.baseformatter method), 15 format_title() (qcrash.formatters. . formatter method), 16 G get_application_log() (in module qcrash.api), 14 get_backends() (in module qcrash.api), 13 get_system_information() (in module qcrash.api), 14 get_user_credentials() (qcrash.backends.githubbackend method), 15 GithubBackend (class in qcrash.backends), 15 I install_backend() (in module qcrash.api), 13 install_except_hook() (in module qcrash.api), 13 M MardownFormatter (class in qcrash.formatters.markdown), 16 Q qcrash.api (module), 13 qsettings() (qcrash.backends.basebackend method), 14 S send_report() (qcrash.backends.basebackend method), 14 send_report() (qcrash.backends. backend method), 15 send_report() (qcrash.backends.githubbackend method), 15 set_formatter() (qcrash.backends.basebackend method), 14 set_qsettings() (in module qcrash.api), 13 show_report_dialog() (in module qcrash.api), 13 (qcrash.backends.githubbackend 23

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

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

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

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

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

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

Python data pipelines similar to R Documentation

Python data pipelines similar to R Documentation Python data pipelines similar to R Documentation Release 0.1.0 Jan Schulz October 23, 2016 Contents 1 Python data pipelines 3 1.1 Features.................................................. 3 1.2 Documentation..............................................

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

Django MFA Documentation

Django MFA Documentation Django MFA Documentation Release 1.0 Micro Pyramid Sep 20, 2018 Contents 1 Getting started 3 1.1 Requirements............................................... 3 1.2 Installation................................................

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

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

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

Kivy Designer Documentation

Kivy Designer Documentation Kivy Designer Documentation Release 0.9 Kivy October 02, 2016 Contents 1 Installation 3 1.1 Prerequisites............................................... 3 1.2 Installation................................................

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

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

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 AutoTask Web Services Documentation

Python AutoTask Web Services Documentation Python AutoTask Web Services Documentation Release 0.5.1 Matt Parr May 15, 2018 Contents 1 Python AutoTask Web Services 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

Release Nicholas A. Del Grosso

Release Nicholas A. Del Grosso wavefront r eaderdocumentation Release 0.1.0 Nicholas A. Del Grosso Apr 12, 2017 Contents 1 wavefront_reader 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

Release Ralph Offinger

Release Ralph Offinger nagios c heck p aloaltodocumentation Release 0.3.2 Ralph Offinger May 30, 2017 Contents 1 nagios_check_paloalto: a Nagios/Icinga Plugin 3 1.1 Documentation..............................................

More information

Poetaster. Release 0.1.1

Poetaster. Release 0.1.1 Poetaster Release 0.1.1 September 21, 2016 Contents 1 Overview 1 1.1 Installation................................................ 1 1.2 Documentation.............................................. 1 1.3

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 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

pytest-benchmark Release 2.5.0

pytest-benchmark Release 2.5.0 pytest-benchmark Release 2.5.0 September 13, 2015 Contents 1 Overview 3 1.1 pytest-benchmark............................................ 3 2 Installation 7 3 Usage 9 4 Reference 11 4.1 pytest_benchmark............................................

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

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

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

AnyDo API Python Documentation

AnyDo API Python Documentation AnyDo API Python Documentation Release 0.0.2 Aliaksandr Buhayeu Apr 25, 2017 Contents 1 anydo_api unofficial AnyDo API client for Python (v0.0.2 aplha) 3 1.1 Supported Features............................................

More information

dj-libcloud Documentation

dj-libcloud Documentation dj-libcloud Documentation Release 0.2.0 Daniel Greenfeld December 19, 2016 Contents 1 dj-libcloud 3 1.1 Documentation.............................................. 3 1.2 Quickstart................................................

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

cwmon-mysql Release 0.5.0

cwmon-mysql Release 0.5.0 cwmon-mysql Release 0.5.0 October 18, 2016 Contents 1 Overview 1 1.1 Installation................................................ 1 1.2 Documentation.............................................. 1 1.3

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

DNS Zone Test Documentation

DNS Zone Test Documentation DNS Zone Test Documentation Release 1.1.3 Maarten Diemel Dec 02, 2017 Contents 1 DNS Zone Test 3 1.1 Features.................................................. 3 1.2 Credits..................................................

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

django-embed-video Documentation

django-embed-video Documentation django-embed-video Documentation Release 0.7.stable Juda Kaleta December 21, 2013 Contents i ii Django app for easy embeding YouTube and Vimeo videos and music from SoundCloud. Repository is located on

More information

smartfilesorter Documentation

smartfilesorter Documentation smartfilesorter Documentation Release 0.2.0 Jason Short September 14, 2014 Contents 1 Smart File Sorter 3 1.1 Features.................................................. 3 2 Installation 5 3 Usage Example

More information

Python State Machine Documentation

Python State Machine Documentation Python State Machine Documentation Release 0.6.2 Fernando Macedo Aug 25, 2017 Contents 1 Python State Machine 3 1.1 Getting started.............................................. 3 2 Installation 7 2.1

More information

LIFX NodeServer Documentation

LIFX NodeServer Documentation LIFX NodeServer Documentation Release 0.1.5 James Milne(Einstein.42) Jul 17, 2017 Contents 1 Usage 3 1.1 Installation................................................ 3 1.2 Add Node Server.............................................

More information

django-sticky-uploads Documentation

django-sticky-uploads Documentation django-sticky-uploads Documentation Release 0.2.0 Caktus Consulting Group October 26, 2014 Contents 1 Requirements/Installing 3 2 Browser Support 5 3 Documentation 7 4 Running the Tests 9 5 License 11

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

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

lazy-object-proxy Release 1.3.1

lazy-object-proxy Release 1.3.1 lazy-object-proxy Release 1.3.1 Jun 22, 2017 Contents 1 Overview 1 1.1 Installation................................................ 2 1.2 Documentation.............................................. 2

More information

Game Server Manager Documentation

Game Server Manager Documentation Game Server Manager Documentation Release 0.1.1+0.gc111f9c.dirty Christopher Bailey Dec 16, 2017 Contents 1 Game Server Manager 3 1.1 Requirements............................................... 3 1.2

More information

django-ratelimit-backend Documentation

django-ratelimit-backend Documentation django-ratelimit-backend Documentation Release 1.2 Bruno Renié Sep 13, 2017 Contents 1 Usage 3 1.1 Installation................................................ 3 1.2 Quickstart................................................

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

django-cas Documentation

django-cas Documentation django-cas Documentation Release 2.3.6 Parth Kolekar January 17, 2016 Contents 1 django-cas 3 1.1 Documentation.............................................. 3 1.2 Quickstart................................................

More information

doconv Documentation Release Jacob Mourelos

doconv Documentation Release Jacob Mourelos doconv Documentation Release 0.1.6 Jacob Mourelos October 17, 2016 Contents 1 Introduction 3 2 Features 5 2.1 Available Format Conversions...................................... 5 3 Installation 7 3.1

More information

Pykemon Documentation

Pykemon Documentation Pykemon Documentation Release 0.2.0 Paul Hallett Dec 19, 2016 Contents 1 Pykemon 3 1.1 Installation................................................ 3 1.2 Usage...................................................

More information

django-embed-video Documentation

django-embed-video Documentation django-embed-video Documentation Release 1.1.2-stable Juda Kaleta Nov 10, 2017 Contents 1 Installation & Setup 3 1.1 Installation................................................ 3 1.2 Setup...................................................

More information

contribution-guide.org Release

contribution-guide.org Release contribution-guide.org Release August 06, 2018 Contents 1 About 1 1.1 Sources.................................................. 1 2 Submitting bugs 3 2.1 Due diligence...............................................

More information

pysharedutils Documentation

pysharedutils Documentation pysharedutils Documentation Release 0.5.0 Joel James August 07, 2017 Contents 1 pysharedutils 1 2 Indices and tables 13 i ii CHAPTER 1 pysharedutils pysharedutils is a convenient utility module which

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

django simple pagination Documentation

django simple pagination Documentation django simple pagination Documentation Release 1.1.5 Micro Pyramid Nov 08, 2017 Contents 1 Getting started 3 1.1 Requirements............................................... 3 1.2 Installation................................................

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

django-embed-video Documentation

django-embed-video Documentation django-embed-video Documentation Release 0.6.stable Juda Kaleta October 04, 2013 CONTENTS i ii Django app for easy embeding YouTube and Vimeo videos and music from SoundCloud. Repository is located on

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

redis-lock Release 3.2.0

redis-lock Release 3.2.0 redis-lock Release 3.2.0 Sep 05, 2018 Contents 1 Overview 1 1.1 Usage................................................... 1 1.2 Features.................................................. 3 1.3 Implementation..............................................

More information

Signals Documentation

Signals Documentation Signals Documentation Release 0.1 Yeti November 22, 2015 Contents 1 Quickstart 1 2 What is Signals? 3 3 Contents 5 3.1 Get Started................................................ 5 3.2 Try the Demo Server...........................................

More information

django-allauth-2fa Documentation

django-allauth-2fa Documentation django-allauth-2fa Documentation Release 0.4.3 Víðir Valberg Guðmundsson, Percipient Networks Apr 25, 2018 Contents: 1 Features 3 2 Compatibility 5 3 Contributing 7 3.1 Running tests...............................................

More information

Python Loger Indenter and Helper Documentation

Python Loger Indenter and Helper Documentation Python Loger Indenter and Helper Documentation Release 0.9 Dan Strohl March 28, 2016 Contents 1 Installation and initial setup 3 2 Basic usage 5 2.1 Loading..................................................

More information

Python GUIs. $ conda install pyqt

Python GUIs. $ conda install pyqt PyQT GUIs 1 / 18 Python GUIs Python wasn t originally desined for GUI programming In the interest of "including batteries" the tkinter was included in the Python standard library tkinter is a Python wrapper

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

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

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

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

Git and GitHub. Dan Wysocki. February 12, Dan Wysocki Git and GitHub February 12, / 48

Git and GitHub. Dan Wysocki. February 12, Dan Wysocki Git and GitHub February 12, / 48 Git and GitHub Dan Wysocki February 12, 2015 Dan Wysocki Git and GitHub February 12, 2015 1 / 48 1 Version Control 2 Git 3 GitHub 4 Walkthrough Dan Wysocki Git and GitHub February 12, 2015 2 / 48 Version

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

smsghussd Documentation

smsghussd Documentation smsghussd Documentation Release 0.1.0 Mawuli Adzaku July 11, 2015 Contents 1 How to use 3 2 Author 7 3 LICENSE 9 3.1 Contents:................................................. 9 3.2 Feedback.................................................

More information

Gearthonic Documentation

Gearthonic Documentation Gearthonic Documentation Release 0.2.0 Timo Steidle August 11, 2016 Contents 1 Quickstart 3 2 Contents: 5 2.1 Usage................................................... 5 2.2 API....................................................

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

gunny Documentation Release David Blewett

gunny Documentation Release David Blewett gunny Documentation Release 0.1.0 David Blewett December 29, 2013 Contents 1 gunny 3 1.1 Features.................................................. 3 2 Installation 5 2.1 Dependencies...............................................

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

Frontier Documentation

Frontier Documentation Frontier Documentation Release 0.1.3-dev Sam Nicholls August 14, 2014 Contents 1 Frontier 3 1.1 Requirements............................................... 3 1.2 Installation................................................

More information

django CMS Export Objects Documentation

django CMS Export Objects Documentation django CMS Export Objects Documentation Release 0.1.0 Iacopo Spalletti Sep 07, 2017 Contents 1 django CMS Export Objects 3 1.1 Features.................................................. 3 1.2 Documentation..............................................

More information

OTX to MISP. Release 1.4.2

OTX to MISP. Release 1.4.2 OTX to MISP Release 1.4.2 May 11, 2018 Contents 1 Overview 1 1.1 Installation................................................ 1 1.2 Documentation.............................................. 1 1.3 Alienvault

More information

Kinto Documentation. Release Mozilla Services Da French Team

Kinto Documentation. Release Mozilla Services Da French Team Kinto Documentation Release 0.2.2 Mozilla Services Da French Team June 23, 2015 Contents 1 In short 3 2 Table of content 5 2.1 API Endpoints.............................................. 5 2.2 Installation................................................

More information

e24paymentpipe Documentation

e24paymentpipe Documentation e24paymentpipe Documentation Release 1.2.0 Burhan Khalid Oct 30, 2017 Contents 1 e24paymentpipe 3 1.1 Features.................................................. 3 1.2 Todo...................................................

More information

RouteMobile Mobile Client Manual for Android Version: 2.0

RouteMobile Mobile Client Manual for Android Version: 2.0 RouteMobile Mobile Client Manual for Android Version: 2.0 Route Mobile Limited 2018. All rights reserved 1 Contents Installation... 3 Getting Started... 5 Login Page... 6 Main Screen... 7 Send SMS... 9

More information

OpenUpgrade Library Documentation

OpenUpgrade Library Documentation OpenUpgrade Library Documentation Release 0.1.0 Odoo Community Association September 10, 2015 Contents 1 OpenUpgrade Library 3 1.1 Features.................................................. 3 2 Installation

More information

About 1. Chapter 1: Getting started with pyqt5 2. Remarks 2. Examples 2. Installation or Setup 2. Hello World Example 6. Adding an application icon 8

About 1. Chapter 1: Getting started with pyqt5 2. Remarks 2. Examples 2. Installation or Setup 2. Hello World Example 6. Adding an application icon 8 pyqt5 #pyqt5 Table of Contents About 1 Chapter 1: Getting started with pyqt5 2 Remarks 2 Examples 2 Installation or Setup 2 Hello World Example 6 Adding an application icon 8 Showing a tooltip 10 Package

More information

Nirvana Documentation

Nirvana Documentation Nirvana Documentation Release 0.0.1 Nick Wilson Nov 17, 2017 Contents 1 Overview 3 2 Installation 5 3 User Guide 7 4 Developer Guide 9 5 Sitemap 11 5.1 User Guide................................................

More information

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central Table of Contents Installation Guide... 3 eshop Account Registration in Dynamics 365 Business Central:... 3 eshop Setup

More information

ProxySQL Tools Documentation

ProxySQL Tools Documentation ProxySQL Tools Documentation Release 0.3.12 TwinDB Development Team Dec 29, 2017 Contents 1 ProxySQL Tools 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

gpib-ctypes Documentation

gpib-ctypes Documentation gpib-ctypes Documentation Release 0.1.0dev Tomislav Ivek Apr 08, 2018 Contents 1 gpib-ctypes 3 1.1 Features.................................................. 3 1.2 Testing..................................................

More information

keepassx Release 0.1.0

keepassx Release 0.1.0 keepassx Release 0.1.0 March 17, 2016 Contents 1 What is this project and why should I care? 3 2 What s a Password Manager? 5 3 I ve never hard of KeePassx, what is it? 7 4 Aren t there similar projects

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

Python GUI programming with PySide. Speaker: BigLittle Date: 2013/03/04

Python GUI programming with PySide. Speaker: BigLittle Date: 2013/03/04 Python GUI programming with PySide Speaker: BigLittle Date: 2013/03/04 CLI vs. GUI CLI (Command Line Interface) Take less resources. User have much more control of their system. Only need to execute few

More information

Appstore Publisher Manual.

Appstore Publisher Manual. Appstore Publisher Manual http://developer.safaricom.co.ke/appstore https://developer.imimobile.co/ Get Started Visit http://developer.imimobile.co If you are an existing developer you can login by clicking

More information

open-helpdesk Documentation

open-helpdesk Documentation open-helpdesk Documentation Release 0.9.9 Simone Dalla Nov 16, 2017 Contents 1 Overview 3 1.1 Dependencies............................................... 3 1.2 Documentation..............................................

More information

Getting the files for the first time...2. Making Changes, Commiting them and Pull Requests:...5. Update your repository from the upstream master...

Getting the files for the first time...2. Making Changes, Commiting them and Pull Requests:...5. Update your repository from the upstream master... Table of Contents Getting the files for the first time...2 Making Changes, Commiting them and Pull Requests:...5 Update your repository from the upstream master...8 Making a new branch (for leads, do this

More information

AppDynamics Integration Guide

AppDynamics Integration Guide AppDynamics Integration Guide AppFirst (http://www.appfirst.com) delivers the only application aware operational intelligence platform that provides organizations with unparalleled visibility into their

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

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

pyldavis Documentation

pyldavis Documentation pyldavis Documentation Release 2.1.2 Ben Mabey Feb 06, 2018 Contents 1 pyldavis 3 1.1 Installation................................................ 3 1.2 Usage...................................................

More information

PyZillow Documentation

PyZillow Documentation PyZillow Documentation Release 0.5.5 Hannes Hapke Jul 10, 2017 Contents 1 Installation 3 2 Usage of the GetDeepSearchResults API 5 3 Usage of the GetUpdatedPropertyDetails API 7 4 Contact Information

More information

invenio-formatter Documentation

invenio-formatter Documentation invenio-formatter Documentation Release 1.0.0 CERN Mar 25, 2018 Contents 1 User s Guide 3 1.1 Installation................................................ 3 1.2 Configuration...............................................

More information

semidbm Documentation

semidbm Documentation semidbm Documentation Release 0.4.0 James Saryerwinnie Jr September 04, 2013 CONTENTS i ii semidbm is a pure python implementation of a dbm, which is essentially a persistent key value store. It allows

More information

Job Submitter Documentation

Job Submitter Documentation Job Submitter Documentation Release 0+untagged.133.g5a1e521.dirty Juan Eiros February 27, 2017 Contents 1 Job Submitter 3 1.1 Before you start............................................. 3 1.2 Features..................................................

More information

Bitdock. Release 0.1.0

Bitdock. Release 0.1.0 Bitdock Release 0.1.0 August 07, 2014 Contents 1 Installation 3 1.1 Building from source........................................... 3 1.2 Dependencies............................................... 3

More information

Connexion Sqlalchemy Utils Documentation

Connexion Sqlalchemy Utils Documentation Connexion Sqlalchemy Utils Documentation Release 0.1.4 Michael Housh Apr 17, 2017 Contents 1 Connexion Sqlalchemy Utils 3 1.1 Features.................................................. 3 1.2 Running example

More information

Django-frontend-notification Documentation

Django-frontend-notification Documentation Django-frontend-notification Documentation Release 0.2.0 Arezqui Belaid February 25, 2016 Contents 1 Introduction 3 1.1 Overview................................................. 3 1.2 Documentation..............................................

More information