Metadata-Version: 2.1
Name: whmcspy
Version: 0.1.7
Summary: Python interface to the WHMCS API.
Home-page: https://github.com/Smoose-bv/whmcspy
Author: Smoose BV
License: GPL-3
Description: # WHMCSpy
        
        WHMCSpy is a Python interface to the WHMCS REST API.
        
        [![PyPI version](https://badge.fury.io/py/whmcspy.svg)](https://badge.fury.io/py/whmcspy)
        [![Documentation Status](https://readthedocs.org/projects/whmcspy/badge/?version=latest)](https://whmcspy.readthedocs.io/en/latest/?badge=latest)
        
        ## Usage
        
        Create a WHMCS interface with the API URL and credentials and use it to
        call the API.
        
        ```python
        import whmcspy
        
        whmcs = whmcspy.WHMCS(
            'https://example.com/whmcs/includes/api.php',
            'identifier',
            'secret')
        whmcs.accept_order(2)
        ```
        
Keywords: whmcs api library
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
