- Contains the host code with a protocol implementation, data analyser and web-based visualiser
14 lines
257 B
Python
Executable File
14 lines
257 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Quick start script for MiniProfiler."""
|
|
|
|
import sys
|
|
import os
|
|
|
|
# Add parent directory to path
|
|
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
from miniprofiler.cli import main
|
|
|
|
if __name__ == '__main__':
|
|
main()
|