My web server aiohttpuses a global variable that changes over time:
from aiohttp import web
shared_item = 'bla'
async def handle(request):
if items['test'] == 'val':
shared_item = 'doeda'
print(shared_item)
app = web.Application()
app.router.add_get('/', handle)
web.run_app(app, host='somewhere.com', port=8181)
Results in:
UnboundLocalError: local variable 'shared_item' specified before assignment
How to use a shared variable shared_item?
source
share