https://github.com/santisoler/slypheed2csv
Convert Slypheed addressbook to a CSV file
https://github.com/santisoler/slypheed2csv
Last synced: 6 months ago
JSON representation
Convert Slypheed addressbook to a CSV file
- Host: GitHub
- URL: https://github.com/santisoler/slypheed2csv
- Owner: santisoler
- License: mit
- Created: 2020-11-09T22:50:11.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-10T20:14:51.000Z (about 5 years ago)
- Last Synced: 2025-02-09T23:28:44.384Z (11 months ago)
- Language: Python
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Slypheed2CSV
Convert Slypheed address book to a CSV file.
> :warning: **Software under heavy development**: This package is on early
> stages of development, please be very careful when trying to use it for
> backing up important information. **Keep always the original address book**
> exported by Slypheed in case something goes wrong. :warning:
## How to install
### On Ubuntu
Install `pip` using your package manager:
```
sudo apt install python3-pip
```
Then install the latest version of Slypheed2CSV:
```
pip3 install https://github.com/santisoler/slypheed2csv/archive/main.zip
```
Check your installation by running:
```
slypheed2csv
```
#### Another way
If this didn't work for you (it didn't work for me on Xubuntu 18.04), try the
following:
1. Install `python3` through `apt`:
```
sudo apt install python3
```
2. Download a zip file containing the latest version of this repository and
unzip it:
```
wget https://github.com/santisoler/slypheed2csv/archive/main.zip
unzip main.zip
```
3. Change directory to the unzipped one and install `slypheed2csv` by actually
running the `setup.py`:
```
cd slypheed2csv-main
sudo python3 setup.py install
```
4. Check your installation by running:
```
slypheed2csv
```
### On Arch
Install `pip` using your package manager:
```
sudo pacman -S python-pip
```
Then install the latest version of Slypheed2CSV:
```
pip install https://github.com/santisoler/slypheed2csv/archive/main.zip
```
Check your installation by running:
```
slypheed2csv
```
## How to use
Export the Slypheed address book into a XML file, for example
`addressbook.xml`.
Then use `slypheed2csv` to convert it to a CSV file:
```
slypheed2csv addressbook.xml -o address.csv
```
## License
[MIT](https://github.com/santisoler/slypheed2csv/blob/main/LICENSE)