Automatically set the __package__ attribute of a script.
Project description
set-package-attribute
Run modules inside packages as scripts. Automatically sets the __package__
attribute of any script which imports it and calls the initialization function
set_package_attribute.init()
. This allows the script to use explicit relative
imports, which fail otherwise.
For full documentation, see https://abarker.github.io/set-package-attribute.
Also available on PyPI for installation with pip.
Brief usage summary
To use the package just import it before any of the non-system files, inside any
module that you might want to run as a script, and call the init
function.
These statements should be inside a guard conditional, so that they only run
when the module is executed as a script:
if __name__ == "__main__": import set_package_attribute set_package_attribute.init()
The guard conditional is not required if the module is only ever run as a
script, i.e., if it is never imported by any module. The init
function must
be called before any explicit relative imports, and before importing any
modules from within the same package which themselves use such imports.
If you are happy with the default init
arguments then there is a shortcut
import which automatically calls init
for you:
if __name__ == "__main__": import set_package_attribute_magic
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
File details
Details for the file set-package-attribute-0.2.5.tar.gz
.
File metadata
- Download URL: set-package-attribute-0.2.5.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da1de44d1122563dab0a65e1286ae37b723ef823b5165e736b4153a7b5decb3d |
|
MD5 | 65b84e78ed3ac32f3ab4cd673e6cbd07 |
|
BLAKE2b-256 | 23e2fce046df45a3b795cb99849a2e74a300cacb2d56a7c5e5627a7a005d4a57 |