Source code for pyrit.common.notebook_utils

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.


[docs] def is_in_ipython_session() -> bool: """Determines if the code is running in an IPython session. This may be useful if the behavior of the code should change when running in an IPython session. For example, the code may display additional information or plots when running in an IPython session. Returns: bool: True if the code is running in an IPython session, False otherwise. """ try: __IPYTHON__ # type: ignore return True except NameError: return False