When I create a file with pycharm I want it to automatically have the following lines
from __future__ import unicode literals
import logging
from common import const
log = logging.getLogger(__name__)
Is it possible to do this? These are the common lines in all project files




