from app import create_app, db
from app.models.learning import VocationalContent

def check_automotive():
    app = create_app('development')
    with app.app_context():
        count = VocationalContent.query.filter_by(category='Automotive').count()
        print(f"Automotive: {count} videos")

if __name__ == '__main__':
    check_automotive()
