12 lines
345 B
Python
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!")
|