Skip to content

Commit 694f4e6

Browse files
author
Keyur
committed
Initial Commit: AWS Lambda SDK
Initial Commit: AWS Lambda SDK
0 parents  commit 694f4e6

File tree

11 files changed

+1270
-0
lines changed

11 files changed

+1270
-0
lines changed

.gitignore

Lines changed: 204 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,204 @@
1+
2+
# Created by https://www.gitignore.io/api/python,osx,windows,intellij
3+
4+
README.rst
5+
6+
### Python ###
7+
# Byte-compiled / optimized / DLL files
8+
__pycache__/
9+
*.py[cod]
10+
*$py.class
11+
12+
# C extensions
13+
*.so
14+
15+
# Distribution / packaging
16+
.Python
17+
env/
18+
build/
19+
develop-eggs/
20+
dist/
21+
downloads/
22+
eggs/
23+
.eggs/
24+
lib/
25+
lib64/
26+
parts/
27+
sdist/
28+
var/
29+
*.egg-info/
30+
.installed.cfg
31+
*.egg
32+
33+
# PyInstaller
34+
# Usually these files are written by a python script from a template
35+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
36+
*.manifest
37+
*.spec
38+
39+
# Installer logs
40+
pip-log.txt
41+
pip-delete-this-directory.txt
42+
43+
# Unit test / coverage reports
44+
htmlcov/
45+
.tox/
46+
.coverage
47+
.coverage.*
48+
.cache
49+
nosetests.xml
50+
coverage.xml
51+
*,cover
52+
.hypothesis/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
62+
# Flask stuff:
63+
instance/
64+
.webassets-cache
65+
66+
# Scrapy stuff:
67+
.scrapy
68+
69+
# Sphinx documentation
70+
docs/_build/
71+
72+
# PyBuilder
73+
target/
74+
75+
# IPython Notebook
76+
.ipynb_checkpoints
77+
78+
# pyenv
79+
.python-version
80+
81+
# celery beat schedule file
82+
celerybeat-schedule
83+
84+
# dotenv
85+
.env
86+
87+
# virtualenv
88+
.venv/
89+
venv/
90+
ENV/
91+
92+
# Spyder project settings
93+
.spyderproject
94+
95+
# Rope project settings
96+
.ropeproject
97+
98+
99+
### OSX ###
100+
*.DS_Store
101+
.AppleDouble
102+
.LSOverride
103+
104+
# Icon must end with two \r
105+
Icon
106+
107+
108+
# Thumbnails
109+
._*
110+
111+
# Files that might appear in the root of a volume
112+
.DocumentRevisions-V100
113+
.fseventsd
114+
.Spotlight-V100
115+
.TemporaryItems
116+
.Trashes
117+
.VolumeIcon.icns
118+
.com.apple.timemachine.donotpresent
119+
120+
# Directories potentially created on remote AFP share
121+
.AppleDB
122+
.AppleDesktop
123+
Network Trash Folder
124+
Temporary Items
125+
.apdisk
126+
127+
128+
### Windows ###
129+
# Windows image file caches
130+
Thumbs.db
131+
ehthumbs.db
132+
133+
# Folder config file
134+
Desktop.ini
135+
136+
# Recycle Bin used on file shares
137+
$RECYCLE.BIN/
138+
139+
# Windows Installer files
140+
*.cab
141+
*.msi
142+
*.msm
143+
*.msp
144+
145+
# Windows shortcuts
146+
*.lnk
147+
148+
149+
### Intellij ###
150+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
151+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
152+
153+
# All idea stuff:
154+
.idea/*
155+
156+
# User-specific stuff:
157+
.idea/workspace.xml
158+
.idea/tasks.xml
159+
.idea/dictionaries
160+
.idea/vcs.xml
161+
.idea/jsLibraryMappings.xml
162+
163+
# Sensitive or high-churn files:
164+
.idea/dataSources.ids
165+
.idea/dataSources.xml
166+
.idea/dataSources.local.xml
167+
.idea/sqlDataSources.xml
168+
.idea/dynamic.xml
169+
.idea/uiDesigner.xml
170+
171+
# Gradle:
172+
.idea/gradle.xml
173+
.idea/libraries
174+
175+
# Mongo Explorer plugin:
176+
.idea/mongoSettings.xml
177+
178+
## File-based project format:
179+
*.iws
180+
181+
## Plugin-specific files:
182+
183+
# IntelliJ
184+
/out/
185+
186+
# mpeltonen/sbt-idea plugin
187+
.idea_modules/
188+
189+
# JIRA plugin
190+
atlassian-ide-plugin.xml
191+
192+
# Crashlytics plugin (for Android Studio and IntelliJ)
193+
com_crashlytics_export_strings.xml
194+
crashlytics.properties
195+
crashlytics-build.properties
196+
fabric.properties
197+
198+
### Intellij Patch ###
199+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
200+
201+
# *.iml
202+
# modules.xml
203+
# .idea/misc.xml
204+
# *.ipr

0 commit comments

Comments
 (0)