sanic/examples/unix_socket.py

26 lines
515 B
Python
Raw Normal View History

2017-05-21 11:14:58 +01:00
import os
import socket
from sanic import Sanic, response
2017-05-21 11:14:58 +01:00
app = Sanic("Example")
2017-05-21 11:14:58 +01:00
2017-05-21 11:14:58 +01:00
@app.route("/test")
async def test(request):
return response.text("OK")
if __name__ == "__main__":
server_address = "./uds_socket"
2017-05-21 11:14:58 +01:00
# Make sure the socket does not already exist
try:
os.unlink(server_address)
2017-05-21 11:14:58 +01:00
except OSError:
if os.path.exists(server_address):
raise
2017-05-21 11:14:58 +01:00
sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
sock.bind(server_address)
app.run(sock=sock)