Metadata-Version: 1.1
Name: senticnet
Version: 0.3.3
Summary: Access Senticnet API using Python
Home-page: https://github.com/yurimalheiros/senticnetapi
Author: Yuri Malheiros
Author-email: contato@yurimalheiros.com
License: Copyright © 2012 Yuri Malheiros

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Please acknowledge the authors by citing the Sentic Computing book in any research work or presentation containing results obtained in whole or in part through the use of the API.

Description: # Senticnet API
        
        Ultra simple API to use Senticnet 2 (http://sentic.net/) without be bothered by RDF stuff.
        
        ## Install
        
        Using pip:
        
        ```
        $ pip install senticnet
        ```
        
        Using the repository code:
        
        ```
        $ python setup.py install
        ```
        
        ## How to use
        
        ```python
        from senticnet.senticnet import Senticnet
        
        sn = Senticnet()
        concept_info = sn.concept('love')
        polarity = sn.polarity('love')
        semantics = sn.semantics('love')
        sentics = sn.sentics('love')
        ```
        
        ## About Senticnet
        
        SenticNet is an initiative conceived at the MIT Media Laboratory in 2010 within an industrial Cooperative Awards in Science and Engineering (CASE) research project, funded by the UK Engineering and Physical Sciences Research Council (EPSRC) and born from the collaboration between the University of Stirling, the Media Lab, and Sitekit Labs.
        
        Please acknowledge the authors by citing the Sentic Computing book in any research work or presentation containing results obtained in whole or in part through the use of the API.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries
