Textarium is a Python package for text analysis
Project description
textarium: easy-to-use Python package for text analysis.
What is it?
textarium is a Python package that provides flexible text analysis functions designed to make text analysis intuitive and easy. It aims to be the high-level tool for preparing text-data and complex analysis or NLP modeling.
Installation
Binary installer for the latest released version are available at the Python Package Index (PyPI).
# Type this in your command-line
pip install textarium
Getting started
from textarium import Text
import nltk
nltk.download('wordnet')
s = "This a text example. You can preprocess and analyze it with this package."
text = Text(s, lang='en')
text.prepare()
print(text.prepared_text)
from textarium import Corpus
import nltk
nltk.download('wordnet')
txts = [
"Hello! My name is Mr.Parker.",
"I have a website https://parker.com.",
"It has about 5000 visitors per day.",
"I track it with a simple html-block like this:",
"<div>Google.Analytics</div>",
]
c = Corpus(txts, lang='en')
c.info()
c = c.filter(condition=lambda x: len(x.split() > 5), attribute="raw_text")
c.info()
c.prepare()
print(c)
Documentation
The official documentation is hosted on Github.io: https://6b656b.github.io/textarium
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
textarium-0.1.8.tar.gz
(16.9 kB
view details)
Built Distribution
textarium-0.1.8-py3-none-any.whl
(21.3 kB
view details)
File details
Details for the file textarium-0.1.8.tar.gz
.
File metadata
- Download URL: textarium-0.1.8.tar.gz
- Upload date:
- Size: 16.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fac84ee46a40dfe12ed6fbba4b1ce1d82f96ae985f89f08920adfaab9a2099a2 |
|
MD5 | 8424bd9e2b4db0ab3fd37009c1070dae |
|
BLAKE2b-256 | a040943471cd9d30150a323c0eb56a684fed12a8fff7cd31c5edd43e93162f6d |
File details
Details for the file textarium-0.1.8-py3-none-any.whl
.
File metadata
- Download URL: textarium-0.1.8-py3-none-any.whl
- Upload date:
- Size: 21.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bdbe4c0cd79e1bdde7445896cdc19fd8722ab2b73ed38edd3b38b68122ace144 |
|
MD5 | 0448735f70209813d29bfa9b3dc16144 |
|
BLAKE2b-256 | 6ee7e53c0e6f846c78a3dd9e48fd52da0df7b5fa0c2d1402d3943fdbbe9b4f89 |