diff --git a/backupy/sms-20241116201536.xml b/backupy/sms-20241116201536.xml new file mode 100644 index 0000000..52d6b60 --- /dev/null +++ b/backupy/sms-20241116201536.xml @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sms_count.py b/sms_count_1.py similarity index 90% rename from sms_count.py rename to sms_count_1.py index b6e3591..95e5465 100644 --- a/sms_count.py +++ b/sms_count_1.py @@ -1,149 +1,151 @@ -import xml.etree.ElementTree as ET -from unidecode import unidecode #### ! ! ! pip install Unidecode ! ! ! ! - -# important settings ! -soubor = 'sms-20241116201536.xml' -time_after = 1 -zaznam_file = "relevant_sms_test1.txt" -# - -kandidati = {"prima" : 0, - "sekunda" : 0, - "tercie" : 0, - "kvarta" : 0, - "kvinta" : 0, - "sexta" : 0, - "septima" : 0, - "oktava" : 0, - "1a" : 0, - "2a" : 0, - "3a" : 0, - "4a" : 0} - -kandidati = {"bogus" : 0, - "sigma" : 0, - "ahoj" : 0} -# important settings ! - -### -### - -class Sms_hlas(): - def __init__(self, author, content, kandidati): - self.author = author - self.content = content - self.kandidati = kandidati - -### -### - -def zpracuj_sms(): - tree = ET.parse(soubor) - root = tree.getroot() - - hlasy = [] # = relevant sms - sms_count = 0 - relevant = 0 - - for child in root: - sms_count += 1 - date = int(child.get('date')) - content = unidecode(child.get('body')).lower() - author = child.get('address') - - if date >= time_after: - relevant += 1 - hlasy.append(Sms_hlas(author, content, [])) - else: - continue - - return(hlasy, sms_count, relevant) - -zpracovane = zpracuj_sms() -sms_count = zpracovane[1] -relevant = zpracovane[2] -hlasy = zpracovane[0] - -### -### - -def najdi_kandidaty(hlasy, kandidati): - - for h in hlasy: - for k in kandidati: - if k in h.content: - h.kandidati.append(k) - else: - continue - - return(hlasy) - -zpracovane_hlasy = najdi_kandidaty(hlasy, kandidati) - -### -### - -def spocitej_kandidaty(zprac_hlasy, kandidati): - neplatne_hlasy = [] - platne_hlasy = [] - prazdne_hlasy = [] - - for h in zprac_hlasy: - if len(h.kandidati) > 1: - neplatne_hlasy.append(h) - elif len(h.kandidati) == 1: - for k in kandidati: - if k in h.kandidati: - kandidati[k] += 1 - platne_hlasy.append(h) - else: - continue - else: - prazdne_hlasy.append(h) - - return(kandidati, neplatne_hlasy, platne_hlasy, prazdne_hlasy) - - -spocitane = spocitej_kandidaty(zpracovane_hlasy, kandidati) - -kandidati = spocitane[0] -neplatne_hlasy = spocitane[1] -platne_hlasy = spocitane[2] -prazdne_hlasy = spocitane[3] - -### -### - -def zapis_do_zaznamu(zaznam, nazev, list): - - zaznam.write(f"\n\n\n{nazev} - {len(list)}\n") - for i in list: - zaznam.write(f"Autor: {i.author} ----- Kandidati: {i.kandidati} ----- Content: {i.content}\n") - -def prite(zaznam, msg): - zaznam.write(f"{msg}\n") - print(msg) - -### -### - -file = open(zaznam_file, 'a') -zapis_do_zaznamu(file, "ZAZNAMENANE HLASY", zpracovane_hlasy) -zapis_do_zaznamu(file, "PLATNE HLASY", platne_hlasy) -zapis_do_zaznamu(file, "NEPLTANE HLASY", neplatne_hlasy) -zapis_do_zaznamu(file, "PRAZDNE HLASY", prazdne_hlasy) - - -prite(file, "\n\n- - - - - - - - - - - - - - - - - - -") - - -prite(file, f"sms:{sms_count} relevant:{relevant}-{len(hlasy)}") -prite(file, f"platne:{len(platne_hlasy)} neplatne:{len(neplatne_hlasy)} prazdne:{len(prazdne_hlasy)}\n") - -prite(file, "VYSLEDKY") -sorted_items = sorted(kandidati.items(), key=lambda kv: (kv[1], kv[0])) -for k in sorted_items: - prite(file, f"{k[0]} -> {k[1]}") - - -prite(file, "- - - - - - - - - - - - - - - - - - - ") \ No newline at end of file +import xml.etree.ElementTree as ET +from unidecode import unidecode #### ! ! ! pip install Unidecode ! ! ! ! + +#processes sms messages from locally exported xml table from "sms backup & restore" app on android + +# important settings ! +soubor = 'sms-20241116201536.xml' +time_after = 1731312702226 +zaznam_file = "relevant_sms_test1.txt" +# + +kandidati = {"prima" : 0, + "sekunda" : 0, + "tercie" : 0, + "kvarta" : 0, + "kvinta" : 0, + "sexta" : 0, + "septima" : 0, + "oktava" : 0, + "1a" : 0, + "2a" : 0, + "3a" : 0, + "4a" : 0} + +kandidati = {"bogus" : 0, + "sigma" : 0, + "ahoj" : 0} +# important settings ! + +### +### + +class Sms_hlas(): + def __init__(self, author, content, kandidati): + self.author = author + self.content = content + self.kandidati = kandidati + +### +### + +def zpracuj_sms(): #podle data + tree = ET.parse(soubor) + root = tree.getroot() + + hlasy = [] # = relevant sms + sms_count = 0 + relevant = 0 + + for child in root: + sms_count += 1 + date = int(child.get('date')) + content = unidecode(child.get('body')).lower() + author = child.get('address') + + if date >= time_after: + relevant += 1 + hlasy.append(Sms_hlas(author, content, [])) #obsah listu + else: + continue + + return(hlasy, sms_count, relevant) + +zpracovane = zpracuj_sms() +sms_count = zpracovane[1] +relevant = zpracovane[2] +hlasy = zpracovane[0] + +### +### + +def najdi_kandidaty(hlasy, kandidati): + + for h in hlasy: + for k in kandidati: + if k in h.content: + h.kandidati.append(k) + else: + continue + + return(hlasy) + +zpracovane_hlasy = najdi_kandidaty(hlasy, kandidati) + +### +### + +def spocitej_kandidaty(zprac_hlasy, kandidati): + neplatne_hlasy = [] + platne_hlasy = [] + prazdne_hlasy = [] + + for h in zprac_hlasy: + if len(h.kandidati) > 1: + neplatne_hlasy.append(h) + elif len(h.kandidati) == 1: + for k in kandidati: + if k in h.kandidati: + kandidati[k] += 1 + platne_hlasy.append(h) + else: + continue + else: + prazdne_hlasy.append(h) + + return(kandidati, neplatne_hlasy, platne_hlasy, prazdne_hlasy) + + +spocitane = spocitej_kandidaty(zpracovane_hlasy, kandidati) + +kandidati = spocitane[0] +neplatne_hlasy = spocitane[1] +platne_hlasy = spocitane[2] +prazdne_hlasy = spocitane[3] + +### +### + +def zapis_do_zaznamu(zaznam, nazev, list): + + zaznam.write(f"\n\n\n{nazev} - {len(list)}\n") + for i in list: + zaznam.write(f"Autor: {i.author} ----- Kandidati: {i.kandidati} ----- Content: {i.content}\n") + +def prite(zaznam, msg): + zaznam.write(f"{msg}\n") + print(msg) + +### +### + +file = open(zaznam_file, 'a') +zapis_do_zaznamu(file, "ZAZNAMENANE HLASY", zpracovane_hlasy) +zapis_do_zaznamu(file, "PLATNE HLASY", platne_hlasy) +zapis_do_zaznamu(file, "NEPLTANE HLASY", neplatne_hlasy) +zapis_do_zaznamu(file, "PRAZDNE HLASY", prazdne_hlasy) + + +prite(file, "\n\n- - - - - - - - - - - - - - - - - - -") + + +prite(file, f"sms:{sms_count} relevant(in time):{relevant}-{len(hlasy)}") +prite(file, f"platne:{len(platne_hlasy)} neplatne:{len(neplatne_hlasy)} prazdne:{len(prazdne_hlasy)}\n") + +prite(file, "VYSLEDKY") +sorted_items = sorted(kandidati.items(), key=lambda kv: (kv[1], kv[0])) +for k in sorted_items: + prite(file, f"{k[0]} -> {k[1]}") + + +prite(file, "- - - - - - - - - - - - - - - - - - - ") diff --git a/sms_count_2.py b/sms_count_2.py new file mode 100644 index 0000000..7e9b253 --- /dev/null +++ b/sms_count_2.py @@ -0,0 +1,169 @@ +import xml.etree.ElementTree as ET +from unidecode import unidecode #### ! ! ! pip install Unidecode ! ! ! ! +from datetime import datetime +import time + +# this code processes sms messages from locally exported xml table from "sms backup & restore" app on android + + +############################################################################################## +# ! important settings ! ##################################################################### +soubor = 'backupy/sms-20241116201536.xml' +time_after = 1 +# + spravne nastavit kandidati o par radku nize!!!!########################################### +############################################################################################## + + +ted = time.strftime("%Y-%m-%d_%H-%M-%S", time.localtime()) +zaznam_file = f"zaznamy/bezec_{ted}.txt" + +kandidati = {"prima" : 0, + "sekunda" : 0, + "tercie" : 0, + "kvarta" : 0, + "kvinta" : 0, + "sexta" : 0, + "septima" : 0, + "oktava" : 0, + "1a" : 0, + "2a" : 0, + "3a" : 0, + "4a" : 0} + +kandidati = {"bogus" : 0, + "sigma" : 0, + "ahoj" : 0} +# important settings ! + +### +### + +class Sms_hlas(): + def __init__(self, author, content, kandidati): + self.author = author + self.content = content + self.kandidati = kandidati + +### +### + +def zpracuj_sms(): #podle data a podle posledni od telefonniho cisla + tree = ET.parse(soubor) + root = tree.getroot() + + hlasy = [] # = relevant sms + volici = {} # = pocet sms na volice/telefonni cislo + sms_count = 0 + relevant = 0 + + for child in root: + sms_count += 1 + date = int(child.get('date')) + content = unidecode(child.get('body')).lower() + author = child.get('address') + + if date >= time_after: + if author not in volici: + volici[author] = 1 + relevant += 1 + hlasy.append(Sms_hlas(author, content, [])) #obsah listu + else: + volici[author] += 1 + else: + continue + + return(hlasy, sms_count, relevant, volici) + +zpracovane = zpracuj_sms() +sms_count = zpracovane[1] +relevant = zpracovane[2] +hlasy = zpracovane[0] +volici = zpracovane[3] + +### +### + +def najdi_kandidaty(hlasy, kandidati): + + for h in hlasy: + for k in kandidati: + if k in h.content: + h.kandidati.append(k) + else: + continue + + return(hlasy) + +zpracovane_hlasy = najdi_kandidaty(hlasy, kandidati) + +### +### + +def spocitej_kandidaty(zprac_hlasy, kandidati): + neplatne_hlasy = [] + platne_hlasy = [] + prazdne_hlasy = [] + + for h in zprac_hlasy: + if len(h.kandidati) > 1: + neplatne_hlasy.append(h) + elif len(h.kandidati) == 1: + for k in kandidati: + if k in h.kandidati: + kandidati[k] += 1 + platne_hlasy.append(h) + else: + continue + else: + prazdne_hlasy.append(h) + + return(kandidati, neplatne_hlasy, platne_hlasy, prazdne_hlasy) + + +spocitane = spocitej_kandidaty(zpracovane_hlasy, kandidati) + +kandidati = spocitane[0] +neplatne_hlasy = spocitane[1] +platne_hlasy = spocitane[2] +prazdne_hlasy = spocitane[3] + +### +### + +def zapis_do_zaznamu(zaznam, nazev, list): + global volici + zaznam.write(f"\n\n\n{nazev} - {len(list)}\n") + for i in list: + zaznam.write(f"Autor: {i.author} ----- Kandidati: {i.kandidati} ----- Content: {i.content} ----- posledni z {volici[i.author]}\n") + +def prite(zaznam, msg): + zaznam.write(f"{msg}\n") + print(msg) + +### +### + +file = open(zaznam_file, 'a') +zapis_do_zaznamu(file, "PLATNE HLASY", platne_hlasy) # jeden kandidat +zapis_do_zaznamu(file, "NEPLTANE HLASY", neplatne_hlasy) # vice jak jeden kandidat +zapis_do_zaznamu(file, "PRAZDNE HLASY", prazdne_hlasy) # zadny kandidat +zapis_do_zaznamu(file, "VSECHNY HLASY", zpracovane_hlasy) # vsechny hlasy po urcitem datu a posledni co telefonni cislo poslalo + + + + +file.write("\n\n\n\nCOMMAND PROMPT OUTPUT") +prite(file, "\n\n- - - - - - - - - - - - - - - - - - -") + + +prite(file, f"sms:{sms_count} relevant:{relevant}-{len(hlasy)}") +prite(file, f"platne:{len(platne_hlasy)} neplatne:{len(neplatne_hlasy)} prazdne:{len(prazdne_hlasy)}") +prite(file, f"ze souboru: {soubor} od casu: {time_after}\n") + +prite(file, "VYSLEDKY") +sorted_items = sorted(kandidati.items(), key=lambda kv: (kv[1], kv[0])) +for k in sorted_items: + prite(file, f"{k[0]} -> {k[1]}") + + +prite(file, "- - - - - - - - - - - - - - - - - - - ") \ No newline at end of file diff --git a/zaznamy/bezec_2024-11-21_17-35-35.txt b/zaznamy/bezec_2024-11-21_17-35-35.txt new file mode 100644 index 0000000..860d11c --- /dev/null +++ b/zaznamy/bezec_2024-11-21_17-35-35.txt @@ -0,0 +1,39 @@ + + + +PLATNE HLASY - 2 +Autor: +420735935604 ----- Kandidati: ['bogus'] ----- Content: bogus +Autor: +420731134090 ----- Kandidati: ['ahoj'] ----- Content: ahoj + + + +NEPLTANE HLASY - 0 + + + +PRAZDNE HLASY - 4 +Autor: 8866 ----- Kandidati: [] ----- Content: vitejte u sazkamobilu! vase cislo je 420704541156. volate za 2,50kc, sms za 1,50kc. kredit zjistite zaslanim kodu k na 8866, radi vas uslysime na *11. hezky den! +Autor: +420732440689 ----- Kandidati: [] ----- Content: gae +Autor: +420607031309 ----- Kandidati: [] ----- Content: amongus +Autor: +420775399726 ----- Kandidati: [] ----- Content: 1 + + + +POSLEDNI HLASY - 6 +Autor: 8866 ----- Kandidati: [] ----- Content: vitejte u sazkamobilu! vase cislo je 420704541156. volate za 2,50kc, sms za 1,50kc. kredit zjistite zaslanim kodu k na 8866, radi vas uslysime na *11. hezky den! +Autor: +420735935604 ----- Kandidati: ['bogus'] ----- Content: bogus +Autor: +420732440689 ----- Kandidati: [] ----- Content: gae +Autor: +420607031309 ----- Kandidati: [] ----- Content: amongus +Autor: +420775399726 ----- Kandidati: [] ----- Content: 1 +Autor: +420731134090 ----- Kandidati: ['ahoj'] ----- Content: ahoj + + +- - - - - - - - - - - - - - - - - - - +sms:116 relevant:6-6 +platne:2 neplatne:0 prazdne:4 + +VYSLEDKY +sigma -> 0 +ahoj -> 1 +bogus -> 1 +- - - - - - - - - - - - - - - - - - - diff --git a/zaznamy/bezec_2024-11-21_17-39-16.txt b/zaznamy/bezec_2024-11-21_17-39-16.txt new file mode 100644 index 0000000..e6382b3 --- /dev/null +++ b/zaznamy/bezec_2024-11-21_17-39-16.txt @@ -0,0 +1,40 @@ + + + +PLATNE HLASY - 2 +Autor: +420735935604 ----- Kandidati: ['bogus'] ----- Content: bogus +Autor: +420731134090 ----- Kandidati: ['ahoj'] ----- Content: ahoj + + + +NEPLTANE HLASY - 0 + + + +PRAZDNE HLASY - 4 +Autor: 8866 ----- Kandidati: [] ----- Content: vitejte u sazkamobilu! vase cislo je 420704541156. volate za 2,50kc, sms za 1,50kc. kredit zjistite zaslanim kodu k na 8866, radi vas uslysime na *11. hezky den! +Autor: +420732440689 ----- Kandidati: [] ----- Content: gae +Autor: +420607031309 ----- Kandidati: [] ----- Content: amongus +Autor: +420775399726 ----- Kandidati: [] ----- Content: 1 + + + +POSLEDNI HLASY - 6 +Autor: 8866 ----- Kandidati: [] ----- Content: vitejte u sazkamobilu! vase cislo je 420704541156. volate za 2,50kc, sms za 1,50kc. kredit zjistite zaslanim kodu k na 8866, radi vas uslysime na *11. hezky den! +Autor: +420735935604 ----- Kandidati: ['bogus'] ----- Content: bogus +Autor: +420732440689 ----- Kandidati: [] ----- Content: gae +Autor: +420607031309 ----- Kandidati: [] ----- Content: amongus +Autor: +420775399726 ----- Kandidati: [] ----- Content: 1 +Autor: +420731134090 ----- Kandidati: ['ahoj'] ----- Content: ahoj + + +- - - - - - - - - - - - - - - - - - - +sms:116 relevant:6-6 +platne:2 neplatne:0 prazdne:4 + +ze souboru: backupy/sms-20241116201536.xml +VYSLEDKY +sigma -> 0 +ahoj -> 1 +bogus -> 1 +- - - - - - - - - - - - - - - - - - - diff --git a/zaznamy/bezec_2024-11-21_17-45-55.txt b/zaznamy/bezec_2024-11-21_17-45-55.txt new file mode 100644 index 0000000..da97041 --- /dev/null +++ b/zaznamy/bezec_2024-11-21_17-45-55.txt @@ -0,0 +1,40 @@ + + + +PLATNE HLASY - 2 +Autor: +420735935604 ----- Kandidati: ['bogus'] ----- Content: bogus ----- posledni z: 10 +Autor: +420731134090 ----- Kandidati: ['ahoj'] ----- Content: ahoj ----- posledni z: 7 + + + +NEPLTANE HLASY - 0 + + + +PRAZDNE HLASY - 4 +Autor: 8866 ----- Kandidati: [] ----- Content: vitejte u sazkamobilu! vase cislo je 420704541156. volate za 2,50kc, sms za 1,50kc. kredit zjistite zaslanim kodu k na 8866, radi vas uslysime na *11. hezky den! ----- posledni z: 10 +Autor: +420732440689 ----- Kandidati: [] ----- Content: gae ----- posledni z: 48 +Autor: +420607031309 ----- Kandidati: [] ----- Content: amongus ----- posledni z: 28 +Autor: +420775399726 ----- Kandidati: [] ----- Content: 1 ----- posledni z: 13 + + + +VSECHNY HLASY HLASY (z backupu po zadanem case a posledni co cislo poslalo) - 6 +Autor: 8866 ----- Kandidati: [] ----- Content: vitejte u sazkamobilu! vase cislo je 420704541156. volate za 2,50kc, sms za 1,50kc. kredit zjistite zaslanim kodu k na 8866, radi vas uslysime na *11. hezky den! ----- posledni z: 10 +Autor: +420735935604 ----- Kandidati: ['bogus'] ----- Content: bogus ----- posledni z: 10 +Autor: +420732440689 ----- Kandidati: [] ----- Content: gae ----- posledni z: 48 +Autor: +420607031309 ----- Kandidati: [] ----- Content: amongus ----- posledni z: 28 +Autor: +420775399726 ----- Kandidati: [] ----- Content: 1 ----- posledni z: 13 +Autor: +420731134090 ----- Kandidati: ['ahoj'] ----- Content: ahoj ----- posledni z: 7 + + +- - - - - - - - - - - - - - - - - - - +sms:116 relevant:6-6 +platne:2 neplatne:0 prazdne:4 +ze souboru: backupy/sms-20241116201536.xml od casu: 1 + +VYSLEDKY +sigma -> 0 +ahoj -> 1 +bogus -> 1 +- - - - - - - - - - - - - - - - - - - diff --git a/zaznamy/bezec_2024-11-21_17-48-25.txt b/zaznamy/bezec_2024-11-21_17-48-25.txt new file mode 100644 index 0000000..d366a2a --- /dev/null +++ b/zaznamy/bezec_2024-11-21_17-48-25.txt @@ -0,0 +1,40 @@ + + + +PLATNE HLASY - 2 +Autor: +420735935604 ----- Kandidati: ['bogus'] ----- Content: bogus ----- posledni z: 10 +Autor: +420731134090 ----- Kandidati: ['ahoj'] ----- Content: ahoj ----- posledni z: 7 + + + +NEPLTANE HLASY - 0 + + + +PRAZDNE HLASY - 4 +Autor: 8866 ----- Kandidati: [] ----- Content: vitejte u sazkamobilu! vase cislo je 420704541156. volate za 2,50kc, sms za 1,50kc. kredit zjistite zaslanim kodu k na 8866, radi vas uslysime na *11. hezky den! ----- posledni z: 10 +Autor: +420732440689 ----- Kandidati: [] ----- Content: gae ----- posledni z: 48 +Autor: +420607031309 ----- Kandidati: [] ----- Content: amongus ----- posledni z: 28 +Autor: +420775399726 ----- Kandidati: [] ----- Content: 1 ----- posledni z: 13 + + + +VSECHNY HLASY HLASY (z backupu po zadanem case a posledni co cislo poslalo) - 6 +Autor: 8866 ----- Kandidati: [] ----- Content: vitejte u sazkamobilu! vase cislo je 420704541156. volate za 2,50kc, sms za 1,50kc. kredit zjistite zaslanim kodu k na 8866, radi vas uslysime na *11. hezky den! ----- posledni z: 10 +Autor: +420735935604 ----- Kandidati: ['bogus'] ----- Content: bogus ----- posledni z: 10 +Autor: +420732440689 ----- Kandidati: [] ----- Content: gae ----- posledni z: 48 +Autor: +420607031309 ----- Kandidati: [] ----- Content: amongus ----- posledni z: 28 +Autor: +420775399726 ----- Kandidati: [] ----- Content: 1 ----- posledni z: 13 +Autor: +420731134090 ----- Kandidati: ['ahoj'] ----- Content: ahoj ----- posledni z: 7 +COMMAND PROMPT OUTPUT + +- - - - - - - - - - - - - - - - - - - +sms:116 relevant:6-6 +platne:2 neplatne:0 prazdne:4 +ze souboru: backupy/sms-20241116201536.xml od casu: 1 + +VYSLEDKY +sigma -> 0 +ahoj -> 1 +bogus -> 1 +- - - - - - - - - - - - - - - - - - - diff --git a/zaznamy/bezec_2024-11-21_17-48-45.txt b/zaznamy/bezec_2024-11-21_17-48-45.txt new file mode 100644 index 0000000..c3e884f --- /dev/null +++ b/zaznamy/bezec_2024-11-21_17-48-45.txt @@ -0,0 +1,44 @@ + + + +PLATNE HLASY - 2 +Autor: +420735935604 ----- Kandidati: ['bogus'] ----- Content: bogus ----- posledni z: 10 +Autor: +420731134090 ----- Kandidati: ['ahoj'] ----- Content: ahoj ----- posledni z: 7 + + + +NEPLTANE HLASY - 0 + + + +PRAZDNE HLASY - 4 +Autor: 8866 ----- Kandidati: [] ----- Content: vitejte u sazkamobilu! vase cislo je 420704541156. volate za 2,50kc, sms za 1,50kc. kredit zjistite zaslanim kodu k na 8866, radi vas uslysime na *11. hezky den! ----- posledni z: 10 +Autor: +420732440689 ----- Kandidati: [] ----- Content: gae ----- posledni z: 48 +Autor: +420607031309 ----- Kandidati: [] ----- Content: amongus ----- posledni z: 28 +Autor: +420775399726 ----- Kandidati: [] ----- Content: 1 ----- posledni z: 13 + + + +VSECHNY HLASY HLASY (z backupu po zadanem case a posledni co cislo poslalo) - 6 +Autor: 8866 ----- Kandidati: [] ----- Content: vitejte u sazkamobilu! vase cislo je 420704541156. volate za 2,50kc, sms za 1,50kc. kredit zjistite zaslanim kodu k na 8866, radi vas uslysime na *11. hezky den! ----- posledni z: 10 +Autor: +420735935604 ----- Kandidati: ['bogus'] ----- Content: bogus ----- posledni z: 10 +Autor: +420732440689 ----- Kandidati: [] ----- Content: gae ----- posledni z: 48 +Autor: +420607031309 ----- Kandidati: [] ----- Content: amongus ----- posledni z 28 +Autor: +420775399726 ----- Kandidati: [] ----- Content: 1 ----- posledni z: 13 +Autor: +420731134090 ----- Kandidati: ['ahoj'] ----- Content: ahoj ----- posledni z: 7 + + + + +COMMAND PROMPT OUTPUT + +- - - - - - - - - - - - - - - - - - - +sms:116 relevant:6-6 +platne:2 neplatne:0 prazdne:4 +ze souboru: backupy/sms-20241116201536.xml od casu: 1 + +VYSLEDKY +sigma -> 0 +ahoj -> 1 +bogus -> 1 +- - - - - - - - - - - - - - - - - - - diff --git a/zaznamy/bezec_2024-11-21_17-52-05.txt b/zaznamy/bezec_2024-11-21_17-52-05.txt new file mode 100644 index 0000000..8919dbe --- /dev/null +++ b/zaznamy/bezec_2024-11-21_17-52-05.txt @@ -0,0 +1,44 @@ + + + +PLATNE HLASY - 2 +Autor: +420735935604 ----- Kandidati: ['bogus'] ----- Content: bogus ----- posledni z 10 +Autor: +420731134090 ----- Kandidati: ['ahoj'] ----- Content: ahoj ----- posledni z 7 + + + +NEPLTANE HLASY - 0 + + + +PRAZDNE HLASY - 4 +Autor: 8866 ----- Kandidati: [] ----- Content: vitejte u sazkamobilu! vase cislo je 420704541156. volate za 2,50kc, sms za 1,50kc. kredit zjistite zaslanim kodu k na 8866, radi vas uslysime na *11. hezky den! ----- posledni z 10 +Autor: +420732440689 ----- Kandidati: [] ----- Content: gae ----- posledni z 48 +Autor: +420607031309 ----- Kandidati: [] ----- Content: amongus ----- posledni z 28 +Autor: +420775399726 ----- Kandidati: [] ----- Content: 1 ----- posledni z 13 + + + +VSECHNY HLASY HLASY - 6 +Autor: 8866 ----- Kandidati: [] ----- Content: vitejte u sazkamobilu! vase cislo je 420704541156. volate za 2,50kc, sms za 1,50kc. kredit zjistite zaslanim kodu k na 8866, radi vas uslysime na *11. hezky den! ----- posledni z 10 +Autor: +420735935604 ----- Kandidati: ['bogus'] ----- Content: bogus ----- posledni z 10 +Autor: +420732440689 ----- Kandidati: [] ----- Content: gae ----- posledni z 48 +Autor: +420607031309 ----- Kandidati: [] ----- Content: amongus ----- posledni z 28 +Autor: +420775399726 ----- Kandidati: [] ----- Content: 1 ----- posledni z 13 +Autor: +420731134090 ----- Kandidati: ['ahoj'] ----- Content: ahoj ----- posledni z 7 + + + + +COMMAND PROMPT OUTPUT + +- - - - - - - - - - - - - - - - - - - +sms:116 relevant:6-6 +platne:2 neplatne:0 prazdne:4 +ze souboru: backupy/sms-20241116201536.xml od casu: 1 + +VYSLEDKY +sigma -> 0 +ahoj -> 1 +bogus -> 1 +- - - - - - - - - - - - - - - - - - - diff --git a/zaznamy/bezec_2024-11-21_17-54-33.txt b/zaznamy/bezec_2024-11-21_17-54-33.txt new file mode 100644 index 0000000..bd1e049 --- /dev/null +++ b/zaznamy/bezec_2024-11-21_17-54-33.txt @@ -0,0 +1,44 @@ + + + +PLATNE HLASY - 2 +Autor: +420735935604 ----- Kandidati: ['bogus'] ----- Content: bogus ----- posledni z 10 +Autor: +420731134090 ----- Kandidati: ['ahoj'] ----- Content: ahoj ----- posledni z 7 + + + +NEPLTANE HLASY - 0 + + + +PRAZDNE HLASY - 4 +Autor: 8866 ----- Kandidati: [] ----- Content: vitejte u sazkamobilu! vase cislo je 420704541156. volate za 2,50kc, sms za 1,50kc. kredit zjistite zaslanim kodu k na 8866, radi vas uslysime na *11. hezky den! ----- posledni z 10 +Autor: +420732440689 ----- Kandidati: [] ----- Content: gae ----- posledni z 48 +Autor: +420607031309 ----- Kandidati: [] ----- Content: amongus ----- posledni z 28 +Autor: +420775399726 ----- Kandidati: [] ----- Content: 1 ----- posledni z 13 + + + +VSECHNY HLASY - 6 +Autor: 8866 ----- Kandidati: [] ----- Content: vitejte u sazkamobilu! vase cislo je 420704541156. volate za 2,50kc, sms za 1,50kc. kredit zjistite zaslanim kodu k na 8866, radi vas uslysime na *11. hezky den! ----- posledni z 10 +Autor: +420735935604 ----- Kandidati: ['bogus'] ----- Content: bogus ----- posledni z 10 +Autor: +420732440689 ----- Kandidati: [] ----- Content: gae ----- posledni z 48 +Autor: +420607031309 ----- Kandidati: [] ----- Content: amongus ----- posledni z 28 +Autor: +420775399726 ----- Kandidati: [] ----- Content: 1 ----- posledni z 13 +Autor: +420731134090 ----- Kandidati: ['ahoj'] ----- Content: ahoj ----- posledni z 7 + + + + +COMMAND PROMPT OUTPUT + +- - - - - - - - - - - - - - - - - - - +sms:116 relevant:6-6 +platne:2 neplatne:0 prazdne:4 +ze souboru: backupy/sms-20241116201536.xml od casu: 1 + +VYSLEDKY +sigma -> 0 +ahoj -> 1 +bogus -> 1 +- - - - - - - - - - - - - - - - - - -