xls-rs 0.1.7

Rust spreadsheet CLI, library, and MCP server for reading, writing, converting, and analyzing XLSX, XLS, CSV, ODS, Parquet, and Avro with pandas-style operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Text analysis operations
//!
//! Provides text analysis capabilities including sentiment analysis,
//! keyword extraction, text statistics, and language detection.

pub mod analyzer;
pub mod helpers;
pub mod types;

// Re-export main types for convenience
pub use analyzer::TextAnalyzer;
pub use types::{
    Importance, Keyword, KeywordResult, LanguageResult, Sentiment, SentimentResult, SentimentWords,
    TextStats,
};