Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s3rgeym/cpanel-api
CPanel API Client for Python
https://github.com/s3rgeym/cpanel-api
api client cpanel uapi
Last synced: about 2 months ago
JSON representation
CPanel API Client for Python
- Host: GitHub
- URL: https://github.com/s3rgeym/cpanel-api
- Owner: s3rgeym
- Created: 2020-08-07T02:52:00.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-26T23:55:26.000Z (over 2 years ago)
- Last Synced: 2024-10-06T12:37:33.792Z (3 months ago)
- Topics: api, client, cpanel, uapi
- Language: Python
- Homepage:
- Size: 37.1 KB
- Stars: 9
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CPanel API Client for Python
[![Downloads](https://pepy.tech/badge/cpanelapi)](https://pepy.tech/project/cpanelapi)
[![Downloads](https://pepy.tech/badge/cpanelapi/month)](https://pepy.tech/project/cpanelapi)
[![Downloads](https://pepy.tech/badge/cpanelapi/week)](https://pepy.tech/project/cpanelapi)Supports cPanel API 2 and UAPI.
## Install
```zsh
$ pip install cpanel-api
```## Examples
Basic usage:
```python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import logging
import sysfrom pprint import pprint
from cpanel_api import CPanelApi
logging.basicConfig(level=logging.WARNING, stream=sys.stderr)
hostname = 'HOSTNAME_OR_IPADRESS'
username = 'USERNAME'
password = 'PASSWORD'client = CPanelApi(hostname, username, password)
# Alternatively, to authenticate using a UAPI or cPanel API 2 token, use:
# client = CPanelApi(hostname, username, '', auth_type = 'utoken')# {'warnings': None, 'errors': None, 'data': {'port': '1243'}, 'metadata': {}, 'status': 1, 'messages': None}
r = client.uapi.SSH.get_port()
print('SSH port:', r.data.port)
# get all public ssh keys
# {'cpanelresult': {'postevent': {'result': 1}, 'apiversion': 2, 'data': [...], 'func': 'listkeys', 'event': {'result': 1}, 'module': 'SSH', 'preevent': {'result': 1}}}
r = client.cpanel2.SSH.listkeys()
pprint(r.cpanelresult.data)
# retrieve key
r = client.cpanel2.SSH.fetchkey(name='id_rsa')
# {"name": "id_rsa", "key": "ssh-rsa XXX"}
print(r.cpanelresult.data[0].key)
r = client.cpanel2.SSH.importkey(name='new_rsa.pub', key='*data*')
pprint(r)
# ...
r = client.cpanel2.DomainLookup.getdocroot(domain='site.info')
print(r.cpanelresult.data[0].reldocroot) # public_html
```Function call syntax:
```python
client.api_version.ModuleName.function_name({'param': 'value'})
client.api_version.ModuleName.function_name(param='value')
client.api_version.ModuleName.function_name({'param': 'value'}, param='value')
client.api_cal('api_version', 'ModuleName', 'function_name', {'param': 'value'}, param='value')
```Where `api_version` is `cpanel2` or `uapi`.
## Links:
- [Official documentation](https://documentation.cpanel.net/display/DD/Developer+Documentation+Home).