vote up 3 vote down star
1

In Python, a namespace package allows you to spread Python code among several projects. This is useful when you want to release related libraries as separate downloads. For example, with the directories Package-1 and Package-2 in PYTHONPATH,

Package-1/namespace/__init__.py
Package-1/namespace/module1/__init__.py
Package-2/namespace/__init__.py
Package-2/namespace/module2/__init__.py

the end-user can import namespace.module1 and import namespace.module2.

What's the best way to define a namespace package so more than one Python product can define modules in that namespace?

flag

3 Answers

vote up 3 vote down check

There's a standard module, called pkgutil, with which you can 'append' modules to a given namespace.

With the directory structure you've provided:

Package-1/namespace/__init__.py
Package-1/namespace/module1/__init__.py
Package-2/namespace/__init__.py
Package-2/namespace/module2/__init__.py

You should put those two lines in Package-2/namespace/__init__.py:

from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)

From now on, you should be able to distribute those two packages independently.

link|flag
What are the pros and cons of using that versus import__('pkg_resources').declare_namespace(__name) ? – joeforker Nov 4 at 20:11
First, __import__ is considered bad style in this case as it can be easily replaced with plain import statement. More to the point, pkg_resources is a non-standard library. It comes with setuptools, so that's a non-issue, though. Quick googling reveals that pkgutil was introduced in 2.5 and pkg_resources predates it. Nevertheless, pkgutil is a oficially-recognized solution. pkg_resources inclusion was, in fact, rejected in PEP 365. – Mike Hordecki Nov 4 at 21:17
Their functionality is probably the same, though, as zope.interface uses both in it's __init__.py. – Mike Hordecki Nov 4 at 21:19
vote up 2 vote down

You have your Python namespace concepts back to front, it is not possible in python to put packages into modules. Packages contain modules not the other way around.

A Python package is simply a folder containing a __init__.py file. A module is any other file in a package (or directly on the PYTHONPATH) that has a .py extension. So in your example you have two packages but no modules defined. If you consider that a package is a file system folder and a module is file then you see why packages contain modules and not the other way around.

So in your example assuming Package-1 and Package-2 are folders on the file system that you have put on the Python path you can have the following:

Package-1/
  namespace/
  __init__.py
  module1.py
Package-2/
  namespace/
  __init__.py
  module2.py

You now have one package namespace with two modules module1 and module2. and unless you have a good reason you should probably put the modules in the folder and have only that on the python path like below:

Package-1/
  namespace/
  __init__.py
  module1.py
  module2.py
link|flag
I'm talking about things like zope.x where a bunch of related packages are released as separate downloads. – joeforker Nov 4 at 18:53
Ok, but what is the effect you are trying to achieve. If the folders containing related packages all on the PYTHONPATH the Python interpreter will find them for you with no extra effort on your part. – Tendayi Mawushe Nov 4 at 19:00
vote up 2 vote down

This section should be pretty self-explainatory.

In short, put that namespace code in init.py, update setup.py to declare namespace and you are free to go.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.