Skip to content

Instantly share code, notes, and snippets.

@NickVeld
NickVeld / json2vcf_converter.py
Last active April 2, 2023 08:17 — forked from Amir-P/converter.py
Convert JSON exported contacts from Android/Telegram to vCard (.vcf)
import enum
import json
import sys
from typing import Any, Dict, Iterable, List, TextIO, Union
DOUBLE_UNDERSCORE = '__'
SPACE = ' '