luxaritas / PyLUS

Python LEGO Universe Server Emulator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Upgrade to Django 3

luxaritas opened this issue · comments

The blocking point for upgrading is that we use DB calls as synchronous operations, whereas in v3 we basically have to treat them asynchronously since we execute within an asynchronous context (given that our communications run on top of asyncio). Some work is required in order to make that work - specifically, we probably need to convert a bunch of functions to be async (including the core event handling mechanism)