
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
The Ruby based wrapper for the TreeTagger by Helmut Schmid. Check it out if you are interested in Natural Language Processing (NLP) and Human Language Technology (HLT).
Before you install the treetagger-ruby package please ensure you have downloaded and installe the TreeTagger itself.
(And pls, respect his terms of license)
gem install rstt
rstt -c /path/to/your/TreeTagger/
You have some class
, where you want to use Rstt ..
the input is given by: Rstt.set_input lang: lang, content: content
with default language 'en
';
accessible languages could be found by Rstt.language_codes
;
installed languages are stored in Rstt::LANGUAGES
(cause it could be different)
class Foo
include Rstt
def pos_tagging(lang,content)
Rstt.set_input lang: lang, content: content
Rstt.preprocessing
Rstt.tagging
processed_ data = Rstt.tagged
end
end
that's all, the processed data are accessible via Rstt.tagged
,
it is an Array, thereby each element self is an Array with following elements
or via CLI, check usage with rstt -h
see License.txt
FAQs
Unknown package
We found that rstt demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.