Skip to main content

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

Project description

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)

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

  • Support directed and undirected graphs (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 (implemented in version 0.0.2)

Dependencies

  • Python 3.7+
  • Only dependencies are NetworkX and Matplotlib

Example Usage

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

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

# filter emails by certain date
thisyearmails = reader.filter_by_date('>=', '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:

# 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)
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 nosetests.

All tests are located in the /tests/ directory.

Authors and Copyright

Samuel Chan, Supertype https://supertype.ai

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.

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

emailnetwork-0.0.1.tar.gz (274.8 kB view hashes)

Uploaded Source

Built Distribution

emailnetwork-0.0.1-py3-none-any.whl (275.7 kB view hashes)

Uploaded Python 3

Supported by

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