#!/usr/bin/env python3


import os
import pathlib
execution_path = os.path.abspath(os.getcwd())
msg_creator_path = os.path.dirname(os.path.abspath(__file__))


print(f'execute -  ExecutorManager --messageCreatorDriverPath {msg_creator_path}/ScrapingMessageCreator.py --workersBasePath {msg_creator_path} --logstdout True')

if __name__ == '__main__':
    os.system(
        f'ExecutorManager --messageCreatorDriverPath {msg_creator_path}/ScrapingMessageCreator.py --workersBasePath {msg_creator_path} --logstdout True')
