Skip to content

onlyphantom/emailnetwork

Repository files navigation

Supertype PyPI Version Colab Notebook Downloads

Email Network

Description

Network graphing utilities for email/mailbox data.

For the social scientists, creating social networks from your mailbox data and among other things:

  • Discover subgroups within your organization (whether the different task forces established were as cohesive as it seems on the outside)
  • Study social actors (most emails from Marketing involve Peter and Andy) and their relative influence
  • Identify the key social groups (Sales team hangs out a lot, but the IT / product division less so)
  • Key account managers of the company (Despite being with the company only recently, Margaretha is connected to more key clients than her peers)
  • Compare distributions and patterns of email behaviors and aggregated statistics between groups of employees

If you're a graph theorist and looking for something more statistical:

  • Support directed and undirected graphs (already implemented in version 0.0.2, see below)
  • Also output statistical measurements such as centrality distribution (planned for version 0.0.3)
  • Betweenness, closeness, hubness, distance histograms plotting (planned for version 0.0.3)
  • Exports to .graphml format for use in other graphing software (already implemented in version 0.0.2, see below)

Dependencies

  • Python 3.7+
  • Only dependencies are NetworkX and Matplotlib

Example Usage

To install emailnetwork:

pip install emailnetwork

A sample .mbox file is provided to you, but you can obtain export your own mailbox from your email service provider. If you use Google (Gmail), you can use the Google Takeout service to export your mail data.

from emailnetwork.extract import MBoxReader
reader = MBoxReader('path-to-mbox.mbox')
print(f'{len(reader)} emails in the sample mbox.')

# extract a specific email
from emailnetwork.extract import extract_meta
email = reader.mbox[5]
emailmsg = extract_meta(email)

# filter emails by certain date
thisyearmails = reader.filter_emails(dateoperator='>=', datestring='2021-01-05')

# print email domains of recipients
print(emailmsg.recipients)
print(emailmsg.recipients[0].domain)

# extract all emails
emails = reader.extract()

For graph visualization:

from emailnetwork.extract import MBoxReader
from emailnetwork.graph import plot_directed, plot_undirected, plot_single_directed, plot_single_undirected

# Read from .mbox
MBOX_PATH = f'{os.path.dirname(__file__)}/tests/test.mbox'
reader = MBoxReader(MBOX_PATH)

# Try the following: 
# plot a single directed graph the email at index 3
plot_single_directed(reader,3)

# plot a single undirected graph the email at index 3, show title in plot
plot_single_undirected(reader, 1, showtitle=True)

# plot a directed graph, optionally specifying a layout style
plot_directed(reader)
plot_directed(reader, 'shell')
# optionally export a .graphml to your working directory for use
# in other network / graphing software
plot_undirected(reader, 'spring', graphml=True)

Email Header Analysis

To obtain a histogram:
from emailnetwork.extract import MBoxReader
reader = MBoxReader('path-to-mbox')
headers = HeaderCounter(reader)
headers.histogram()
# to show only top 10 header, set an optional n parameter
# headers.histogram(n=10)

Because HeaderCounter is a subclass of Python's Counter, you can also perform operations such as headers.most_common(8) to get the 8 most-common headers from the mbox file.

If you want to find all email headers with the word "spam" in it (e.g spam score, other antispam mechanism), you can use Python's filter() function:

reader = MBoxReader('path-to-mbox')
headers = HeaderCounter(reader)
spamheaders = list(filter(lambda v: "spam" in v.lower(), headers.keys()))
# return:
# ['X-Spam-Checked-In-Group', 'X-Microsoft-Antispam-PRVS', 'X-Microsoft-Antispam-Untrusted', 'X-Microsoft-Antispam-Message-Info-Original', 'X-Forefront-Antispam-Report-Untrusted', 'x-ms-exchange-antispam-messagedata', 'X-Microsoft-Antispam', 'X-Microsoft-Antispam-Message-Info', 'X-Forefront-Antispam-Report', 'X-Mimecast-Spam-Score', 'x-microsoft-antispam-prvs', 'x-microsoft-antispam', 'x-microsoft-antispam-message-info', 'x-forefront-antispam-report']

Mailbox Summary

To get a simple barchart on the distribution of email domains in your .mbox, you can create a DomainSummary object and call the .plot() function:

from emailnetwork.summary import DomainSummary
summary = DomainSummary(reader)
summary.plot()

You can also return a Counter() (a subclass of dict) instead of a plot:

summary.summary
# return:
# Counter({'supertype.ai': 203, 'hubspot.com': 115, 'gmail.com': 75, 'google.com': 53, 'adcolony.com': 38, 'fbworkmail.com': 35, 'elementor.com': 29, 'payoneer.com': 15, 'gogame.net': 14, 'zoomd.com': 13, 'am.atlassian.com': 10, 'theafternaut.com': 6, 'alegrium.com': 5, 'accounts.google.com': 4, 'e.atlassian.com': 4, 'tnbaura.com': 4, 'support.lazada.sg': 4, '3kraters.com': 3, 'go.facebookmail.com': 2, 'docs.google.com': 2, 'mail.hellosign.com': 2, 'algorit.ma': 2, 'supertype.atlassian.net': 2, 'ucdconnect.ie': 2, 'mc.facebookmail.com': 1, 'inplacesoftware.com': 1, 'aura.co': 1, 'atlassian.com': 1, 'greenhouse.io': 1})
Why Python 3.7+?

Python 3.7+ is required because the package is written to take advantage of many features of Python 3.7 and above.

Examples of features that were used extensively in the creation of this package:

Testing

Git clone, and run pytest. You can also run pytest with coverage:

pytest --cov

.........

Name                       Stmts   Miss  Cover
----------------------------------------------
emailnetwork/__init__.py       2      0   100%
emailnetwork/emails.py        39      1    97%
emailnetwork/extract.py       94     15    84%
emailnetwork/graph.py        120     12    90%
emailnetwork/header.py        39     24    38%
emailnetwork/network.py       13      1    92%
emailnetwork/summary.py       73     22    70%
emailnetwork/utils.py         30      9    70%
emailnetwork/version.py        1      0   100%
----------------------------------------------
TOTAL                        411     84    80%


=============== 17 passed in 2.85s ==============

All tests are located in the /tests/ directory.

Email Network Demo

Aurellia Christie has created a Colab Notebook: Email Network Walkthrough to walk you through the most common functionalities of Email Network

Authors and Copyright

Samuel Chan, Supertype

Vincentius Christopher Calvin, Supertype

If you find the code useful in your project, please link to this repository in your citation.

The MIT License (MIT)

Copyright (c) 2021 Supertype Pte Ltd

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

  • The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Network graphing utilities for email/mailbox (.mbox) data

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages