FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-lambda/aws_lambda/__init__.py at master · nficano/python-lambda · GitHub
This repository was archived by the owner on Mar 15, 2026. It is now read-only.
nficano
/
python-lambda
Public archive
Notifications
You must be signed in to change notification settings
Fork
227
Star
1.5k
Code
Issues
42
Pull requests
25
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
python-lambda
/
aws_lambda
/
__init__.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
28 lines (22 loc) · 531 Bytes
Breadcrumbs
python-lambda
/
aws_lambda
/
__init__.py
Copy path
File metadata and controls
28 lines (22 loc) · 531 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# flake8: noqa
__author__
=
"Nick Ficano"
__email__
=
"nficano@gmail.com"
__version__
=
"11.8.0"
from
.
aws_lambda
import
(
deploy
,
deploy_s3
,
invoke
,
init
,
build
,
upload
,
cleanup_old_versions
,
)
# Set default logging handler to avoid "No handler found" warnings.
import
logging
try
:
# Python 2.7+
from
logging
import
NullHandler
except
ImportError
:
class
NullHandler
(
logging
.
Handler
):
def
emit
(
self
,
record
):
pass
logging
.
getLogger
(
__name__
).
addHandler
(
NullHandler
())
Back
|
FazBrowse Home
|
New Git URL