The Python SDK for Digital.ai Deploy
Project description
Python SDK for Digital.ai Deploy.
Usage
import xldeploy
config = xldeploy.Config(protocol="http", host="localhost", port="4516", context_path="deployit", username="admin", password="admin")
# If you are using url
config = xldeploy.Config.initialize(url="http://localhost:4516/deployit", username="admin", password="admin")
# If you are using proxies
config = xldeploy.Config(protocol="http", host="localhost", port="4516", context_path="deployit", username="admin", password="admin", proxy_host="localhost", proxy_port=8080, proxy_username="proxyUsername", proxy_password="proxyPassword")
# If you are using PAT (Personal Access Token) authentication
config = xldeploy.Config(protocol="http", host="localhost", port="4516", context_path="deployit", token="dpa_xxxxx", authentication_method="pat")
# or
config = xldeploy.Config()
client = xldeploy.Client(config)
# repository
repository = client.repository
print(repository.exists("Applications/EC2/1.0/ec2"))
print(repository.exists("Applications/EC2/1.0/wrong"))
ci = repository.read("Applications/EC2/1.0/ec2")
print(ci.amiId)
# deployment
deployment = client.deployment
deploymentRef = deployment.prepare_initial("Applications/NIApp/1.0", "Environments/awsEnv")
depl = deployment.prepare_auto_deployeds(deploymentRef)
task = deployment.create_task(depl)
task.start()
print(task.task_id)
# Deployfile
## Apply Deployfile script.
import re
from os import path
deployfile = client.deployfile
deploy_file = open('deploy_file_path', 'rb').read()
file_names = re.findall('upload\([\'|"](.*)[\'|"]\)', deploy_file.decode("utf-8"))
files_to_upload = [path.abspath(path.join(path.abspath(path.join(file_path, "..")), name)) for name in file_names]
deployfile.apply('deploy_file_path',files_to_upload)
## POST of multiple multipart-encoded binary files
Based on Python [requests](https://pypi.python.org/pypi/requests) module, see [docs](http://docs.python-requests.org/en/master/user/advanced/#advanced)
## Generate Deployfile script.
deployfile = client.deployfile
deployfile.generate([Environments/directory1,Environments/directory1])
Installing from the PyPi repository
$ pip install xldeploy-py
Installing package directly from source
$ cd xldeploy-py $ pip install --editable .
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
xldeploy_py-0.0.22.tar.gz
(13.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file xldeploy_py-0.0.22.tar.gz.
File metadata
- Download URL: xldeploy_py-0.0.22.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74e5dbfb847a4c1bd4ca41236d802a8636482006de2a6de6532ce8d53898d375
|
|
| MD5 |
5fd41f7526f70fe26e7273ab9e50fd99
|
|
| BLAKE2b-256 |
db387c6bcbe1764810986e2500ca0536f35e87a2728f6139575dd99320e0671c
|
File details
Details for the file xldeploy_py-0.0.22-py3-none-any.whl.
File metadata
- Download URL: xldeploy_py-0.0.22-py3-none-any.whl
- Upload date:
- Size: 18.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
712898cca609d57ac8ca99fccbba1460bded13dfab9a7aee90755506b74c63a7
|
|
| MD5 |
c12c46699368e23ed526ccb692edeef0
|
|
| BLAKE2b-256 |
8345a3acd89f0424b7ad37b620409a87b0b7ae455095a0de150ddabeccf857a6
|