#!/usr/bin/env python3
import sys
sys.path.insert(0, '/home/gabslocked/Desktop/Projetos/Images/video_automation')
from config import load_character_template

t = load_character_template('skeleton')
print('Name:', t.name)
print('Hard prohibitions:', len(t.hard_prohibitions))
print('Has clothing_rule:', bool(t.clothing_rule))
print('Has anatomical_highlight_rules:', bool(t.anatomical_highlight_rules))
print('Physical desc length:', len(t.physical_description))
