view Applications/Samples/StoneSampleCommands_generate.py @ 846:17423d072a95

Changed http timeouts in new-style Oracle commands to 60 secs (10 secs was too short for big requests)
author Benjamin Golinvaux <bgo@osimis.io>
date Sat, 15 Jun 2019 20:37:12 +0200
parents b1377625e4ba
children
line wrap: on
line source

import sys
import os

# add the generation script location to the search paths
sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'Resources', 'CodeGeneration'))

# import the code generation tooling script
import stonegentool

schemaFile = os.path.join(os.path.dirname(__file__), 'StoneSampleCommands.yml')
outDir = os.path.dirname(__file__)

# ignition!
stonegentool.Process(schemaFile, outDir)