File size: 476 Bytes
e8510d3
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import sys
sys.path.append('/run/media/julian/ML2/Python/bos-network/daily-psalms-api')
import bible
import logging

logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s')

# Test the process_json_files function
results = bible.process_json_files(40, 40, 5642, "1,-1", 0, "en", True, True, True)
print("Results:")
for i, result in enumerate(results):
    print(f"Result {i}:")
    for k, v in result.items():
        print(f"  {k}: {v}")