Skip to main content

Nested Imports for Python

Project description

Nested Imports (Nimp)

Allows nested imports, a la Java. Nimp installs a harmless meta import-hook that adds support for nested packages, i.e., multiple packages that “live” under a common namespace. This is the idiom in Java, where you have packages like com.foo.bar.spam and com.foo.bar.eggs, as well as in Haskell and several other languages. Nimp basically allows packages to “inject” themselves into shared namespaces.

Compatible with Python 2.3-2.7 and 3.0 and up.

You can read more about nimp and __lazy__ on my blog.

Usage

import nimp
nimp.install()

You can add these two lines to your site.py script, so you’ll get Nimp out of the box.

Benefits

  • Allows for distributing “plug-in” packages independently: consider a project like twisted, made of several add-on packages (but without hacking distutils too much).

  • A project may depend on package X.Y without having to depend on X.

  • These nested-packages can be found anywhere on your python path (they don’t have to be located in the same directory)

  • A small (less than 100 LoC) standalone module that does all the magic for you – no third-party cooperation required.

Example Layout

Consider the following directory structure, somewhere on your python path (say, site-packages):

site-packages/

  com-ibm-storage/
    files...

  com-ibm-storage-plugins/
    files...

  com-ibm-pythontools/
    files...

After calling nimp.install(), the following imports will work as expected:

import com                              # a namespace package (empty)
import com.ibm                          # a namespace package (empty)
import com.ibm.pythontools              # a real package
com.ibm.pythontools.myfunc(1,2,3)

# and of course `from x import y` works too
from com.ibm.storage import ScsiDisk

# note how the `plugins` package is "injected" into `storage`
from com.ibm.storage.plugins import MySQLPlugin

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nimp-0.9.2.tar.gz (3.9 kB view hashes)

Uploaded Source

Built Distribution

nimp-0.9.2.win32.exe (202.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page