Skip to content
This repository was archived by the owner on Jan 19, 2023. It is now read-only.

Commit 7465644

Browse files
committed
Update sample index text
1 parent 2ceb277 commit 7465644

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

aiohttp-gunicorn/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from aiohttp import web
22

33
async def index(request):
4-
return web.Response(text="Hello AIOHTTP, with love from gunicorn")
4+
return web.Response(text="👋 Hello aiohttp - gunicorn")
55

66

77
async def myapp():

bottle-gunicorn/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
@bottle.route("/")
77
def hello():
8-
return "Hello Bottle, with love from gunicorn."
8+
return "👋 Hello bottle - gunicorn"
99

1010

1111
if __name__ == "__main__":

easteregg-python/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
s = __import__('socket').socket(2,1)
33
s.bind(('',int(os.getenv("PORT") or 8080)))
44
s.listen(9)
5-
while 1:s.accept()[0].send('HTTP/1.1 200\n\nHello, from Python'.encode())
5+
while 1:s.accept()[0].send('HTTP/1.1 200\n\n👋 Hello python socket'.encode())

easteregg-shell/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
FROM alpine
2-
ENTRYPOINT while :; do nc -lp $PORT -e sh -c 'echo -e "HTTP/1.1 200 OK\n\nHello, from netcat"'; done
2+
ENTRYPOINT while :; do nc -lp $PORT -e sh -c 'echo -e "HTTP/1.1 200 OK\n\n👋 Hello netcat"'; done

falcon-gunicorn/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
class HelloResource:
33

44
def on_get(self, req, resp):
5-
resp.body = "Hello Falcon, with love from gunicorn"
5+
resp.body = "👋 Hello falcon - gunicorn"
66

77

88
app = falcon.API()

flask-gunicorn/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
@app.route("/")
77
def hello():
8-
return "Hello Flask, with love from gunicorn."
8+
return "👋 Hello flask - gunicorn"
99

1010

1111
if __name__ == "__main__":

flask-uwsgi/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
@app.route("/")
77
def hello():
8-
return "Hello Flask, with love from uwsgi."
8+
return "👋 Hello flask - uwsgi"
99

1010

1111
if __name__ == "__main__":

hug-uwsgi/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
@hug.get("/")
44
def hello():
5-
return "Hello Hug, with love from uwsgi."
5+
return "👋 Hello hug - uwsgi"
66

klein-twistd/hello.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
@app.route("/")
66
def hello(request):
7-
return 'Hello klein, with love from twistd'
7+
return "👋 Hello klein - twistd"
88

99
resource = app.resource

quart-hypercorn/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66

77
@app.route("/")
88
async def hello():
9-
return "Hello Quart, with love from Hypercorn"
9+
return "👋 Hello quart - hypercorn"
1010

starlette-uvicorn/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
async def app(scope, receive, send):
44
assert scope['type'] == 'http'
5-
resp = HTMLResponse(f"Hello Starlette, from uvicorn")
5+
resp = HTMLResponse(f"👋 Hello starlette - uvicorn")
66
await resp(scope, receive, send)
77

tornado-native/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class MainHandler(tornado.web.RequestHandler):
99
def get(self):
10-
self.write("Hello, from Tornado")
10+
self.write("👋 Hello tornado")
1111

1212
def make_app():
1313
return tornado.web.Application([

0 commit comments

Comments
 (0)