Metadata-Version: 2.1
Name: tcclient
Version: 0.0.1
Summary: The cross-platform tool to with the TC server remotely.
Home-page: https://github.com/agegemon/tcclient
Author: Andrey Komissarov
Author-email: a.komisssarov@gmail.com
License: GNU General Public License v3.0
Description: [![PyPI version](https://badge.fury.io/py/tcclient.svg)](https://badge.fury.io/py/tcclient)
        
        
        # tcclient
        
        Cross-platform tool to work with the TeamCity using REAT API.
        
        
        ## Installation
        For most users, the recommended method to install is via pip:
        ```cmd
        pip install tcclient
        ```
        ## Import
        ```python
        from tcclient import TCRestClient
        ```
        ---
        ## Usage
        #### Command from usual user:
        ```python
        import os
        from tcclient import TCRestClient
        
        token = os.environ['TOKEN']
        base_url = "https://tc.test.local:8080"
        client = TCRestClient(base_url=base_url, token=token)
        
        projects = client.get_all_projects()
        print(projects.json())
        ```
        
        ---
        
        ## Changelog
        
        ##### 0.0.1 (28.03.2021)
        - initial commit
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
