|
feisty meow concerns codebase 2.140
|
Go to the source code of this file.
Namespaces | |
| namespace | eml_to_txt |
Functions | |
| eml_to_txt.file_exists (f) | |
| eml_to_txt.save_file (fn, cont) | |
| eml_to_txt.construct_name (id, fn) | |
| eml_to_txt.disqo (s) | |
| eml_to_txt.disgra (s) | |
| eml_to_txt.pullout (m, key) | |
| eml_to_txt.extract (msgfile, key) | |
| eml_to_txt.clean_header (h) | |
| eml_to_txt.caption (origin) | |
Variables | |
| str | eml_to_txt.startdirname = "Email" |
| int | eml_to_txt.num = 1 |
| eml_to_txt.nam = i[:-4] | |
| str | eml_to_txt.path = "./" + startdirname + str(num) + "/" + nam |
| eml_to_txt.f = open(i, "r") | |
| eml_to_txt.emailDict = extract(f, f.name) | |
| str | eml_to_txt.textFile = "" |
| eml_to_txt.froms = emailDict["from"] | |
| eml_to_txt.tos = emailDict["to"] | |
| eml_to_txt.subject = emailDict["subject"] | |
| eml_to_txt.parts = emailDict["parts"] | |
| eml_to_txt.date = emailDict["date"] | |
| eml_to_txt.txt = emailDict["text"] | |
| eml_to_txt.html = emailDict["html"] | |
| list | eml_to_txt.files = [] |
| eml_to_txt.wf = open("./" + startdirname + str(num) + "/" + nam + "/" + "txt_" + nam + ".txt", "w") | |