Skip to content

Commit 1f1a5ec

Browse files
committed
use absolute urls for pypi image rendering
1 parent 3074f0a commit 1f1a5ec

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ spamheaders = list(filter(lambda v: "spam" in v.lower(), headers.keys()))
104104

105105
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:
106106

107+
<img align="left" width="50%" src="https://github.com/onlyphantom/emailnetwork/raw/main/assets/summaryplot.png" />
108+
107109
```python
108110
from emailnetwork.summary import DomainSummary
109111
summary = DomainSummary(reader)
110112
summary.plot()
111113
```
112114

113-
![](assets/summaryplot.png)
114-
115115
You can also return a `Counter()` (a subclass of `dict`) instead of a plot:
116116

117117
```python

0 commit comments

Comments
 (0)