Export Signal conversations to Markdown and HTML
Project description
signal-export
Export chats from the Signal Desktop app to Markdown and HTML files with attachments. Each chat is exported as an individual .md/.html file and the attachments for each are stored in a separate folder. Attachments are linked from the Markdown files and displayed in the HTML (pictures, videos, voice notes).
Currently this seems to be the only way to get chat history out of Signal!
Adapted from https://github.com/mattsta/signal-backup, which I suspect will be hard to get working now.
Example
An export for a group conversation looks as follows:
[2019-05-29, 15:04] Me: How is everyone?
[2019-05-29, 15:10] Aya: We're great!
[2019-05-29, 15:20] Jim: I'm not.
Images are attached inline with ![name](path)
while other attachments (voice notes, videos, documents) are included as links like [name](path)
so a click will take you to the file.
This is converted to HTML at the end so it can be opened with any web browser. The stylesheet .css
is still very basic but I'll get to it sooner or later.
Installation
🚀 Easy mode with Docker
This tool has some pretty difficult dependencies, so it's easier to get some help from Docker. For most people this will probably be the easiest way. It requires installing Docker and then pulling a 200MB image, so avoid this if data use is a concern.
First off, install Docker.
Then install this package:
pip install signal-export
Then run the script! It will do some Docker stuff under the hood to get your data out of the encrypted database.
sigexport ~/signal-chats
# output will be saved to the supplied directory
See Alternative installation methods below for other ways to get it working.
Usage
Please fully exit your Signal app before proceeding, otherwise you will likely encounter an I/O disk
error, due to the message database being made read-only, as it was being accessed by the app.
See the full help info:
sigexport --help
Disable pagination on HTML, and overwrite anything at the destination:
sigexport --paginate=0 --overwrite ~/signal-chats
List available chats and exit:
sigexport --list-chats
Export only the selected chats:
sigexport --chats=Jim,Aya ~/signal-chats
You can add --source /path/to/source/dir/
if the script doesn't manage to find the Signal config location.
Default locations per OS are below.
The directory should contain a folder called sql
with db.sqlite
inside it.
- Linux:
~/.config/Signal/
- macOS:
~/Library/Application Support/Signal/
- Windows:
~/AppData/Roaming/Signal/
You can also use --old /previously/exported/dir/
to merge the new export with a previous one.
Nothing will be overwritten!
It will put the combined results in whatever output directory you specified and leave your previos export untouched.
Exercise is left to the reader to verify that all went well before deleting the previous one.
Alternative installation methods
🦆 Slightly harder: build your own Docker image
You can always build your own Docker image if you prefer that. Just clone this repository and build it.
git clone https://github.com/carderne/signal-export.git
cd signal-export
docker build -t sigexport .
Then you can run the script using your own Docker image:
sigexport --use-docker --docker-image=sigexport ~/signal-chats
🌋 Hard mode: install the full dependencies
This involves actually installing the stuff into your system, but has proven hard to get work for many, especially on Windows.
Before you can install signal-export
, you need to get sqlcipher
working.
Follow the instructions for your OS:
For Ubuntu (other distros can adapt to their package manager)
Install the required libraries.
sudo apt install libsqlite3-dev tclsh libssl-dev
Then clone sqlcipher and install it:
git clone https://github.com/sqlcipher/sqlcipher.git
cd sqlcipher
./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC" LDFLAGS="-lcrypto -lsqlite3"
make && sudo make install
NOTE: If you instead install sqlcipher via your distro's package manager, make sure the version is sufficient. 4.0.1 is known to be too old, 4.5.0 is known to work. Old versions will spit out errors such as "malformed database schema (messages) - near "AS": syntax error". See issue 26.
For MacOS
- Install Homebrew.
- Run
brew install openssl sqlcipher
For Windows
YMMV, but apparently Ubuntu 20.04 on WSL2 should work! That is, install WSL2 and Ubuntu 20.04 on Windows, and then follow the For Linux instructions and feel your way forward. But probably just give up here and use the Docker method instead.
Install signal-export
Then you're ready to install signal-export:
(Note the [all]
that has been added!)
pip install signal-export[all]
Then you should be able to use the Usage instructions as above.
Development
git clone https://github.com/carderne/signal-export.git
cd signal-export
pip install -e .[dev]
pre-commit install
Run tests with:
pytest --cov=sigexport --cov-report=term-missing tests/
tox
Similar things
signal-backup-decode might be easier if you use Android!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for signal_export-1.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5fa92b33533dcb0cbdfb3eb5d945c67c68e0c284f0d51cba8f262940fec4549e |
|
MD5 | aa540a798cfe519839f7963f9eba169a |
|
BLAKE2b-256 | dae5b0de190ef3a4dcac2a2bdc7a2d3534362c3c190fade44493bdd5508141d0 |