mirror of
https://github.com/clearml/clearml
synced 2025-02-01 01:26:49 +00:00
15 lines
285 B
Python
15 lines
285 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import print_function, division, absolute_import
|
|
|
|
|
|
from ..utils import PY32
|
|
|
|
|
|
if PY32:
|
|
from .thread_extractor import ThreadExtractor as Extractor
|
|
else:
|
|
from .gevent_extractor import GeventExtractor as Extractor
|
|
|
|
__all__ = ["Extractor"]
|