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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file nimp-0.9.2.tar.gz
.
File metadata
- Download URL: nimp-0.9.2.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a512f3691aa4d4af1ff448f220deaacb5b6402061476856833392a2c76b9f6bc |
|
MD5 | 23d74ee72c0208e02c9bbee0f181d95f |
|
BLAKE2b-256 | 40dfccc932ce29f90d4efb52f401e434bb945697c9d8eac8d2da3aa469cde97b |
File details
Details for the file nimp-0.9.2.win32.exe
.
File metadata
- Download URL: nimp-0.9.2.win32.exe
- Upload date:
- Size: 202.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5dc47774afc528b661ca8af5ab0b6f854309c5ad4222f88568bac13016eb46f |
|
MD5 | a6f6ed5f7a04de158c8bed483e599fd3 |
|
BLAKE2b-256 | 502e1fb95e52564df24165ed632e93976fcba87140469e78a959a245d37c5a20 |