Metadata-Version: 2.1
Name: pyrestclient
Version: 0.0.7
Summary: The simple http client and REST test tool for humans.
Home-page: https://github.com/c-pher/RESTClient.git
Author: Andrey Komissarov
Author-email: a.komisssarov@gmail.com
License: MIT
Description: # RESTClient
        The cross-platform tool to work with http.
        
        
        ## Installation
        For most users, the recommended method to install is via pip:
        ```cmd
        pip install pyrestclient
        ```
        
        or from source:
        
        ```cmd
        python setup.py install
        ```
        
        ## Import
        ```python
        from pyrestclient import RESTClient
        ```
        ---
        
        ## Changelog
        #####0.0.7 (10.03.2020)
        - Added query_params to all methods
        - POST method was refactored to use .send_request()
        
        
        #####0.0.6 (01.03.2020)
        - removed full_url param. now it will automatically convert url. use "http[s]://site.com" format in methods to use full url.
        - code refactoring
        
        #####0.0.5 (01.03.2020)
        - query params refactored to use urlencode
        - added DELETE method
        
        ##### 0.0.4 (27.02.2020)
        should_be_bad_request: assert text fixed
        ...
        
        ##### 0.0.1 (9.02.2020)
        - initial commit
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
