vcardtools
vcardtools copied to clipboard
Automatically fix, split, normalize, group and merge/deduplicate vCard and VCF files (even large ones).
Module link: https://pypi.org/project/email-validator/ Also see: https://stackoverflow.com/a/201378
I've used this tool in a larger address book merging operation, thanks for providing it. I had to make a few adjustments for it to work well on my use...
Greetings, I want to deduplicate contacts based only on number or email match. I've tried `python vcardtools.py -m -t 80 -i 11 -a 'mobile' -a 'email' DIR *.vcf` but it...
Currently we can get that information by hacking around the log (if ran in debug mode), with : ```sh ❯ grep '^DEBUG \+.* ([0-9]\+ vcards)$' log.txt | sed 's/^DEBUG \+\(.*\)...
Firstly, let me thank you for posting this code and providing a very useful little tool to work with vcards and vcf files. Your efforts have been greatly appreciated. Basically,...
When processing a large file (> 2000 entries), I got this error: ``` Traceback (most recent call last): File "vcardtools.py", line 281, in main() File "vcardtools.py", line 214, in main...
Any chance to implement --interactive that would let me make merge decisions on case by case basis?
As per subject - I would like to be able to make merge decisions on case by case basis. How hard would it be to implement such interactive mode?
Why the project directory needs to be a virtualenv? I have my virtualenv elsewhere. I am not very experienced in python, is it a convention just to put virtualenv in...