Metadata-Version: 2.1
Name: CLAWSTag
Version: 0.0.2.1
Summary: an English POS tagging tool based on the free CLAWS web tagger API by Lancaster University
Home-page: UNKNOWN
Author: VictorWWQ
Author-email: VictorWWQ@163.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: beautifulsoup4
Requires-Dist: Faker

This package allows you to automatically collect POS tagging results from http://ucrel-api.lancaster.ac.uk/claws/free.html and save them as txt files in your local folder.

Make sure to place your python file in a folder that contains (only) the txt files you wanna tag.

Example:
>from CLAWSTag import Tagger

>Tagger.Postag('c5', 'horiz').start()

There're 5 possible combos for Postag() to receive settings of tagsets ('c5' or 'c7') and output styles ('horiz(ontal)' or 'vert(ical)' or '(pseudo)xml'). The others are:

Tagger.Postag('c5', 'xml').start()

Tagger.Postag('c7', 'horiz').start()

Tagger.Postag('c7', 'vert').start()

Tagger.Postag('c7', 'xml').start()


