55c36e0240
* Fix examples to work as expected * Clean up examples * Update worker test * Merge in from main and cleanup example
43 lines
803 B
Python
43 lines
803 B
Python
import asyncio
|
|
|
|
import httpx
|
|
|
|
from sanic import Sanic
|
|
from sanic.response import json
|
|
|
|
|
|
app = Sanic(__name__)
|
|
|
|
sem = None
|
|
|
|
|
|
@app.before_server_start
|
|
def init(sanic, _):
|
|
global sem
|
|
concurrency_per_worker = 4
|
|
sem = asyncio.Semaphore(concurrency_per_worker)
|
|
|
|
|
|
async def bounded_fetch(session, url):
|
|
"""
|
|
Use session object to perform 'get' request on url
|
|
"""
|
|
async with sem:
|
|
response = await session.get(url)
|
|
return response.json()
|
|
|
|
|
|
@app.route("/")
|
|
async def test(request):
|
|
"""
|
|
Download and serve example JSON
|
|
"""
|
|
url = "https://api.github.com/repos/sanic-org/sanic"
|
|
|
|
async with httpx.AsyncClient() as session:
|
|
response = await bounded_fetch(session, url)
|
|
return json(response)
|
|
|
|
|
|
app.run(host="0.0.0.0", port=8000, workers=2)
|