Skip to main content

A comprehensive WhatsApp chat analysis library

Project description

WhatsApp Reality

A comprehensive Python library for analyzing WhatsApp chat exports. This library provides tools for preprocessing WhatsApp chat data and performing various analyses including sentiment analysis, user activity patterns, conversation patterns, and more.

Installation

pip install whatsapp-reality

Features

  • Chat preprocessing for both Android and iOS WhatsApp exports
  • Basic statistics (message counts, word counts, media counts)
  • User activity analysis
  • Word clouds and common words analysis
  • Sentiment analysis
  • Emoji analysis
  • Timeline analysis (daily, monthly)
  • Reply time analysis
  • Conversation pattern analysis

Quick Start

1. Export your WhatsApp chat

  1. Open WhatsApp
  2. Go to the chat you want to analyze
  3. Click on the three dots (⋮) > More > Export chat
  4. Choose "Without Media"
  5. Save the exported text file

2. Analyze your chat

from whatsapp_reality import preprocess, analyzer
import pandas as pd # Assuming pandas is needed for DataFrame display

# Read and preprocess your chat file
with open('chat.txt', 'r', encoding='utf-8') as file:
    chat_data = file.read()

# Create the DataFrame
df = preprocess(chat_data)

# Assume 'selected_user' is defined, e.g., 'Overall' or a specific user name
selected_user = 'Overall' # Example: Replace with actual user or 'Overall'

# Now you can use any of the analysis functions!

# --- Basic Stats ---
messages, words, media, links = analyzer.fetch_stats(selected_user, df)
print(f"Total Messages: {messages}")
print(f"Total Words: {words}")
print(f"Media Messages: {media}")
print(f"Links Shared: {links}")

# --- User Activity ---
busy_users_fig, df_percent = analyzer.most_busy_users(df)
# busy_users_fig.show() # Shows the interactive plotly visualization

# --- Time-based Analysis ---
monthly_timeline_df = analyzer.monthly_timeline(selected_user, df)
print("\nMonthly Timeline:")
print(monthly_timeline_df)

daily_timeline_df = analyzer.daily_timeline(selected_user, df)
print("\nDaily Timeline:")
print(daily_timeline_df)

weekly_activity_fig = analyzer.week_activity_map(selected_user, df)
# weekly_activity_fig.show() # Uncomment to display plot

monthly_activity_fig = analyzer.month_activity_map(selected_user, df)
# monthly_activity_fig.show() # Uncomment to display plot

busiest_hours_fig = analyzer.busiest_hours_analysis(selected_user, df)
# busiest_hours_fig.show() # Uncomment to display plot

# --- Content Analysis ---
wordcloud_fig = analyzer.create_plotly_wordcloud(selected_user, df)
# wordcloud_fig.show() # Uncomment to display plot

common_words_df = analyzer.most_common_words(selected_user, df)
print("\nMost Common Words:")
print(common_words_df)

emoji_df = analyzer.emoji_helper(selected_user, df)
print("\nEmoji Usage:")
print(emoji_df)

# --- Sentiment Analysis ---
positive_fig, negative_fig = analyzer.analyze_and_plot_sentiment(selected_user, df)
# positive_fig.show() # Uncomment to display plot
# negative_fig.show() # Uncomment to display plot

sentiment_percentages, most_positive, least_positive = analyzer.calculate_sentiment_percentage(selected_user, df)
print("\nSentiment Percentages:")
print(sentiment_percentages)
print("Most Positive Message Snippet:", most_positive)
print("Least Positive Message Snippet:", least_positive)

monthly_sentiment_fig = analyzer.calculate_monthly_sentiment_trend(selected_user, df)
# monthly_sentiment_fig.show() # Uncomment to display plot

# --- User Interaction Analysis ---
msg_count_fig, who_do_most_messages = analyzer.message_count_aggregated_graph(df)
# msg_count_fig.show() # Uncomment to display plot
print("\nUser with most messages:", who_do_most_messages)

starter_fig, who_starts_convo = analyzer.conversation_starter_graph(df)
# starter_fig.show() # Uncomment to display plot
print("User who starts most conversations:", who_starts_convo)

convo_size_fig = analyzer.conversation_size_aggregated_graph(df)
# convo_size_fig.show() # Uncomment to display plot

late_reply_fig, avg_late_reply_times, overall_avg = analyzer.calculate_average_late_reply_time(df)
# late_reply_fig.show() # Uncomment to display plot
print("\nAverage late reply times per user:")
print(avg_late_reply_times)
print("Overall average late reply time:", overall_avg)

# Example from original Quick Start (if different from above)
# analyze_reply_patterns might be deprecated or replaced by calculate_average_late_reply_time
# user, time, msg, reply = analyzer.analyze_reply_patterns(df)
# print(f"\nUser with longest reply time: {user}")
# print(f"Reply took {time:.2f} minutes")

Supported Chat Formats

The library supports WhatsApp chat exports from both Android and iOS devices in the following formats:

Android Format

DD/MM/YY, HH:mm - Username: Message

iOS Format

[DD/MM/YY, HH:mm:ss] Username: Message

Both 12-hour and 24-hour time formats are supported.

Documentation

For detailed documentation and examples, visit our documentation page.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Author

Acknowledgments

Special thanks to all contributors and users of this library.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

whatsapp_reality-0.2.1.tar.gz (33.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

whatsapp_reality-0.2.1-py3-none-any.whl (32.4 kB view details)

Uploaded Python 3

File details

Details for the file whatsapp_reality-0.2.1.tar.gz.

File metadata

  • Download URL: whatsapp_reality-0.2.1.tar.gz
  • Upload date:
  • Size: 33.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.0

File hashes

Hashes for whatsapp_reality-0.2.1.tar.gz
Algorithm Hash digest
SHA256 a9ae2abc4c8a26792a4bf30b8c74eda96c63f9b765f6e74cc0e1d6bdf4ec644f
MD5 a729cea7c83f03de1e8f643e2284469b
BLAKE2b-256 a35e1ada5c4deadc9efcee9a142c308f9d0f8883119b59e0c61cedb50e54b404

See more details on using hashes here.

File details

Details for the file whatsapp_reality-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for whatsapp_reality-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f5ddb3edf377373c5352439b96b7d4c3768237220efe47e982d710724ef22690
MD5 0024ff3c1a06fbc48897cbc1204be4dd
BLAKE2b-256 77805eaa34af1d2cb3088f34875c0fcc8eb484342319dd1ad1accb0756576273

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page