nimp 0.9.2
Nested Imports for Python
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.
Note
distutils has problems with directory names that contain dots (as in com.ibm.storage), so Nimp supports either dots or hyphens (e.g., com-ibm-storage). This allows you to distribute your package nicely, using commonplace distribution mechanisms.
The recommended way is to use hyphens, but you may continue to use dots, as was the case in previous versions. However, never mix dots and hyphens (e.g., com.ibm-storage) -- it will not work.
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
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| nimp-0.9.2.tar.gz (md5) | Source | 2011-06-15 | 3KB | 293 | |
| nimp-0.9.2.win32.exe (md5) | MS Windows installer | any | 2011-06-15 | 197KB | 151 |
- Author: Tomer Filiba
- Home Page: http://github.com/tomerfiliba/nimp
- Keywords: import hook,nested packages,namespace packages,java-like packages
- License: MIT
-
Categories
- Development Status :: 4 - Beta
- Intended Audience :: Developers
- License :: OSI Approved :: MIT License
- Operating System :: OS Independent
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.3
- Programming Language :: Python :: 2.4
- Programming Language :: Python :: 2.5
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.0
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.2
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: Python Modules
- Package Index Owner: gangesmaster
- DOAP record: nimp-0.9.2.xml
