mbox2csv 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +19 -3
  3. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb21771471de4cd41fb5352229f53e8907f948fb146054fb4b050287e0f51116
4
- data.tar.gz: 8436988c043147b78301f7a5b4e3fe521f1a15464332a2d00943b4d9eca37762
3
+ metadata.gz: 1f4a5c7ffcfb3c8deffd7c05068268b129e5a37ffc2ba01f3024e3e9790c3d2d
4
+ data.tar.gz: c20e300f2ddd8b2a002bb782109af205532e7be93b539f197937480c4ec0400d
5
5
  SHA512:
6
- metadata.gz: c186e0bbba46cf3ee609794beffb67a9ed0a08605c3a9a165299d33ac6a065f4807d38b5835917dcc51977abc4e676a544cfef75d5d920ad99dfdadd8f53c2ef
7
- data.tar.gz: 8a70e8871a80a7213d948de25d7310febaeb63b360d672c5546a45b69057f6e66de8831cf60e1b8941f839f0ec5850a1bc41f6cf2a598a4ac54e9028853b4d58
6
+ metadata.gz: b81692ac0aa4648ee89b5f2d3cd3e704bd9a889b140a82f078009c4075067a1a6d09b58398898a4b215352bc4431d83ec3fbbe8e70213388eb4680442468b4ba
7
+ data.tar.gz: 15442b56f31f99c8cf17db145057b11d6345f912146e4569de628098b6b0574e5bcc3aed9c1791d58cbc5cfc83a29ba5c4685798dbbf579b5225ad933bc900cc
data/README.md CHANGED
@@ -1,6 +1,12 @@
1
- # mbox2csv -- Parse MBOX files and export email data into CSV format
1
+ <h1 align="center">
2
+ mbox2csv -- Parse MBOX files and export email data into CSV format
3
+ </h1>
2
4
 
3
- ## About
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
- ## 🚀 Basic run example
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - firefly-cpp
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-07 00:00:00.000000000 Z
11
+ date: 2024-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64
@@ -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.11
87
+ rubygems_version: 3.5.16
88
88
  signing_key:
89
89
  specification_version: 4
90
90
  summary: Parse MBOX files and export email data into CSV format