cloud-foundry is a curated set of cloud components that can be used to assemble cloud-based applications.
Project description
Cloud Foundry
Cloud Foundry is a curated collection of components that can be assembled to build cloud-centric applications.
Component Library
Cloud Foundry compoenents are organized into four catagories.
@startuml
skinparam componentStyle rectangle
' Distribution layer
package "Distribution" {
[CDN] as cdn
}
' Origins layer
package "Origins" {
[Rest API] as restApi
[Site Bucket] as siteBucket
[Document Buckets] as documentBuckets
[Websocket API] as websocketApi
}
' Logic layer
package "Logic" {
[Functions] as functions
[Workflow] as workflow
}
' Messaging layer
package "Messaging" {
[Publisher] as snsTopic
[Subscriber] as sqsQueue
}
' Connections
cdn --> restApi
cdn --> siteBucket
cdn --> documentBuckets
cdn --> websocketApi
restApi --> functions
websocketApi --> functions
workflow --> functions
functions --> snsTopic
snsTopic --> sqsQueue
@enduml
- Distribution:
-
- CDN - content delivery can be connected to multiple origins (Rest API, Site Bucket, Document Buckets, and WebSocket API).
- Origins: Elements in this layer provide content, consists of backend resources like
-
- Rest API,
-
- Site Bucket
-
- Document Bucket
-
- WebSocket API , which are the origins that CloudFront interacts with.
- Logic: Application logic is implemented using Functions or Workflows
-
- Functions Performe atomic operations or processes.
-
- Workflows handles longer processes that span multiple operations.
- Messaging: Asynchronous communication is handled by messaging services. Elements provided follow a pub-sub model allowing.
-
- Publisher
-
- Subscriber
Set Up
To get started, you can import the package and use it within your Pulumi project. Below is an example demonstrating how to deploy an AWS REST API along with a Lambda function using Cloud Foundry components.
Hello World Example
The following example deploys an AWS REST API along with a Lambda function that returns a greeting message. This implementation consists of three parts. The API specification, the Function handler, and the Cloud Foundry deployment code.
1. API Specification
The first component required to build a REST API with Cloud Foundry is the API specification. This OpenAPI specification serves as the foundation for the API. When constructing a REST API, integrations with functions must be linked to the path operations defined in the API specification. Additionally, authorizer functions can be associated with the API to provide authentication and authorization for these path operations.
In this example the API specification is a single path operation /greet. This operation accepts an optional query parameter name and returns a greeting message. If the name parameter is not provided, it defaults to "World."
# api_config.yaml
openapi: 3.0.3
info:
description: A simple API that returns a greeting message.
title: Greeting API
version: 1.0.0
paths:
/greet:
get:
summary: Returns a greeting message.
description: |
This endpoint returns a greeting message. It accepts an optional
query parameter `name`. If `name` is not provided, it defaults to "World".
parameters:
- in: query
name: name
schema:
type: string
description: The name of the person to greet.
example: John
responses:
200:
description: A greeting message.
content:
application/json:
schema:
type: object
properties:
message:
type: string
description: The greeting message.
example: Hello, John!
400:
description: Bad Request - Invalid query parameter.
content:
application/json:
schema:
type: object
properties:
error:
type: string
description: A description of the error.
example: Invalid query parameter
2. Lambda Function
In this step, we implement the logic for the path operations of our API.
For the example application, this logic is handled by a Python Lambda function that implements the /greet API endpoint. The function retrieves the name parameter from the query string and returns a greeting message in JSON format.
# app.py
import json
def handler(event, context):
print(f"event: {event}")
# Extract the 'name' parameter from the query string; default to 'World'
name = (event.get("queryStringParameters", None) or {}).get("name", "World")
# Return a JSON response with the greeting message
return {
"statusCode": 200,
"body": json.dumps({
"message": f"Hello, {name}!"
}),
"headers": {
"Content-Type": "application/json"
}
}
3. Deploying with Cloud Foundry
The final step in implementing the API is deploying it using Cloud Foundry.
For the example, we need to create a Python function and then set up a REST_API with an integration that connects the function to the specified path operation.
Cloud Foundry simplifies much of the process for building functions. For Python functions, you typically only need to specify the sources and requirements. Cloud Foundry then takes care of assembling and deploying the function automatically.
For instance, the function for the /greet path operation can be defined as:
greet_function = cloud_foundry.python_function(
"greet-function",
sources={"app.py": "./greet_app.py"}
)
In this example, Cloud Foundry copies the file ./greet_app.py into the function code as app.py during the build process.
Cloud Foundry offers default settings such as the handler, memory size, and others, which can be customized as needed.
Next, we set up a Cloud Foundry rest_api. Here, we provide the api_spec.yaml file and define an integration between the /greet path operation and the greet-function. The function is defined inline within the integration.
The complete REST API deployment looks like this:
# __main__.py
greet_api = cloud_foundry.rest_api(
"greet-oauth-api",
body="./api_spec.yaml",
integrations=[
{
"path": "/greet",
"method": "get",
"function": cloud_foundry.python_function(
"greet-function",
handler="app.handler",
sources={"app.py": "./greet_app.py"}
),
},
],
)
Conclusion
Cloud Foundry simplifies the process of deploying cloud-native applications by providing easy-to-use components for defining REST APIs and Lambda functions. This example demonstrates how to deploy a basic API that returns a greeting message using Pulumi and Cloud Foundry.
Cloud Foundry API Reference
Function (Component Resource)
The Function class creates an AWS Lambda function resource with additional configuration options, such as memory size, timeout, environment variables, and optional VPC configuration. This class allows creating a new Lambda function or importing an existing one based on the provided parameters.
Example Usage
import pulumi
from cloud_foundry.function import Function
# Example of creating a new Lambda function
lambda_function = Function(
name="my-lambda-function",
archive_location="path/to/lambda-code.zip",
handler="app.handler",
runtime="python3.9",
memory_size=256,
timeout=60,
environment={"MY_ENV_VAR": "my-value"},
vpc_config={
"subnet_ids": ["subnet-12345678", "subnet-87654321"],
"security_group_ids": ["sg-12345678"]
}
)
Constructor
def __init__(
self,
name: str,
*,
archive_location: str = None,
hash: str = None,
runtime: str = None,
handler: str = None,
timeout: int = None,
memory_size: int = None,
environment: dict[str, str] = None,
actions: list[str] = None,
vpc_config: dict = None,
opts=None,
)
Parameters
-
name(str) – The name of the Lambda function. This will be used as part of the function's identifier. -
archive_location(str, optional) – Path to the zip file containing the Lambda function's code. -
hash(str, optional) – A hash of the Lambda function's code to manage changes. -
runtime(str, optional) – The runtime environment for the Lambda function (e.g.,python3.9). -
handler(str, optional) – The handler method to be used as the entry point for the Lambda function (e.g.,app.handler). -
timeout(int, optional) – The amount of time that Lambda allows a function to run before stopping it. The default is 3 seconds. -
memory_size(int, optional) – The amount of memory (in MB) allocated to the Lambda function. The default is 128 MB. -
environment(dict[str, str], optional) – Key-value pairs of environment variables to set for the Lambda function. -
actions(list[str], optional) – A list of additional IAM actions to be included in the Lambda function's execution role. -
vpc_config(dict, optional) – Configuration for the VPC settings of the Lambda function, such as:subnet_ids(list[str]) – The list of subnet IDs for the VPC configuration.security_group_ids(list[str]) – The list of security group IDs for the VPC configuration.
-
opts(pulumi.ResourceOptions, optional) – Additional options that control the behavior of this resource.
Properties
-
invoke_arn(pulumi.Output[str]) – The ARN of the Lambda function's invoke URL. -
function_name(pulumi.Output[str]) – The name of the created Lambda function.
Methods
function Helper Method
The function helper method provides a simplified interface to create a new Lambda function using the Function class.
def function(
name: str,
*,
archive_location: str = None,
hash: str = None,
runtime: str = None,
handler: str = None,
timeout: int = None,
memory_size: int = None,
environment: dict[str, str] = None,
actions: list[str] = None,
vpc_config: dict = None,
opts=None,
) -> Function:
Example Usage
import cloud_foundry
lambda_function = cloud_foundry.function(
name="my-lambda-function",
archive_location="path/to/lambda-code.zip",
handler="app.handler",
runtime="python3.9",
memory_size=256,
timeout=60,
environment={"MY_ENV_VAR": "my-value"},
vpc_config={
"subnet_ids": ["subnet-12345678", "subnet-87654321"],
"security_group_ids": ["sg-12345678"]
}
)
Parameters
Refer to the Function constructor parameters, as the helper method accepts the same arguments and passes them to the Function class.
Outputs
The Lambda function creates the following outputs:
invoke_arn– The ARN that can be used to invoke the Lambda function.function_name– The name of the Lambda function.
python_function
Creates an AWS Lambda function using Python with source code and dependencies packaged together.
The python_function component is responsible for creating and deploying an AWS Lambda function using Python source code. This function wraps the creation of a Lambda function by first packaging the source code and any required Python dependencies using the PythonArchiveBuilder and then deploying it via Pulumi's AWS Lambda resources.
Example Usage
import pulumi
import cloud_foundry
# Create a Lambda function
lambda_function = cloud_foundry.python_function(
name="example-function",
handler="app.handler", # Lambda handler function (app.py's handler function)
memory_size=128, # Memory size for the Lambda
timeout=60, # Timeout in seconds
sources={
"app.py": "./app.py", # Source files
},
requirements = [
"requests==2.27.1", # Python package dependencies
],
environment={
"MY_ENV_VAR": "value", # Environment variables for the Lambda
},
)
Arguments
| Name | Type | Description |
|---|---|---|
name |
str |
The name of the AWS Lambda function to create. |
handler |
str, optional |
The entry point for the Lambda function, specified as file_name.function_name. Defaults to"app.handler" |
memory_size |
int, optional |
The memory allocated to the Lambda function in MB. Defaults to AWS Lambda's standard memory size. |
timeout |
int, optional |
The maximum amount of time that the Lambda function can run, in seconds. Defaults to AWS Lambda's timeout. |
sources |
dict[str, str], optional |
A dictionary of source files or inline code to include in the Lambda. The keys are destination paths, and the values are the source file paths or inline code. |
requirements |
list[str], optional |
A list of Python package dependencies to include. These are installed and packaged with the function. |
environment |
dict[str, str], optional |
Environment variables to pass to the Lambda function. |
Returns
Function: An instance of theFunctionclass representing the deployed Lambda function, including properties likeinvoke_arnandfunction_name.
Components
PythonArchiveBuilder: Packages the Python source files and dependencies into a deployable archive for the Lambda function.Function: A PulumiComponentResourcethat defines and manages the AWS Lambda function deployment.
Attributes
| Name | Description |
|---|---|
invoke_arn |
The ARN used to invoke the deployed Lambda function. |
function_name |
The name of the deployed Lambda function. |
Resources Created
- AWS Lambda Function: A new Lambda function created with the given source files, dependencies, memory size, timeout, handler, and environment variables.
- IAM Role: The required IAM role is created to grant the Lambda function execution permissions.
Notes
- Memory Size and Timeout: You can customize the memory size and timeout for the Lambda function. AWS charges are affected by these values.
- Sources and Requirements: The
sourcesargument is used to include Python source code, andrequirementsis used to specify the dependencies to be installed in the Lambda function environment. - Environment Variables: The
environmentargument allows you to set environment variables for the Lambda function at runtime.
See Also
rest_api (Helper Function)
The rest_api function simplifies the creation and management of an AWS API Gateway REST API with Lambda integrations and authorizers. It allows you to define your API using an OpenAPI specification and attach Lambda functions to specific path operations. Additionally, it supports Lambda authorizers for authentication and authorization.
Example Usage
import pulumi
import cloud_foundry
# Create the REST API
greet_api = cloud_foundry.rest_api(
name="greet-api",
body="./api_spec.yaml",
integrations=[
{
"path": "/greet",
"method": "get",
"function": cloud_foundry.python_function(
name="greet-function",
handler="app.handler",
sources={"app.py": "./greet_app.py"},
),
}
],
authorizers=[
{
"name": "token-authorizer",
"type": "token",
"function": cloud_foundry.import_function("token-authorizer"),
}
]
)
Function Signature
def rest_api(name, body, integrations=None, authorizers=None, opts=None)
Parameters
name(str): The name of the REST API.body(Union[str, list[str]]): The OpenAPI specification file path or the content of the OpenAPI spec. This can be a string representing a file path or YAML content.integrations(Optional[list[dict]]): A list of Lambda function integrations for specific path operations in the API. Each integration is a dictionary containing:path(str): The API path to integrate with the Lambda function.method(str): The HTTP method for the path.function(cloud_foundry.Function): The Lambda function to be integrated with the API path.
authorizers(Optional[list[dict]]): A list of Lambda authorizers used for authentication in the API. Each authorizer is a dictionary containing:name(str): The name of the authorizer.type(str): The type of authorizer (e.g.,token).function(cloud_foundry.Function): The Lambda function used for the authorizer.
opts(Optional[pulumi.ResourceOptions]): Options to control the resource's behavior.
# define the OpenAPI specification for the application
api_spec = """
openapi: 3.0.3
info:
description: A simple API that returns a greeting message.
title: Greeting API
version: 1.0.0
paths:
/greet:
get:
summary: Returns a greeting message.
description: |
This endpoint returns a greeting message. It accepts an optional
query parameter `name`. If `name` is not provided, it defaults to "World".
parameters:
- in: query
name: name
schema:
type: string
description: The name of the person to greet.
example: John
security:
- oauth_authorizer: []
responses:
200:
description: A greeting message.
content:
application/json:
schema:
type: object
properties:
message:
type: string
description: The greeting message.
example: Hello, John!
400:
description: Bad Request - Invalid query parameter.
content:
application/json:
schema:
type: object
properties:
error:
type: string
description: A description of the error.
example: Invalid query parameter
"""
rest_api = cloud_foundry.rest_api(
name="example-api",
body=api_spec,
integrations=[
{
"path": "/hello",
"method": "get",
"function": cloud_foundry.python_function(
name="hello-function",
handler="app.handler",
sources={"app.py": "./hello_app.py"},
),
}
],
authorizers=[
{
"name": "oauth-authorizer",
"type": "token",
"function": cloud_foundry.import_function("oauth-authorizer"),
}
]
)
rest_api = cloud_foundry.rest_api(
name="example-api",
body="./api_spec.yaml",
integrations=[
{
"path": "/hello",
"method": "get",
"function": cloud_foundry.python_function(
name="hello-function",
handler="app.handler",
sources={"app.py": "./hello_app.py"},
),
}
],
authorizers=[
{
"name": "oauth-authorizer",
"type": "token",
"function": cloud_foundry.import_function("oauth-authorizer"),
}
]
)
The rest_api function simplifies the creation of an API Gateway REST API by using the RestAPI component. It also automatically exports the API Gateway host and API ID.
Example Usage
import pulumi
from cloud_foundry.rest_api import rest_api
# Define Lambda function integration for the "/greet" path
integrations = [
{
"path": "/greet",
"method": "get",
"function": cloud_foundry.python_function(
name="greet-function",
handler="app.handler",
sources={"app.py": "./greet_app.py"},
),
}
]
# Create the API Gateway REST API
greet_api = rest_api(
name="greet-api",
body="./api_spec.yaml",
integrations=integrations,
)
Parameters
name(str) - The name of the REST API.body(str) - The OpenAPI specification file path. This can be a string or YAML content.integrations(Optional[list[dict]]) - A list of Lambda function integrations for the API paths.authorizers(Optional[list[dict]]) - A list of Lambda authorizers for the API.
Example
greet_api = rest_api(
name="greet-api",
body="./api_spec.yaml",
integrations=[
{
"path": "/greet",
"method": "get",
"function": cloud_foundry.python_function(
name="greet-function",
handler="app.handler",
sources={"app.py": "./greet_app.py"},
),
}
],
)
Outputs
name-id(str) - The ID of the created API Gateway REST API.name-host(str) - The host URL of the created API Gateway REST API.
document_repository Function Documentation
The document_repository function is a utility designed to create a centralized document repository. It enables clients and services to store, retrieve, and manage documents efficiently within an S3 bucket.
This repository simplifies handling document-related operations by providing optional event notifications that can trigger Lambda functions or workflows. The function streamlines the setup process by creating the S3 bucket, configuring Lambda triggers, and managing the required IAM permissions.
Function Signature
def document_repository(name, bucket_name: str = None, notifications=None, opts=None):
return DocumentRepository(name, bucket_name, notifications, opts)
Parameters
-
name(str, required):- The name of the document repository.
- This name is used to create the S3 bucket and associated resources.
-
bucket_name(str, optional):- The name of the S3 bucket to be created.
- If not provided, a default name is generated using the format:
<project>-<stack>-<name>.
-
notifications(list of dict, optional):- A list of notification configurations for Lambda triggers.
- Each notification is a dictionary with the following keys:
function(required): The Lambda function to trigger.prefix(optional): A prefix filter for the S3 object key (e.g.,"uploads/").suffix(optional): A suffix filter for the S3 object key (e.g.,".jpg").
-
opts(pulumi.ResourceOptions, optional):- Additional options for the Pulumi resource, such as parent-child relationships or custom dependencies.
Returns
- An instance of the
DocumentRepositoryclass, which includes:- The created S3 bucket.
- Configured Lambda notifications (if provided).
- IAM role and permissions for the Lambda functions.
Features
-
S3 Bucket Creation:
- Creates an S3 bucket with the specified or default name.
-
Lambda Notifications:
- Configures S3 bucket notifications to trigger Lambda functions on specific events (e.g., object creation or deletion).
- Supports prefix and suffix filters for fine-grained control over which objects trigger the Lambda function.
-
IAM Role Management:
- Automatically creates an IAM role for the Lambda function with the necessary permissions.
-
Pulumi Integration:
- Fully integrated with Pulumi, allowing for seamless infrastructure as code (IaC) management.
Example Usage
Basic S3 Bucket Creation
from cloud_foundry.pulumi.document_repository import document_repository
# Create a simple S3 bucket
bucket = document_repository(name="my-doc-repo")
S3 Bucket with Lambda Notifications
from cloud_foundry.pulumi.document_repository import document_repository
from pulumi_aws import lambda_
# Define a Lambda function
my_lambda = lambda_.Function(
"my-lambda",
runtime="python3.9",
handler="handler.main",
code=pulumi.AssetArchive({
".": pulumi.FileArchive("./lambda_code"),
}),
)
# Create an S3 bucket with Lambda notifications
bucket = document_repository(
name="my-doc-repo",
notifications=[
{
"function": my_lambda,
"prefix": "uploads/",
"suffix": ".jpg",
}
],
)
Custom Bucket Name
bucket = document_repository(
name="my-doc-repo",
bucket_name="custom-bucket-name",
)
Generated Resources
-
S3 Bucket:
- A new S3 bucket is created with the specified or default name.
-
Bucket Notifications:
- Configures S3 bucket notifications to trigger Lambda functions on specified events.
-
IAM Role:
- An IAM role is created for the Lambda function with the necessary permissions.
-
Lambda Permissions:
- Grants the S3 bucket permission to invoke the Lambda function.
Best Practices
-
Use Prefix and Suffix Filters:
- Use
prefixandsuffixfilters to limit the objects that trigger the Lambda function, reducing unnecessary invocations.
- Use
-
Secure IAM Roles:
- Ensure that the IAM role created for the Lambda function has only the necessary permissions.
-
Test Lambda Functions:
- Test the Lambda functions independently before attaching them to the S3 bucket to ensure they handle events correctly.
Limitations
-
Single Bucket:
- This function creates a single S3 bucket. For multiple buckets, you need to call the function multiple times.
-
Notification Configuration:
- Notifications are limited to the events and filters supported by S3.
Conclusion
The document_repository function simplifies the creation of an S3 bucket with optional Lambda notifications and IAM role management. It is a powerful tool for managing document repositories in AWS using Pulumi.
cdn Function Documentation
The cdn function is a utility for creating a Content Delivery Network (CDN) using AWS CloudFront, Route 53, and ACM (AWS Certificate Manager). It simplifies the process of deploying a CDN for serving static websites, APIs, and other content with custom domains, SSL/TLS certificates, and advanced caching and logging features.
Function Signature
def cdn(name: str, sites=None, apis=None, hosted_zone_id=None, site_domain_name=None, create_apex=False, root_uri=None, error_responses=None, whitelist_countries=None):
return CDN(name, CDNArgs(sites, apis, hosted_zone_id, site_domain_name, create_apex, root_uri, error_responses, whitelist_countries))
Parameters
-
name(str, required):- The name of the CDN resource.
- Used to name the CloudFront distribution, Route 53 records, and other associated resources.
-
sites(list, optional):- A list of static site configurations to be served by the CDN.
- Each site is defined as a dictionary with properties like
nameandis_target_origin.
-
apis(list, optional):- A list of API configurations to be served by the CDN.
- Each API is defined as a dictionary with properties like
nameandrest_api.
-
hosted_zone_id(str, optional):- The Route 53 hosted zone ID for managing DNS records.
-
site_domain_name(str, optional):- The domain name for the site (e.g.,
example.comorwww.example.com).
- The domain name for the site (e.g.,
-
create_apex(bool, optional):- Whether to create an apex domain (e.g.,
example.com). - Defaults to
False.
- Whether to create an apex domain (e.g.,
-
root_uri(str, optional):- The default root object for the CDN (e.g., index.html).
-
error_responses(list, optional):- Custom error responses for the CloudFront distribution.
-
whitelist_countries(list, optional):- A list of countries allowed to access the CDN.
Returns
- An instance of the
CDNclass, which includes:- The created CloudFront distribution.
- Configured Route 53 DNS records.
- ACM certificates for HTTPS.
- S3 bucket for logging (if enabled).
Features
-
CloudFront Distribution:
- Configures a CloudFront distribution to serve content from S3 buckets or APIs.
- Supports custom caching, geo-restrictions, and error responses.
-
Custom Domains:
- Configures Route 53 DNS records and ACM certificates for custom domains (e.g.,
example.comandwww.example.com).
- Configures Route 53 DNS records and ACM certificates for custom domains (e.g.,
-
SSL/TLS Certificates:
- Automatically provisions ACM certificates for HTTPS.
-
Logging:
- Creates an S3 bucket for storing CloudFront logs.
-
Multi-Origin Support:
- Supports multiple origins, including static sites and APIs.
-
Geo-Restrictions:
- Restricts access to specific countries.
Example Usage
Basic CDN Setup
from cloud_foundry.pulumi.cdn import cdn
cdn_instance = cdn(
name="my-cdn",
sites=[
{"name": "static-site", "is_target_origin": True},
],
apis=[
{"name": "my-api", "rest_api": my_api_gateway},
],
hosted_zone_id="Z1234567890ABC",
site_domain_name="example.com",
create_apex=True,
root_uri="index.html",
)
CDN for Static Sites Only
cdn_instance = cdn(
name="static-cdn",
sites=[
{"name": "static-site", "is_target_origin": True},
],
hosted_zone_id="Z1234567890ABC",
site_domain_name="static.example.com",
)
CDN with Geo-Restrictions
cdn_instance = cdn(
name="geo-restricted-cdn",
sites=[
{"name": "restricted-site", "is_target_origin": True},
],
hosted_zone_id="Z1234567890ABC",
site_domain_name="restricted.example.com",
whitelist_countries=["US", "CA", "GB"],
)
Best Practices
-
Use Custom Domains:
- Configure
site_domain_nameandhosted_zone_idto serve content with custom domains.
- Configure
-
Enable Logging:
- Use the logging bucket to monitor and debug CDN traffic.
-
Optimize Caching:
- Configure caching behaviors to improve performance and reduce costs.
-
Restrict Access:
- Use
whitelist_countriesto restrict access to specific regions.
- Use
Limitations
-
Single Hosted Zone:
- The implementation assumes all domains are managed within a single Route 53 hosted zone.
-
Static and API Origins:
- Supports static sites and APIs as origins but does not include advanced origin failover configurations.
Conclusion
The cdn function simplifies the deployment of a Content Delivery Network using AWS CloudFront, Route 53, and ACM. It supports static sites, APIs, custom domains, and advanced features like logging and geo-restrictions. This function is ideal for building scalable, secure, and performant web applications.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cloud_foundry-0.1.3.tar.gz.
File metadata
- Download URL: cloud_foundry-0.1.3.tar.gz
- Upload date:
- Size: 70.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2849e4e1c5d2c3cc272357e13b047e1a993d2ed82f46555cfc1def59fbc38cb0
|
|
| MD5 |
08fb4e3117440bccf2a1de531996d322
|
|
| BLAKE2b-256 |
a63f4d5ba82ac8f60377d2336661061cbb06d7c6746ff7ca89a71890cb37cada
|
File details
Details for the file cloud_foundry-0.1.3-py3-none-any.whl.
File metadata
- Download URL: cloud_foundry-0.1.3-py3-none-any.whl
- Upload date:
- Size: 81.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6453920fe7a825f8985e44cb7934dc4cf8af1dd558c62a547f8c77d45ba5f86
|
|
| MD5 |
4b2493b15e4ce0ccf9ce09b4207a67a3
|
|
| BLAKE2b-256 |
f2353510842801ac873138811abb7973791a0a48d2e85be3d417e4d10e871219
|