cdk-lambda-layer-wget


Namecdk-lambda-layer-wget JSON
Version 2.0.423 PyPI version JSON
download
home_pagehttps://github.com/clarencetw/cdk-lambda-layer-wget.git
SummaryLambda Layer for wget
upload_time2023-06-13 01:52:00
maintainer
docs_urlNone
authorclarencetw<mr.lin.clarence@gmail.com>
requires_python~=3.7
licenseApache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # AWS Lambda Layer with wget

[![NPM version](https://badge.fury.io/js/cdk-lambda-layer-wget.svg)](https://badge.fury.io/js/cdk-lambda-layer-wget)
[![PyPI version](https://badge.fury.io/py/cdk-lambda-layer-wget.svg)](https://badge.fury.io/py/cdk-lambda-layer-wget)
![Release](https://github.com/clarencetw/cdk-lambda-layer-wget/workflows/release/badge.svg)
[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/clarencetw/cdk-lambda-layer-wget)

Usage:

```python
// WgetLayer bundles the wget in a lambda layer
import { WgetLayer } from 'cdk-lambda-layer-wget';

declare const fn: lambda.Function;
fn.addLayers(new WgetLayer(this, 'WgetLayer'));
```

```python
import { WgetLayer } from 'cdk-lambda-layer-wget'
import * as lambda from 'aws-cdk-lib/aws-lambda'

new lambda.Function(this, 'MyLambda', {
  code: lambda.Code.fromAsset(path.join(__dirname, 'my-lambda-handler')),
  handler: 'index.main',
  runtime: lambda.Runtime.PYTHON_3_9,
  layers: [new WgetLayer(this, 'WgetLayer')]
});
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/clarencetw/cdk-lambda-layer-wget.git",
    "name": "cdk-lambda-layer-wget",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "~=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "clarencetw<mr.lin.clarence@gmail.com>",
    "author_email": "",
    "download_url": "",
    "platform": null,
    "description": "# AWS Lambda Layer with wget\n\n[![NPM version](https://badge.fury.io/js/cdk-lambda-layer-wget.svg)](https://badge.fury.io/js/cdk-lambda-layer-wget)\n[![PyPI version](https://badge.fury.io/py/cdk-lambda-layer-wget.svg)](https://badge.fury.io/py/cdk-lambda-layer-wget)\n![Release](https://github.com/clarencetw/cdk-lambda-layer-wget/workflows/release/badge.svg)\n[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/clarencetw/cdk-lambda-layer-wget)\n\nUsage:\n\n```python\n// WgetLayer bundles the wget in a lambda layer\nimport { WgetLayer } from 'cdk-lambda-layer-wget';\n\ndeclare const fn: lambda.Function;\nfn.addLayers(new WgetLayer(this, 'WgetLayer'));\n```\n\n```python\nimport { WgetLayer } from 'cdk-lambda-layer-wget'\nimport * as lambda from 'aws-cdk-lib/aws-lambda'\n\nnew lambda.Function(this, 'MyLambda', {\n  code: lambda.Code.fromAsset(path.join(__dirname, 'my-lambda-handler')),\n  handler: 'index.main',\n  runtime: lambda.Runtime.PYTHON_3_9,\n  layers: [new WgetLayer(this, 'WgetLayer')]\n});\n```\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Lambda Layer for wget",
    "version": "2.0.423",
    "project_urls": {
        "Homepage": "https://github.com/clarencetw/cdk-lambda-layer-wget.git",
        "Source": "https://github.com/clarencetw/cdk-lambda-layer-wget.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51081f8f5e1454bd8c57d1f270115d9bde41d26db1e8d7527e5c5e1ad907a296",
                "md5": "1e1af19ba30bb199c03c10d3827409de",
                "sha256": "6de2167caecc2498b14bfcabd27a9c3e81ef312f595fb07838964092e0c33ad0"
            },
            "downloads": -1,
            "filename": "cdk_lambda_layer_wget-2.0.423-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1e1af19ba30bb199c03c10d3827409de",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.7",
            "size": 6021246,
            "upload_time": "2023-06-13T01:52:00",
            "upload_time_iso_8601": "2023-06-13T01:52:00.488648Z",
            "url": "https://files.pythonhosted.org/packages/51/08/1f8f5e1454bd8c57d1f270115d9bde41d26db1e8d7527e5c5e1ad907a296/cdk_lambda_layer_wget-2.0.423-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-13 01:52:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "clarencetw",
    "github_project": "cdk-lambda-layer-wget",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cdk-lambda-layer-wget"
}
        
Elapsed time: 0.16796s