Skip to content

Instantly share code, notes, and snippets.

Created July 25, 2017 14:07
Show Gist options
  • Save anonymous/c1c28d607df7d3da0e939380f88ee577 to your computer and use it in GitHub Desktop.
Save anonymous/c1c28d607df7d3da0e939380f88ee577 to your computer and use it in GitHub Desktop.
__init__.py created by britodfbr - https://repl.it/Jh4X/0
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment