Entering content frame

 Python: Example 1 

Example of calling the Loader with Python Script

Build a Python module with reference to the Python Libraries,
parse the call arguments:

 

# Reference to the Python Libraries
# ---------------------------------

import sys
import loader

# Parse the call arguments
# --------------------------

user_name = sys.argv [1]
password = sys.argv [2]
database_name = sys.argv [3]
data_path = sys.argv[4]
server_node = ''

 

Leaving content frame