A simple NLP library for basic text analysis.
Project description
Basic Text Analyzer A simple Python library for basic Natural Language Processing (NLP) tasks. This is a starter-kit to demonstrate how to publish a package to PyPI.
Installation You can install this package from PyPI (once it's published):
pip install basic_text_analyzer_athar
Usage Here's how to use the functions in your Python code:
import basic_text_analyzer as bta
text = "This is a simple example sentence to demonstrate the library."
Count words count = bta.word_count(text) print(f"Word Count: {count}")
Output: Word Count: 11 Count characters char_count = bta.char_count(text) print(f"Character Count: {char_count}")
Output: Character Count: 60 Remove stop words cleaned_text = bta.remove_stopwords(text) print(f"Cleaned Text: {cleaned_text}")
Output: Cleaned Text: simple example sentence demonstrate library.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file basic_text_analyzer_athar-0.0.1.tar.gz.
File metadata
- Download URL: basic_text_analyzer_athar-0.0.1.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f679968098102f41868ca92b089e38cff95a8ed53976bc6b5d947b68b7ee5a59
|
|
| MD5 |
3dce5dd57e3a274d5ddcbf9f41a1d5b8
|
|
| BLAKE2b-256 |
283fa299789068a9ddb69507bc6a43ecc55669c3dd70e5a1a66eed2ecd7df16f
|
File details
Details for the file basic_text_analyzer_athar-0.0.1-py3-none-any.whl.
File metadata
- Download URL: basic_text_analyzer_athar-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1551c0620c9b06096225d4192c17ac9239ae85fa6047d1da2e4771ca15bc3f49
|
|
| MD5 |
aeafbd98603a5badf8fd7041b12cf7b9
|
|
| BLAKE2b-256 |
4e82c4a602dd5ebb7c432599d33d7db0020e06a6545aacc7ff0200a7f19dffb9
|