Files
firefly_reports/run_file_creator.py
2026-05-27 13:58:05 +10:00

12 lines
345 B
Python

#!/usr/bin/env python3
"""Direct Python runner to create all files without shell execution"""
import sys
import os
# Change to project directory
os.chdir(r'C:\Users\Nabeel\Nextcloud\Projects\firefly_reports')
# Import and run the create_all_files script
import create_all_files
print("\n✅ All source files created successfully!")