Metadata-Version: 2.0
Name: korp
Version: 1.0.2
Summary: Korp API library for Python
Home-page: https://mikakalevi.com/nlp/python-korp/
Author: Mika Hämäläinen, Dept. of  Modern Languages, University of Helsinki
Author-email: mika.hamalainen@helsinki.fi
License: Apache License, Version 2.0
Keywords: Korp API
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: requests

=====================
Korp API for Python
=====================

This library provides an easy way to query `Korp <https://spraakbanken.gu.se/swe/forskning/infrastruktur/korp/>`_ systems for language corpora. This library is brought to you by `Mika Hämäläinen <https://mikakalevi.com>`_.

*****
Usage
*****
You can initialise Korp with either service_name (`språkbanken <https://spraakbanken.gu.se/korp/#?lang=sv>`_, `kielipankki <https://korp.csc.fi/>`_ or `GT <http://gtweb.uit.no/korp/>`_) or url to your Korp's API interface such as https://korp.csc.fi/cgi-bin/korp.cgi .

An example for getting all concordances for North Sami corpora in Giellatekno Korp for query *[pos="A"] "go" [pos="N"]*.

    ``from korp import Korp``

    ``korppi = Korp(service_name="GT") #uses Giellatekno``

    ``corpora = korppi.list_corpora("SME") #lists corpora returns the ones starting with the North Sami language code``

    ``number_of_results, concordances = korppi.all_concordances('[pos="A"] "go" [pos="N"]', corpora)``

****************
More information
****************

For more information, see `the GitHub page <https://github.com/mikahama/python-korp>`_ and `Wiki for tutorials <https://github.com/mikahama/python-korp/wiki>`_.


