mbox2csv 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +19 -3
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4075cf789bd3819e1642195c3787a2406ce5f04c3cea31345bb2a76a2783a960
|
4
|
+
data.tar.gz: dd347f1302b8b90363b1b975753c2eda79a52d09ce90bf620df8946e37ae3363
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93d4bf15e4932ab1bd47c6553b1cd3136d5763dee587ce3bcf06a607910770707be5d4c8c7a21017c0469acb7725fccff037376bf0bdadd42e0ee8e06ba84bb5
|
7
|
+
data.tar.gz: 0fc729d86a2d57552a98eab459a78bd7d0472853ede8aeb3488f9f110daed88a38c9161ff497262b38da3f5558897993335b6bbe8d331c7848415f488e308353
|
data/README.md
CHANGED
@@ -1,6 +1,12 @@
|
|
1
|
-
|
1
|
+
<h1 align="center">
|
2
|
+
mbox2csv -- Parse MBOX files and export email data into CSV format
|
3
|
+
</h1>
|
2
4
|
|
3
|
-
|
5
|
+
<p align="center">
|
6
|
+
<a href="#-installation">📦 Installation</a> •
|
7
|
+
<a href="#-usage">🚀 Usage</a> •
|
8
|
+
<a href="#-licence">🔑 Licence</a>
|
9
|
+
</p>
|
4
10
|
|
5
11
|
mbox2csv is a Ruby gem that provides a simple way to parse MBOX files and export email data into CSV format. It also generates valuable email statistics for data mining tasks, such as the number of emails sent by each sender and recipient and average body lengths. This is ideal for analyzing email datasets or processing email archives.
|
6
12
|
|
@@ -10,7 +16,9 @@ mbox2csv is a Ruby gem that provides a simple way to parse MBOX files and export
|
|
10
16
|
$ gem install mbox2csv
|
11
17
|
```
|
12
18
|
|
13
|
-
## 🚀
|
19
|
+
## 🚀 Usage
|
20
|
+
|
21
|
+
### Basic run example
|
14
22
|
|
15
23
|
```ruby
|
16
24
|
require 'mbox2csv'
|
@@ -27,3 +35,11 @@ parser = Mbox2CSV::MboxParser.new(mbox_file, all_emails, sender_stats_all_emails
|
|
27
35
|
# Parse the MBOX file, save email data, and generate statistics
|
28
36
|
parser.parse
|
29
37
|
```
|
38
|
+
|
39
|
+
## 🔑 License
|
40
|
+
|
41
|
+
This package is distributed under the MIT License. This license can be found online at <http://www.opensource.org/licenses/MIT>.
|
42
|
+
|
43
|
+
## Disclaimer
|
44
|
+
|
45
|
+
This framework is provided as-is, and there are no guarantees that it fits your purposes or that it is bug-free. Use it at your own risk!
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mbox2csv
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- firefly-cpp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: base64
|
@@ -62,13 +62,13 @@ files:
|
|
62
62
|
- LICENSE
|
63
63
|
- README.md
|
64
64
|
- lib/mbox2csv.rb
|
65
|
-
homepage: https://
|
65
|
+
homepage: https://github.com/firefly-cpp/mbox2csv
|
66
66
|
licenses:
|
67
67
|
- MIT
|
68
68
|
metadata:
|
69
|
-
homepage_uri: https://
|
70
|
-
source_code_uri: https://
|
71
|
-
changelog_uri: https://
|
69
|
+
homepage_uri: https://github.com/firefly-cpp/mbox2csv
|
70
|
+
source_code_uri: https://github.com/firefly-cpp/mbox2csv
|
71
|
+
changelog_uri: https://github.com/firefly-cpp/mbox2csv
|
72
72
|
post_install_message:
|
73
73
|
rdoc_options: []
|
74
74
|
require_paths:
|
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
84
|
- !ruby/object:Gem::Version
|
85
85
|
version: '0'
|
86
86
|
requirements: []
|
87
|
-
rubygems_version: 3.5.
|
87
|
+
rubygems_version: 3.5.22
|
88
88
|
signing_key:
|
89
89
|
specification_version: 4
|
90
90
|
summary: Parse MBOX files and export email data into CSV format
|