#!/usr/bin/env python
from importlib import import_module
if __name__ == '__main__':
	module = import_module("social-analyzer")
	module.main_logic()
