File size: 192 Bytes
cc9dfd7 |
1 2 3 4 5 6 7 8 |
import sys
import logging
logging.getLogger().addHandler(logging.StreamHandler(sys.stdout))
logging.getLogger().setLevel(logging.INFO)
from deoldify._device import _Device
device = _Device() |