Metadata-Version: 2.1
Name: mantisconnect2
Version: 0.4.1
Summary: Python client for Mantis connect SOAP API
Home-page: https://github.com/tigerking/mantisconnect2
Author: Ji Haijun
Author-email: tigerking1218@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown


mantisconnect2
=======================

Notes
-----------------------
- forkeds from mantisconnect-python project(author:morenice)
- update to support mantis 2.x (mantisconnect-python only supports 1.x)
- support python 2.7
- more features,eg add new issue etc

Python client for Mantis Connect SOAP API

 - It is good to request issue data on a filter basis.
 - You can use extended fields as well as custom fields.
 - Offers simple interface.

Usage
-----------------------
See sample/sample.py

::

    mc = MantisSoapConnector("url")
    mc.set_user_passwd("username", "password")
    mc.connect()

    p = SimpleProject(mc, "your project name")
    filter_name = "your filter name"
    issue_list = p.request_filter_all_issues(filter_name)


Install
-----------------------
Requirement
 - python 2.7 , 3.x
 - zeep

::

    $ pip install mantisconnect2



Test version
 - mantis 1.2.11, 2.18


