# dev_environment.py at site-packages """ For checking whether the code is executed on the public or local server >>> try: ... from dev_environment import * ... except: ... is_dev_environment = False ... """ is_dev_environment = True