コード例 #1
0
ファイル: __main__.py プロジェクト: neer300/dataproject
#### PATTERN | DE | RULE-BASED SHALLOW PARSER ######################################################
# Copyright (c) 2012 University of Antwerp, Belgium
# Author: Tom De Smedt <*****@*****.**>
# License: BSD (see LICENSE.txt for details).
# http://www.clips.ua.ac.be/pages/pattern

####################################################################################################
# In Python 2.7+ modules invoked from the command line  will look for a __main__.py.

from __init__ import commandline, parse
commandline(parse)
コード例 #2
0
#### PATTERN | EN | RULE-BASED SHALLOW PARSER ######################################################
# Copyright (c) 2010 University of Antwerp, Belgium
# Author: Tom De Smedt <*****@*****.**>
# License: BSD (see LICENSE.txt for details).
# http://www.clips.ua.ac.be/pages/pattern

####################################################################################################
# In Python 2.7+ modules invoked from the command line  will look for a __main__.py.

from __init__ import commandline
commandline()
コード例 #3
0
ファイル: __main__.py プロジェクト: EthanBlackburn/pattern
#### PATTERN | ES | RULE-BASED SHALLOW PARSER ######################################################
# Copyright (c) 2010 University of Antwerp, Belgium
# Author: Tom De Smedt <*****@*****.**>
# License: BSD (see LICENSE.txt for details).
# http://www.clips.ua.ac.be/pages/pattern

####################################################################################################
# In Python 2.7+ modules invoked from the command line  will look for a __main__.py.

from __init__ import commandline
commandline()