Release v0.1.2 (What’s new?).

Documentation Status https://github.com/MacHu-GWU/which_runtime-project/actions/workflows/main.yml/badge.svg https://codecov.io/gh/MacHu-GWU/which_runtime-project/branch/main/graph/badge.svg https://img.shields.io/pypi/v/which-runtime.svg https://img.shields.io/pypi/l/which-runtime.svg https://img.shields.io/pypi/pyversions/which-runtime.svg https://img.shields.io/badge/✍️_Release_History!--None.svg?style=social&logo=github https://img.shields.io/badge/⭐_Star_me_on_GitHub!--None.svg?style=social&logo=github
https://img.shields.io/badge/Link-API-blue.svg https://img.shields.io/badge/Link-Install-blue.svg https://img.shields.io/badge/Link-GitHub-blue.svg https://img.shields.io/badge/Link-Submit_Issue-blue.svg https://img.shields.io/badge/Link-Request_Feature-blue.svg https://img.shields.io/badge/Link-Download-blue.svg

Welcome to which_runtime Documentation

https://which-runtime.readthedocs.io/en/latest/_static/which_runtime-logo.png

In modern software development, especially in cloud and DevOps environments, the same codebase often runs across multiple runtime environments. The which_runtime library provides a powerful, centralized solution for detecting and managing different computational contexts.

What is a Runtime?

A runtime is a specific computational environment where your code executes. This could be:

  • Local development machine

  • Cloud environments (AWS Lambda, EC2, Batch)

  • Continuous Integration (CI) platforms (GitHub Actions, CodeBuild)

  • Development environments (Cloud9)

  • Containerized environments

Why Runtime Detection Matters

Different runtimes often require different configurations and behaviors:

  • Authentication methods vary (local AWS CLI profiles vs. IAM roles)

  • Resource access differs between environments

  • Logging and monitoring approaches change

  • Environment-specific optimizations

Key Features

  • Detect runtime environment with simple boolean checks

  • Support for multiple runtime types (local, cloud, CI)

  • Lightweight and easy to integrate

  • Helps create adaptive, environment-aware code

Quick Example

from which_runtime.api import runtime

if runtime.is_aws_lambda:
    # Lambda-specific configuration
    use_lambda_credentials()
elif runtime.is_local:
    # Local development setup
    use_local_aws_profile()

Install

which_runtime is released on PyPI, so all you need is to:

$ pip install which-runtime

To upgrade to latest version:

$ pip install --upgrade which-runtime

Table of Content

About the Author

(\ (\
( -.-)o
o_(")(")

Sanhe Hu is a seasoned software engineer with a deep passion for Python development since 2010. As an author and maintainer of 150+ open-source Python projects, with over 15 million monthly downloads, I bring a wealth of experience to the table. As a Senior Solution Architect and Subject Matter Expert in AI, Data, Amazon Web Services, Cloud Engineering, DevOps, I thrive on helping clients with platform design, enterprise architecture, and strategic roadmaps.

Talk is cheap, show me the code:

API Document