added pg_setting_export_example_enhanced.py and new method list_vpgs_from_exported_settings in vpgs.py

This commit is contained in:
Kosta Mushkin
2025-04-23 21:50:01 -04:00
parent ba16ef9a08
commit 6a8b9b18fc
575 changed files with 210139 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/Users/kostamushkin/Library/CloudStorage/OneDrive-HewlettPackardEnterprise/Work/Projects/Zerto/demos/recover-zerto/zvml-python-sdk/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())