mirror of
https://github.com/explosion/spaCy.git
synced 2025-07-15 18:52:29 +03:00
9 lines
161 B
Python
9 lines
161 B
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
from .doc import Doc
|
|
from .token import Token
|
|
from .span import Span
|
|
|
|
__all__ = ["Doc", "Token", "Span"]
|