A python package making it easy to drop a multi-module package from sys.modules
Project description
Installation
You can either download or clone this repo, or alternatively you can install this module using pip:
pip install blackout
Overview
Blackout is a small micro-module which makes it easier to completely forget packages. This is particularly useful when working with packages made up of multiple sub-modules.
And example might be:
/site-packages/foo/__init__.py
/site-packages/foo/bar.py
If bar.py has a function called foo() within it, and we change that function then it is not enough to reload foo, we must specifically reload foo as well as foo.bar.
When working with packages with any modules this can be time consuming and problematic - particularly when developing within a host which is persistent.
Blackout helps, because we can unload the package in its entirety in a single line using:
```blackout.drop('foo')```
This will remove any hold to foo as well as any submodules of foo. In this
case we can simply call import foo
again, knowing that everything
within that package is being loaded fresh.
Compatability
This has been tested under Python 2.7.13 and Python 3.6.6 under both Windows and Ubuntu.
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
File details
Details for the file blackout-1.0.4.tar.gz
.
File metadata
- Download URL: blackout-1.0.4.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bf0eec6be86205ab39a52586bad5dbe4eb268432bb956786469f5f37a2285bf |
|
MD5 | 4bf765c4ca71646573bd606e687a1d9f |
|
BLAKE2b-256 | 8e83aea10c50604c7266a82fd4cc8bc9805f08fb7162ce7ffaf65222ce83d341 |