PyBEN Parallels repository is an easy to use python utility class for Parallels server solution
Project description
PyBenParallels
Introduction
PyBEN Parallels repository is an easy to use python utility class for Parallels server solution
Installation
python -m pip install pybenparallels
Use
Cli module activation
Run for a full help printout:
python -m pybenparallels -h
The class can be run on remote location via SSH or Locally by leaving the PARALLELS_HOST empty
- pybenparallels is the name of the module
- pprint is a function to print the returned dict nicely in console
- get_vms is a function to return all vms (or request a specific one)
Example use for LOCAL to get all vms and a specific one:
python -m pybenparallels pprint get_vms
python -m pybenparallels pprint get_vms vm_name=ventura
Example for REMOTE SERVER use of global variables to get all vms: Use PARALLELS_CLI_EXEC when you need to override the execution line to overcome ssh context restrictions.
set PARALLELS_HOST='1.1.1.1'
set PARALLELS_HOST_USER='root'
set PARALLELS_HOST_PASS='1234'
set PARALLELS_CLI_EXEC='. ~/.zprofile; prlctl'
python -m pybenparallels pprint get_vms
Example for passing variables directly for REMOTE SERVER:
- pybenparallels is the name of the module
- get_vms is a function to return all vms (or request a specific one)
python -m pybenparallels host=1.1.1.1 host_user=root host_password=1234 get_vms vm_name=ventura
Python import ProxmoxCls class
from pybenparallels import ParallelsCLI
# For remote server (connection via ssh)
server = ParallelsCLI(host='1.1.1.1', host_user='root', host_password='1234')
server.cli_exec = '. ~/.zprofile; prlctl' # Sometimes the ssh user does not have the correct python3 in PATH
print(server.get_vms())
# For local use, when you are running on the parallel server
print(ParallelsCLI().get_vms())
Some of the included functions:
- get_vms: Returns a full list of vms, or list with matching vms by uuid or name
- run_command: Execute a command on the parallels cli
- send_vm_command: prlctl exec ...
- send_vm_command_by_ssh
- create_vms
- delete_vm
- start_vm
- stop_vm
- pause_vm
- resume_vm
- snapshot handling
- and more ...
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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 pybenparallels-1.0.2.tar.gz.
File metadata
- Download URL: pybenparallels-1.0.2.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c2794503e62c969c0284161073aec6a1b6ccab9ab466b29a42adbb4471805ad
|
|
| MD5 |
c7b37fdc5ebff95d8feaa7dc9284bda1
|
|
| BLAKE2b-256 |
81823c8dcfef89350d44e58987bfda4692bd05667185a2c13efe996dcca10516
|
File details
Details for the file pybenparallels-1.0.2-py3-none-any.whl.
File metadata
- Download URL: pybenparallels-1.0.2-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54636cf856de81a14dccc1821bcbb617a3375d10098684080b1478b5346840c4
|
|
| MD5 |
93fd898f76ab7e69dabdef6b433f5150
|
|
| BLAKE2b-256 |
538d8866f8f3f58a039e208b5cf34d22471b478137a21f09283ee537b32b3e91
|