MCPcopy Create free account
hub / github.com/ashfawk/oceanhazard-detection / create_data_directories

Function create_data_directories

setup_python.py:63–68  ·  view source on GitHub ↗

Create necessary data directories

()

Source from the content-addressed store, hash-verified

61 return False
62
63def create_data_directories():
64 """Create necessary data directories"""
65 directories = ["data", "data/processed", "data/raw", "data/models"]
66 for directory in directories:
67 os.makedirs(directory, exist_ok=True)
68 print(f"✅ Created directory: {directory}")
69
70def test_imports():
71 """Test if all modules can be imported"""

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected