Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Cloud Functions
  • Comparing with other Yandex Cloud services
    • Overview
    • Managing dependencies
    • Request handler
    • Invocation context
    • Logging
    • Error handling
    • Using the SDK
  • Tools
  • Pricing policy
  • Access management
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Public materials
  • Release notes
  • FAQ
  1. Developing in Python
  2. Overview

Developing in Python. Overview

Written by
Yandex Cloud
Improved by
Updated at May 19, 2026

With Cloud Functions, you can run applications written in Python.

This service provides several runtimes with different versions. We do not recommend using runtime versions that are no longer supported.

Name Python version Operating
system
Preloaded Supported
python37 3.7.13 Ubuntu 18.04 No No
python38 3.8.13 Ubuntu 18.04 No No
python39 3.9.11 Ubuntu 18.04 No No
python311 3.11.0 Ubuntu 18.04 No No
python312 3.12.0 Ubuntu 22.04 LTS Yes Yes
python314 3.14.0 Ubuntu 22.04 LTS Yes Yes

Note

A function may behave differently in preloaded and standard runtimes. To learn about function behavior, see Preloaded runtime environment.

You can use the SDK library to work with the Yandex Cloud API. To install it, specify the dependency in the requirements.txt file. The SDK library is pre-installed in the python37 and python38 runtimes. For more information, see Using the SDK.

Cloud Functions automatically installs all the specified dependencies required for the function. Dependencies are installed when creating a new function version. For more information, see Managing Python function dependencies.

The runtime automatically loads your code and invokes the request handler you specified. It receives the incoming request and the invocation context as arguments. The context contains additional information about the function parameters.

Cloud Functions automatically captures the application's standard output streams and sends them to the centralized logging system in Yandex Cloud. This system also logs entries about the start and end of each function execution, as well as any errors that occur during execution. For more information about the log format, see Python function runtime logging.

To learn more about programming in Python or using its constructs, see the official Python documentation.

Was the article helpful?

Previous
Using the SDK
Next
Managing dependencies
© 2026 Direct Cursus Technology L.L.C.