#!/usr/bin/python

import os
import pkgutil

package = pkgutil.get_loader("beatle")
os.chdir(package.filename)
os.system('python start.py')
