Skip to main content

Python module that allows a packaged module to run properly as a script

Project description

PkgScript (version 0.6)

Python module that allows a packaged module to run properly as a script.

It imports the enclosing package(s) into the script, allowing the script to import other modules from the same package family (using explicit relative or absolute import statements).

!!!
import_parent_packages() must be called before any package-sibling imports
!!!

Examples:

Milo.mod_script.py

import pkgscript
# Only call function if module is being run as a script
if (__name__ == "__main__") and (__package__ is None):
    pkgscript.import_parent_packages("Milo", globals())
from Milo.version import __version__
from .version import __version__    # same as previous line

top_pkg.sub_pkg.sub_sub_pkg.mod_script.py

import pkgscript
# Only call function if module is being run as a script
if (__name__ == "__main__") and (__package__ is None):
    pkgscript.import_parent_packages(
        "top_pkg.sub_pkg.sub_sub_pkg", globals())
# Import top_pkg.sub_pkg.other_module
from top_pkg.sub_pkg import other_module
from .. import other_module    # same as previous line
from ...sub_pkg import other_module    # same as previous line

ALS.Milo.mod_script.py

import pkgscript
# Only call function if module is being run as a script
if (__name__ == "__main__") and (__package__ is None):
    pkgscript.import_parent_packages("als.milo", globals())
from als.milo import __version__, __date__
from . import __version__, __date__    # same as previous line

Installation

Install from PyPI

PkgScript can be installed from PyPI using pip. The following example shows how.

>> sudo python -m pip install PkgScript -vv

Credits

This software is adapted from helpful code posted by @vaultah
(https://gist.github.com/vaultah/d63cb4c86be2774377aa674b009f759a)
in response to a question on Stack Overflow
(https://stackoverflow.com/a/28154841/9639441)

License

This software is released under The MIT License (MIT).

Copyright (c) 2018, 2020-2021, Padraic Shafer

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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

PkgScript-0.6.1.tar.gz (25.8 kB view details)

Uploaded Source

File details

Details for the file PkgScript-0.6.1.tar.gz.

File metadata

  • Download URL: PkgScript-0.6.1.tar.gz
  • Upload date:
  • Size: 25.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/2.7.18

File hashes

Hashes for PkgScript-0.6.1.tar.gz
Algorithm Hash digest
SHA256 298b2674f6cb24a29ff26b401eac8291e07a994bfde81641c77a64ea1b6baa90
MD5 e2498e56a3c684a8e4e3647ba288d0bb
BLAKE2b-256 cb7bb2980c18dfe21ced052c637a9beeb975967e896ec71d8c7c3dd5071c8826

See more details on using hashes here.

Supported by

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