Metadata-Version: 2.1
Name: DecAn-karjakak
Version: 0.0.8
Summary: DecAn is a tool for Analyze and Deconstruct chars in text for its position.
Home-page: UNKNOWN
Author: karjakak
Author-email: kakkarja.github@gmail.com
License: BSD3 License
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# DecAn
## Tool to Analyze and Deconstruct chars in a text
### [Under-Development]

## Installation
```
pip install DecAn-karjakak
```
## Usage
**For analyzing text file or sentences**
```Console
decan -a path\text.txt 
```
**For search chars or words in text file or sentences**
```Console
decan -a "The Best is yet to come, yeayyy!!!" -s "Best" e y

# result:
"Best": {1: ((4, 8),)}
"Best" is 1 out of total 7 words!

'e': {5: (2, 5, 13, 22, 26)}
'e' is 5 out of total 34 chars!

'y': {5: (12, 25, 28, 29, 30)}
'y' is 5 out of total 34 chars!
```
**For Deconstruct text file or sentences to .json file or .pickle file**
```Console
# The text file, save as json/pickle filename, and save to a directory path.
decan -d path\text.txt text.json path\dir 
```
**For Constructing the deconstructed text that save in .json file or .pickle file**
```Console
decan -c path\text.pickle
```
## Note
* **Still development process.**
* **Add write deconstruct to pickle, which much smaller and faster.**
* **Changes on analyze [-a]:**
    * **Count real chars, without the space and other printable.**
    * **Show the chars that used once and chars that used most.**
    * **Details on chars type.**



