File size: 255 Bytes
5cefadd
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from handler import EndpointHandler

# init handler
my_handler = EndpointHandler(path=".")

# prepare sample payload
test_payload = 'test.transcript.vtt'

# test the handler
test_pred=my_handler(test_payload)

# show results
print("test_pred", test_pred)