Skip to content

Instantly share code, notes, and snippets.

@fgshun
fgshun / example_starlette_app.py
Last active December 22, 2021 05:03
An example Starlette, Websocket and GraphQL app.
import asyncio
import itertools
import json
import logging
import time
import graphene
import uvicorn
from graphql.execution.executors.asyncio import AsyncioExecutor
from starlette.applications import Starlette