Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/giacbrd/python-dandelion-eu
A python client for connecting to all the services provided by https://dandelion.eu
https://github.com/giacbrd/python-dandelion-eu
api api-client api-wrapper entity-extraction entity-linking language-detection machine-learning python semantic-analysis semantic-similarity sentiment-analysis text-analysis text-classification text-mining text-similarity wikification wikipedia wikipedia-api
Last synced: 18 days ago
JSON representation
A python client for connecting to all the services provided by https://dandelion.eu
- Host: GitHub
- URL: https://github.com/giacbrd/python-dandelion-eu
- Owner: giacbrd
- License: gpl-2.0
- Created: 2014-02-05T16:50:32.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-08-07T10:29:48.000Z (over 1 year ago)
- Last Synced: 2024-10-20T05:15:44.639Z (25 days ago)
- Topics: api, api-client, api-wrapper, entity-extraction, entity-linking, language-detection, machine-learning, python, semantic-analysis, semantic-similarity, sentiment-analysis, text-analysis, text-classification, text-mining, text-similarity, wikification, wikipedia, wikipedia-api
- Language: Python
- Homepage: http://python-dandelion-eu.readthedocs.org
- Size: 71.3 KB
- Stars: 36
- Watchers: 11
- Forks: 15
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
.. image:: https://travis-ci.org/giacbrd/python-dandelion-eu.svg?branch=master
:target: https://travis-ci.org/giacbrd/python-dandelion-eu.. image:: https://coveralls.io/repos/SpazioDati/python-dandelion-eu/badge.png?branch=master
:target: https://coveralls.io/r/SpazioDati/python-dandelion-eu?branch=master.. image:: https://img.shields.io/pypi/v/dandelion-eu
:target: https://pypi.python.org/pypi/dandelion-eu/
:alt: Latest PyPI version.. _PyPI: https://pypi.python.org/pypi/dandelion-eu/
.. _ReadTheDocs: http://python-dandelion-eu.readthedocs.org/
.. _dandelion: https://dandelion.eu/accounts/register/?next=/
.. _dandelion.eu: http://dandelion.eu/python-dandelion-eu
===================Bring the power of the dandelion.eu_ semantic to your python applications and scripts!
Semantic in python couldn't be easier... code-block:: py
>>> from dandelion import DataTXT
>>> datatxt = DataTXT(token='YOUR_TOKEN')
>>> response = datatxt.nex('The doctor says an apple is better than an orange')
>>> for annotation in response.annotations:
print(annotation)
...Register on dandelion_ to obtain your authentication token and enrich your application with our semantic intelligence.
Installation
------------``dandelion-eu`` is available on PyPI_ install it simply with::
pip install dandelion-eu
Documentation
-------------Documentation is available on ReadTheDocs_.