initial commit

This commit is contained in:
Kosta Mushkin
2025-05-22 10:10:15 -04:00
commit 3a075e5ecf
28 changed files with 1729 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
"""
Prerequisites package for Zerto Python SDK Hands-On Lab.
Contains configuration and common utilities.
"""
Binary file not shown.
+17
View File
@@ -0,0 +1,17 @@
# Zerto API Configuration
# Update these values with your ZVM details
# ZVM Connection Details
ZVM_HOST = "192.168.111.20" #"zvm.example.com"
ZVM_PORT = 443 # Default HTTPS port
ZVM_SSL_VERIFY = False # Set to False for self-signed certificates
# Keycloak Authentication
CLIENT_ID = "zerto-api" #"your-client-id"
CLIENT_SECRET = "q0GUcbK1olq2Op27cpjvTHT5scKeQWBy" # "your-client-secret"
# Optional: Proxy settings if needed
# PROXY = {
# "http": "http://proxy.example.com:8080",
# "https": "https://proxy.example.com:8080"
# }
+1
View File
@@ -0,0 +1 @@
+4
View File
@@ -0,0 +1,4 @@
requests>=2.31.0
python-keycloak>=2.8.0
urllib3>=2.0.0
python-dotenv>=1.0.0