HCE Project Python language Distributed Tasks Manager Application, Distributed Crawler Application and client API bindings.  2.0.0-chaika
Hierarchical Cluster Engine Python language binding
json-checker.py
Go to the documentation of this file.
1 #!/usr/bin/python
2 
3 
4 '''
5 Created on Apr 2, 2014
6 
7 @package: dtm
8 @author: scorp
9 @link: http://hierarchical-cluster-engine.com/
10 @copyright: Copyright © 2013-2014 IOIX Ukraine
11 @license: http://hierarchical-cluster-engine.com/license/
12 @since: 0.1
13 '''
14 
15 import ppath
16 from ppath import sys
17 
18 from jchecker.JsonChecker import JsonChecker
19 
20 jsonChecker = JsonChecker()
21 
22 
23 try:
24  jsonChecker.setup()
25  jsonChecker.run()
26 finally:
27  jsonChecker.close()
JsonChecker Class contents main functional of JsonChecker application, class inherits from foundation...
Definition: JsonChecker.py:30