예제 #1
0
def templer():
    s =  cc.api_init_options()
    cc.check_configuration_file(s)
    for i in sys.argv[1:]:
        cc.api_add_param(s,str(i))
    #very mandatory for keeping a track of pythonapi call. Always must be set.
    cc.my_pythonapi(s, callback)
    
    compile_ret = cc.compile_params(s,len(sys.argv[1:]));
    
    #very mandatory for keeping a track of pythonapi call. Always must be called so that the program knows that the call is from pythonapi.
    cc.call_from_python_api(s)

    start_ret = cc.api_start(s);
예제 #2
0
파일: api_testing.py 프로젝트: nish2323/CC
def main():
    options = init_ccextractor(callback)
    cc.api_start(options)
예제 #3
0
import ccextractor as cc
import os
import time
import sys
s = cc.api_init_options()
cc.check_configuration_file(s)
for i in sys.argv[1:]:
    cc.api_add_param(s, str(i))
#cc.setstdout(s)
compile_ret = cc.compile_params(s, len(sys.argv[1:]))
start_ret = cc.api_start(s)
#print cc.cc_to_python_get_subs_number_of_lines()
#printing python_subs.subs
#for item in xrange(cc.cc_to_python_get_subs_number_of_lines()):
#    print cc.cc_to_python_get_sub(item)

#os.system('clear')