Compare commits

..

No commits in common. "01ebe8b545fadf47a5894baf6d68121c3d7f0aef" and "71a88ef1b5a49b0fef0b7e2641863e2caad50049" have entirely different histories.

3 changed files with 20 additions and 45 deletions

4
.gitignore vendored
View file

@ -1,5 +1,3 @@
*.vcf
/vcf
/pictures
/multiple_pictures
/whatsapp
/photo

View file

@ -1 +0,0 @@

View file

@ -1,55 +1,33 @@
import os
import sys
import base64
import pickle
import phonenumbers
from pythonvCard4.vcard import Contact
import base64
import os
input_file = open(sys.argv[1], 'r').readlines()
check_for_multiple_pictures = False
file = open("contacts.vcf", 'r').readlines()
cards = []
current_card = ""
for line in input_file:
for line in file:
current_card += line
if "END:VCARD" in line:
contact = Contact.from_vcard(current_card)
if check_for_multiple_pictures:
if "PHOTO" in contact.custom and len(contact.custom["PHOTO"]) > 1:
os.makedirs("multiple_pictures/" + contact.fn, exist_ok=True)
for image in range(len(contact.custom["PHOTO"])):
print(contact.custom["PHOTO"][image])
with open("photo/" + contact.fn + "/" + str(image) + ".jpg", "wb") as f:
f.write(base64.decodebytes(str.encode(contact.custom["PHOTO"][image])))
if "PHOTO" in contact.custom:
os.makedirs("pictures/" + contact.fn, exist_ok=True)
with open("pictures/" + contact.fn + "/profile.jpg", "wb") as f:
f.write(base64.decodebytes(str.encode(contact.custom["PHOTO"][0])))
contact.photo_path = "pictures/" + contact.fn + "/profile.jpg"
contact.custom = {}
clean_tel = []
for number in contact.tel:
try:
number = number["value"]
number = number.replace("-", "")
number = phonenumbers.parse(number, region="FR")
number = phonenumbers.format_number(number, phonenumbers.PhoneNumberFormat.INTERNATIONAL)
clean_tel.append({"value": number, "type": []})
except phonenumbers.phonenumberutil.NumberParseException:
continue
contact.tel = clean_tel
if "PHOTO" in contact.custom and len(contact.custom["PHOTO"]) > 1:
os.makedirs("photo/" + contact.fn, exist_ok=True)
for image in range(len(contact.custom["PHOTO"])):
with open("photo/" + contact.fn + "/" + str(image) + ".jpg", "wb") as f:
f.write(base64.decodebytes(str.encode(contact.custom["PHOTO"][image])))
cards.append(contact)
current_card = ""
continue
output = open('output.vcf', 'w')
for card in cards:
vcf_text = card.to_vcard()
output.write(vcf_text)
# contact = Contact.from_vcard(cards[156])
# print(contact.custom["PHOTO"])
# vcf_text = contact.to_vcard()
# print(vcf_text)
# open('test.vcf', 'w').write(vcf_text)
print(len(cards))