Metadata-Version: 2.1
Name: python-transip
Version: 0.1.0
Summary: Wrapper for the TransIP API
Home-page: https://github.com/roaldnefs/python-transip
Author: Roald Nefs
Author-email: info@roaldnefs.com
License: LGPLv3
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
Requires-Dist: requests (>=2.25.1)

# 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'
```

[![CI Tests](https://github.com/roaldnefs/python-transip/workflows/tests/badge.svg?event=push)](https://github.com/roaldnefs/python-transip/actions)
[![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

API Reference and User Guide available on [Read the Docs](https://python-transip.readthedocs.io/).


