emailnetwork icon indicating copy to clipboard operation
emailnetwork copied to clipboard

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

Results 4 emailnetwork issues
Sort by recently updated
recently updated
newest added

I'm getting `TypeError: '_AxesStack' object is not callable` when I run ``` # Try the following: # plot a single directed graph the email at index 3 plot_single_directed(reader,3) # plot...

![image](https://user-images.githubusercontent.com/62128164/149935740-34393ad2-5647-41a5-8bd9-711dba0f555c.png)

bug

To reproduce: ``` from emailnetwork.summary import DomainSummary from emailnetwork.extract import MBoxReader reader = MBoxReader('your-mbox-path') summary.get_summary() ``` You get a `Counter()` call. I suspect your intention was to have `get_summary()` be...

enhancement

As a user, it would be nice if they can have a statistic aggregation summary on their emails. One way I am thinking of is by counting the occurrences of...

new feature