From 29825c0ef49d15d92b9e5836a1b4f782ba1e9154 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Sat, 28 Dec 2019 02:00:50 -0700 Subject: [PATCH] manually init uvloop --- hyperglass/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hyperglass/__init__.py b/hyperglass/__init__.py index 74b1218..6ee816c 100644 --- a/hyperglass/__init__.py +++ b/hyperglass/__init__.py @@ -43,7 +43,11 @@ from hyperglass import constants from hyperglass import exceptions from hyperglass import render +import uvloop + # Stackprinter Configuration import stackprinter stackprinter.set_excepthook() + +uvloop.install()