Metadata-Version: 2.1
Name: testrail-api
Version: 1.0.1
Summary: Python wrapper of the TestRail API
Home-page: https://github.com/tolstislon/testrail-api
Author: tolstislon
Author-email: tolstislon@gmail.com
License: Apache Software License 2.0
Keywords: testrail,api,client,library,testrail_api
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Requires-Dist: requests (>=2.20.1)

=================
testrail-api
=================

This is a Python wrapper of the TestRail API(v2) according to
`the official document <http://docs.gurock.com/testrail-api2/start>`_

-----------------
Install
-----------------

::

    pip install testrail-api


-----------------
Example
-----------------
::

    from testrail_api import TestRailAPI

    api = TestRailAPI('https://example.testrail.com/', 'example@mail.com', 'password')
    my_case = api.cases.get_case(22)
    api.cases.add_case(1, 'New Case', milestone_id=1)



