-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathexamples.json
More file actions
86 lines (86 loc) · 3.57 KB
/
examples.json
File metadata and controls
86 lines (86 loc) · 3.57 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[
{
"name": "Hello World",
"description": "Simple Hello World Example in Python",
"path": "https://github.com/fission/examples/blob/main/python/hello.py",
"tag": ["Hello World","Python"],
"language": "Python"
},
{
"name": "Request-Response in Python",
"description": "Code to show how you can access the HTTP request fields, such as the body, headers and query.",
"path": "https://github.com/fission/examples/blob/main/python/requestdata.py",
"tag": ["Request Response", "Python"],
"language": "Python"
},
{
"name": "Changing Status Code",
"description": "Code to show how you can change the response status code",
"path": "https://github.com/fission/examples/blob/main/python/statuscode.py",
"tag": ["Request Response","Python"],
"language": "Python"
},
{
"name": "Multi File",
"description": "Working with multiple source files in Python",
"path": "https://github.com/fission/examples/tree/main/python/multifile",
"tag": ["Python"],
"language": "Python"
},
{
"name": "Guestbook",
"description": "Demonstration of using Python and Fission to create a serverless guestbook",
"path": "https://github.com/fission/examples/tree/main/python/guestbook",
"tag": ["Python","Application"],
"language": "Python"
},
{
"name": "Source Package",
"description": "Example of how to use the Fission Python Build environment to resolve (pip) dependencies before deploying the function.",
"path": "https://github.com/fission/examples/tree/main/python/sourcepkg",
"tag": ["Python","PIP"],
"language": "Python"
},
{
"name": "Voting App",
"description": "Fission based application to connect to a relational database like Postgres & perform basic operations",
"path": "https://github.com/fission/examples/tree/main/python/votingapp",
"tag": ["Python","Application","Database","PostgreSQL"],
"language": "Python"
},
{
"name": "OpenTelemetry Datadog",
"description": "Example to show how you can use Opentelemetry to send traces from your Fission functions to Datadog.",
"path": "https://github.com/fission/examples/tree/main/python/opentelemetry-datadog",
"tag": ["Python","Application","Observability","Opentelemetry","Datadog"],
"language": "Python"
},
{
"name": "Single Vs Monolith",
"description": "Example to show how you can create Fission applications using different architectures",
"path": "https://github.com/fission/examples/tree/main/python/SinglevsMonolith",
"tag": ["Python","Application","Architecture","Design"],
"language": "Python"
},
{
"name": "Twitter Bot",
"description": "Twitter Bot that responds to tweets & notifies in Slack channel.",
"path": "https://github.com/fission/examples/tree/main/python/TwitterBot",
"tag": ["Python","Application","Twitter","Slack","Bot"],
"language": "Python"
},
{
"name": "Zapier Webhook",
"description": "Example to show webhook integration with Zapier",
"path": "https://github.com/fission/examples/tree/main/python/ZapierWebhook",
"tag": ["Python","Application","Zapier","Webhook"],
"language": "Python"
},
{
"name": "Websocket Sample Python",
"description": "Example to show usage of websocket in Python based function",
"path": "https://github.com/fission/examples/tree/main/python/websocket",
"tag": ["Python","Application","Websocket"],
"language": "Python"
}
]