mirror of
https://github.com/KnugiHK/WhatsApp-Chat-Exporter.git
synced 2026-04-24 23:11:35 +00:00
Update readme
This commit is contained in:
19
README.md
19
README.md
@@ -114,13 +114,18 @@ After extracting, you will get these:
|
|||||||
Invoke the wtsexporter with --help option will show you all options available.
|
Invoke the wtsexporter with --help option will show you all options available.
|
||||||
```sh
|
```sh
|
||||||
> wtsexporter --help
|
> wtsexporter --help
|
||||||
usage: wtsexporter [-h] [-a] [-i] [-e EXPORTED] [-w WA] [-m MEDIA] [-b BACKUP] [-o OUTPUT] [-j [JSON]] [-d DB] [-k KEY] [-t TEMPLATE] [-s] [-c] [--offline OFFLINE] [--size [SIZE]]
|
usage: wtsexporter [-h] [-a] [-i] [-e EXPORTED] [-w WA] [-m MEDIA] [-b BACKUP] [-o OUTPUT] [-j [JSON]] [-d DB]
|
||||||
[--no-html] [--check-update] [--assume-first-as-me]
|
[-k KEY] [-t TEMPLATE] [-s] [-c] [--offline OFFLINE] [--size [SIZE]] [--no-html] [--check-update]
|
||||||
|
[--assume-first-as-me] [--no-avatar] [--import] [--business] [--preserve-timestamp] [--wab WAB]
|
||||||
|
[--time-offset {-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14}]
|
||||||
|
|
||||||
|
A customizable Android and iPhone WhatsApp database parser that will give you the history of your WhatsApp
|
||||||
|
conversations in HTML and JSON. Android Backup Crypt12, Crypt14 and Crypt15 supported.
|
||||||
|
|
||||||
options:
|
options:
|
||||||
-h, --help show this help message and exit
|
-h, --help show this help message and exit
|
||||||
-a, --android Define the target as Android
|
-a, --android Define the target as Android
|
||||||
-i, --iphone, --ios Define the target as iPhone/iPad
|
-i, --ios, --iphone Define the target as iPhone/iPad
|
||||||
-e EXPORTED, --exported EXPORTED
|
-e EXPORTED, --exported EXPORTED
|
||||||
Define the target as exported chat file and specify the path to the file
|
Define the target as exported chat file and specify the path to the file
|
||||||
-w WA, --wa WA Path to contact database (default: wa.db/ContactsV2.sqlite)
|
-w WA, --wa WA Path to contact database (default: wa.db/ContactsV2.sqlite)
|
||||||
@@ -144,6 +149,14 @@ options:
|
|||||||
--no-html Do not output html files
|
--no-html Do not output html files
|
||||||
--check-update Check for updates (require Internet access)
|
--check-update Check for updates (require Internet access)
|
||||||
--assume-first-as-me Assume the first message in a chat as sent by me (must be used together with -e)
|
--assume-first-as-me Assume the first message in a chat as sent by me (must be used together with -e)
|
||||||
|
--no-avatar Do not render avatar in HTML output
|
||||||
|
--import Import JSON file and convert to HTML output
|
||||||
|
--business Use Whatsapp Business default files (iOS only)
|
||||||
|
--preserve-timestamp Preserve the modification timestamp of the extracted files (iOS only)
|
||||||
|
--wab WAB, --wa-backup WAB
|
||||||
|
Path to contact database in crypt15 format
|
||||||
|
--time-offset {-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14}
|
||||||
|
Offset in hours (-12 to 14) for time displayed in the output
|
||||||
|
|
||||||
WhatsApp Chat Exporter: 0.9.7 Licensed with MIT
|
WhatsApp Chat Exporter: 0.9.7 Licensed with MIT
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -34,8 +34,8 @@ def main():
|
|||||||
help="Define the target as Android")
|
help="Define the target as Android")
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'-i',
|
'-i',
|
||||||
'--iphone',
|
|
||||||
'--ios',
|
'--ios',
|
||||||
|
'--iphone',
|
||||||
dest='iphone',
|
dest='iphone',
|
||||||
default=False,
|
default=False,
|
||||||
action='store_true',
|
action='store_true',
|
||||||
|
|||||||
Reference in New Issue
Block a user