Skip to content

Instantly share code, notes, and snippets.

@takluyver
Last active February 22, 2017 12:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takluyver/73cf4e7e7cff4d95f3b23ea80d59bcab to your computer and use it in GitHub Desktop.
Save takluyver/73cf4e7e7cff4d95f3b23ea80d59bcab to your computer and use it in GitHub Desktop.
Debug Python namespace packages
"""Script to debug problems with namespace packages.
Set the PACKAGE variable below and run this script with the same Python you're having problems with.
"""
from __future__ import print_function
# Set this to the name of the namespace package you're having problems with
PACKAGE = "backports"
import glob
import os
import sys
try:
mod = __import__(PACKAGE)
except ImportError:
print("Could not import", PACKAGE)
mod = None
else:
print("mod:", mod)
print()
try:
path = mod.__path__
except AttributeError:
print("No attribute __path__")
else:
print("%s.__path__ = %r" % (PACKAGE, path))
for directory in sys.path:
candidate = os.path.join(directory, PACKAGE)
if os.path.isdir(candidate):
print()
print("-- Found", candidate, '--')
print("Files:", sorted(os.listdir(candidate)))
init_py = os.path.join(candidate, '__init__.py')
if os.path.isfile(init_py):
print('__init__.py contains:')
with open(init_py, 'r') as f:
print(f.read())
else:
print('No __init__.py found')
pkg_files = glob.glob(os.path.join(directory, '*.pkg'))
for pkg_file in pkg_files:
print()
print("-- Found pkg file:", pkg_file, '--')
with open(pkg_file, 'r') as f:
print(f.read())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment