Skip to content

Commit

Permalink
Added main module detection and command line construction, now should…
Browse files Browse the repository at this point in the history
… show the right name (instead of __main__.py) when called for modules

Co-Authored-By: Henry Fredrick Schreiner <[email protected]>
  • Loading branch information
KOLANICH and henryiii committed Dec 23, 2021
1 parent a11ba7f commit 5542532
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
10 changes: 8 additions & 2 deletions plumbum/cli/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@

import functools
import os
import re
import sys
from collections import defaultdict
from textwrap import TextWrapper

from plumbum import colors, local
from plumbum.cli.i18n import get_translation_for
from plumbum.lib import getdoc, six
from plumbum.lib import getdoc, six, get_main_module_frame

from .switches import (
CountOf,
Expand Down Expand Up @@ -79,6 +80,7 @@ def __repr__(self):
# CLI Application base class
# ===================================================================================================

main_module_ending_rx = re.compile("\.__main__$")

class Application(object):
"""The base class for CLI applications; your "entry point" class should derive from it,
Expand Down Expand Up @@ -184,7 +186,11 @@ def __init__(self, executable):
# Filter colors

if self.PROGNAME is None:
self.PROGNAME = os.path.basename(executable)
spec = get_main_module_frame().f_globals.get("__spec__", None)
if spec:
self.PROGNAME = " ".join(("python -m", main_module_ending_rx.sub("", spec.name)))
else:
self.PROGNAME = os.path.basename(executable)
elif isinstance(self.PROGNAME, colors._style):
self.PROGNAME = self.PROGNAME | os.path.basename(executable)
elif colors.filter(self.PROGNAME) == "":
Expand Down
9 changes: 9 additions & 0 deletions plumbum/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,3 +177,12 @@ def read_fd_decode_safely(fd, size=4096):
if i == 3:
raise
data += os.read(fd.fileno(), 1)

def get_main_module_frame():
"""
Gets the frame of the __main__ module (the one which is called with command line) of an app.
"""
fr = sys._getframe(0)
while fr and fr.f_globals["__name__"] != "__main__":
fr = fr.f_back
return fr

0 comments on commit 5542532

Please sign in to comment.