Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed spacy_pythainlp/ __init__.py
Empty file.
12 changes: 12 additions & 0 deletions spacy_pythainlp/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"""
spaCy-PyThaiNLP: Thai language support for spaCy using PyThaiNLP.

This package provides a spaCy pipeline component that integrates PyThaiNLP's
Thai NLP capabilities, including tokenization, POS tagging, NER, sentence
segmentation, dependency parsing, and word vectors.
"""

from spacy_pythainlp.core import PyThaiNLP

__version__ = "0.1.0"
__all__ = ["PyThaiNLP"]
Loading