Skip to main content
https://img.shields.io/pypi/v/shellingham.svg

Shellingham detects what shell the current Python executable is running in.

Usage

>>> import shellingham
>>> shellingham.detect_shell()
('bash', '/bin/bash')

detect_shell pokes around the process’s running environment to determine what shell it is run in. It returns a 2-tuple:

  • The shell name, always lowercased.

  • The command used to run the shell.

ShellDetectionFailure is raised if detect_shell fails to detect the surrounding shell.

Notes

  • The shell name is always lowercased.

  • On Windows, the shell name is the name of the executable, minus the file exetension.

  • Currently the command only contains the executable name on Windows, even if the command is invoked by the full path. This may change in the future.

Notes for Application Developers

Remember, your application’s user is not necessarily using a shell. Shellingham raises ShellDetectionFailure if there is no shell to detect, but your application should almost never do this to your user.

A practical approach to this is to wrap detect_shell in a try block, and provide a sane default on failure:

try:
    shell = shellingham.detect_shell()
except shellingham.ShellDetectionFailure:
    shell = provide_default()

There are a few choices for you to choose from.

  • The POSIX standard mandates the environment variable SHELL to refer to “the user’s preferred command language interpreter”. This is always available (even if the user is not in an interactive session), and likely the correct choice to launch an interactive sub-shell with.

  • A command sh is almost guarenteed to exist, likely at /bin/sh, since several POSIX tools rely on it. This should be suitable if you want to run a (possibly non-interactive) script.

  • All versions of DOS and Windows have an environment variable COMSPEC. This can always be used to launch a usable command prompt (e.g. cmd.exe on Windows).

Here’s a simple implementation to provide a default shell:

import os

def provide_default():
    if os.name == 'posix':
        return os.environ['SHELL']
    elif os.name == 'nt':
        return os.environ['COMSPEC']
    raise NotImplementedError(f'OS {os.name!r} support not available')

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

shellingham-1.3.2.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

shellingham-1.3.2-py2.py3-none-any.whl (12.0 kB view details)

Uploaded Python 2Python 3

File details

Details for the file shellingham-1.3.2.tar.gz.

File metadata

  • Download URL: shellingham-1.3.2.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.8.0

File hashes

Hashes for shellingham-1.3.2.tar.gz
Algorithm Hash digest
SHA256 576c1982bea0ba82fb46c36feb951319d7f42214a82634233f58b40d858a751e
MD5 778b7dfd2ffb4b1ba41f21d3cb2148fc
BLAKE2b-256 4bf039516ebeaca978d6607609a283b15e7637622faffc5f01ecf78a49b24cd5

See more details on using hashes here.

File details

Details for the file shellingham-1.3.2-py2.py3-none-any.whl.

File metadata

  • Download URL: shellingham-1.3.2-py2.py3-none-any.whl
  • Upload date:
  • Size: 12.0 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.8.0

File hashes

Hashes for shellingham-1.3.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 7f6206ae169dc1a03af8a138681b3f962ae61cc93ade84d0585cca3aaf770044
MD5 2060cfabde47d4c2c9817bfa998f0cf4
BLAKE2b-256 9f6b160e80c5386f7820f0a9919cc9a14e5aef2953dc477f0d5ddf3f4f2b62d0

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