mbox2csv 0.1.0 → 0.1.2

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 +7 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb21771471de4cd41fb5352229f53e8907f948fb146054fb4b050287e0f51116
4
- data.tar.gz: 8436988c043147b78301f7a5b4e3fe521f1a15464332a2d00943b4d9eca37762
3
+ metadata.gz: 4075cf789bd3819e1642195c3787a2406ce5f04c3cea31345bb2a76a2783a960
4
+ data.tar.gz: dd347f1302b8b90363b1b975753c2eda79a52d09ce90bf620df8946e37ae3363
5
5
  SHA512:
6
- metadata.gz: c186e0bbba46cf3ee609794beffb67a9ed0a08605c3a9a165299d33ac6a065f4807d38b5835917dcc51977abc4e676a544cfef75d5d920ad99dfdadd8f53c2ef
7
- data.tar.gz: 8a70e8871a80a7213d948de25d7310febaeb63b360d672c5546a45b69057f6e66de8831cf60e1b8941f839f0ec5850a1bc41f6cf2a598a4ac54e9028853b4d58
6
+ metadata.gz: 93d4bf15e4932ab1bd47c6553b1cd3136d5763dee587ce3bcf06a607910770707be5d4c8c7a21017c0469acb7725fccff037376bf0bdadd42e0ee8e06ba84bb5
7
+ data.tar.gz: 0fc729d86a2d57552a98eab459a78bd7d0472853ede8aeb3488f9f110daed88a38c9161ff497262b38da3f5558897993335b6bbe8d331c7848415f488e308353
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.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: 2024-09-07 00:00:00.000000000 Z
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://codeberg.org/firefly-cpp/mbox2csv
65
+ homepage: https://github.com/firefly-cpp/mbox2csv
66
66
  licenses:
67
67
  - MIT
68
68
  metadata:
69
- homepage_uri: https://codeberg.org/firefly-cpp/mbox2csv
70
- source_code_uri: https://codeberg.org/firefly-cpp/mbox2csv
71
- changelog_uri: https://codeberg.org/firefly-cpp/mbox2csv
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.11
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