您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關asyncio怎么在Django中使用,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
def djangoview(request, language1, language2): async def main(language1, language2): loop = asyncio.get_event_loop() r = sr.Recognizer() with sr.AudioFile(path.join(os.getcwd(), "audio.wav")) as source: audio = r.record(source) def reco_ibm(lang): return(r.recognize_ibm(audio, key, secret language=lang, show_all=True)) future1 = loop.run_in_executor(None, reco_ibm, str(language1)) future2 = loop.run_in_executor(None, reco_ibm, str(language2)) response1 = await future1 response2 = await future2 loop = asyncio.new_event_loop() asyncio.set_event_loop(loop) loop = asyncio.get_event_loop() loop.run_until_complete(main(language1, language2)) loop.close() return(HttpResponse)
這個例子中,把兩個任務放到 asyncio 的 loop 運行,等到兩個任務都完成了再返回 HttpResponse 。
在 Django 的 View 中使用 asyncio
現在可以對于上面的例子做一個擴充,讓它能更合理被使用。
對于使用 asyncio ,我們通常會創建個子線程專門處理異步任務。
在 wsgi.py 中創建一個單獨線程并運行事件循環:
import asyncio import threading ... application = get_wsgi_application() # 創建子線程并等待 thread_loop = asyncio.new_event_loop() def start_loop(loop): asyncio.set_event_loop(loop) loop.run_forever() t = threading.Thread(target=start_loop, args=(thread_loop,), daemon=True) t.start()
然后就是在 view 中動態向里面添加任務了:
async def fetch(url): async with aiohttp.ClientSession() as session: async with session.get(url) as response: text = await response.text() return text def hello(request): from yeezy_bot.wsgi import thread_loop fut1 = asyncio.run_coroutine_threadsafe(fetch(url1), thread_loop) fut2 = asyncio.run_coroutine_threadsafe(fetch(url2), thread_loop) ret1 = fut1.result() ret2 = fut2.result() return HttpResponse('')
asyncio.run_coroutine_threadsafe() 返回是 Future 對象,因此可以通過 fut.result() 獲得任務的運行結果。 這個方式也可以處理API請求中的數據依賴的先后順序。
上述就是小編為大家分享的asyncio怎么在Django中使用了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。