You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
486 B
Python
13 lines
486 B
Python
5 years ago
|
#### PATTERN | DE | RULE-BASED SHALLOW PARSER ######################################################
|
||
|
# Copyright (c) 2012 University of Antwerp, Belgium
|
||
|
# Author: Tom De Smedt <tom@organisms.be>
|
||
|
# License: BSD (see LICENSE.txt for details).
|
||
|
# http://www.clips.ua.ac.be/pages/pattern
|
||
|
|
||
|
####################################################################################################
|
||
|
|
||
|
from __future__ import absolute_import
|
||
|
|
||
|
from .__init__ import parse, commandline
|
||
|
commandline(parse)
|