A Python package for analyzing writing style through quantitative metrics.
Please read: This is still in alpha. Analytics are fine but a ways to go before releasing a functional library.
Update 2/27: First features working at basic level
- Word length analysis
- Type-Token Ratio (TTR)
- Hapax Legomena
- Flesch-Kincaid Readability
- Batch processing of text files
- Data visualization
git clone https://github.com/dayanadithyan/stylometry-dh.git
cd stylometry-dh
pip install -r requirements.txt
stylometry-dh/
├── .github/
│ └── workflows/
│ └── tests.yml
├── data/
├── examples/
│ ├── analysis_demo.ipynb
│ └── word_length_hist.png
├── src/
│ └── stylometry/
│ ├── __init__.py
│ └── analyzer.py
├── tests/
│ └── test_analyzer.py
├── .gitignore
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── requirements.txt
└── setup.py