Metadata-Version: 2.1
Name: python-transip
Version: 0.0.1
Summary: Wrapper for the TransIP API
Home-page: https://github.com/roaldnefs/python-transip
Author: Roald Nefs
Author-email: info@roaldnefs.com
License: LGPLv3
Description: # python-transip
        
        **python-transip** is an Python wrapper for the TransIP REST API.
        
        ```python
        >>> from transip import TransIP
        >>> client = TransIP(access_token="REDACTED")
        >>> domains = client.domains.list()
        >>> domain = domains[0]
        >>> domain.registrationDate
        '2011-04-29'
        ```
        
        [![Downloads](https://pepy.tech/badge/python-transip/month)](https://pepy.tech/project/python-transip/month)
        [![Supported Versions](https://img.shields.io/pypi/pyversions/python-transip.svg)](https://pypi.org/project/python-transip)
        [![Contributors](https://img.shields.io/github/contributors/roaldnefs/python-transip.svg)](https://github.com/roaldnefs/python-transip/graphs/contributors)
        
        ## Installing python-transip and Supported Versions
        
        **python-transip** is available on PyPI:
        
        ```console
        $ python -m pip install python-transip
        ```
        
        **python-transip** officially supports Python 3.6+.
        
        ## Documentation
        
        See the [docs folder](docs/index.rst) for more detailed instructions and additional documentation.
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6.12
Description-Content-Type: text/markdown
