Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions LeIA.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Metadata-Version: 2.1
Name: LeIA
Version: 0.1.2
Summary: LeIA (Léxico para Inferência Adaptada) é um fork do léxico e ferramenta para análise de sentimentos VADER (Valence Aware Dictionary and sEntiment Reasoner) adaptado para textos em português, com suporte para emojis e foco na análise de sentimentos de textos expressos em mídias sociais - mas funcional para textos de outros domínios.
Home-page: https://github.com/rafjaa/LeIA
Author: Rafael J. A. Almeida
Author-email: rafael@email.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: Published
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.9
License-File: LICENSE.txt

UNKNOWN

13 changes: 13 additions & 0 deletions LeIA.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
LICENSE.txt
README.md
setup.py
LeIA/__init__.py
LeIA/leia.py
LeIA.egg-info/PKG-INFO
LeIA.egg-info/SOURCES.txt
LeIA.egg-info/dependency_links.txt
LeIA.egg-info/top_level.txt
LeIA/lexicons/booster.txt
LeIA/lexicons/emoji_utf8_lexicon_ptbr.txt
LeIA/lexicons/negate.txt
LeIA/lexicons/vader_lexicon_ptbr.txt
1 change: 1 addition & 0 deletions LeIA.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions LeIA.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
LeIA
14 changes: 14 additions & 0 deletions LeIA/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"""
LeIA.

LeIA (Léxico para Inferência Adaptada) é um fork do léxico e ferramenta para análise de sentimentos
VADER (Valence Aware Dictionary and sEntiment Reasoner) adaptado para textos em português,
com suporte para emojis e foco na análise de sentimentos de textos expressos em mídias sociais
- mas funcional para textos de outros domínios.
"""

__version__ = "0.1.1"
__author__ = 'Rafael J. A. Almeida'
__credits__ = ' Núcleo de Tecnologia da Informação (NTINF) da Universidade Federal de São João del-Rei - UFSJ'

from .leia import SentimentIntensityAnalyzer, SentiText, negated, normalize, allcap_differential, scalar_inc_dec
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

LeIA (Léxico para Inferência Adaptada) é um fork do léxico e ferramenta para análise de sentimentos <a href="https://github.com/cjhutto/vaderSentiment">VADER</a> (Valence Aware Dictionary and sEntiment Reasoner) adaptado para textos em português, com suporte para emojis e foco na análise de sentimentos de textos expressos em mídias sociais - mas funcional para textos de outros domínios.

Instalação
-----------
Utilizando anaconda-project:
<pre>
anaconda-project add-packages --pip git+https://github.com/rafjaa/LeIA.git@{{ version }}#egg=LeIA
</pre>

Utilizando pip:
<pre>
pip install git+https://github.com/rafjaa/LeIA.git@{{ version }}#egg=LeIA
</pre>

Substitua a versão pelo código da versão dispobilizada na seção **Releases**.

Modo de uso
-----------
Expand Down
14 changes: 14 additions & 0 deletions build/lib/LeIA/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"""
LeIA.

LeIA (Léxico para Inferência Adaptada) é um fork do léxico e ferramenta para análise de sentimentos
VADER (Valence Aware Dictionary and sEntiment Reasoner) adaptado para textos em português,
com suporte para emojis e foco na análise de sentimentos de textos expressos em mídias sociais
- mas funcional para textos de outros domínios.
"""

__version__ = "0.1.1"
__author__ = 'Rafael J. A. Almeida'
__credits__ = ' Núcleo de Tecnologia da Informação (NTINF) da Universidade Federal de São João del-Rei - UFSJ'

from .leia import SentimentIntensityAnalyzer, SentiText, negated, normalize, allcap_differential, scalar_inc_dec
Loading