epstein-files 1.2.1__py3-none-any.whl → 1.2.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- epstein_files/__init__.py +31 -6
- epstein_files/documents/document.py +5 -1
- epstein_files/documents/email.py +192 -203
- epstein_files/epstein_files.py +2 -3
- epstein_files/person.py +29 -9
- epstein_files/util/constant/names.py +9 -7
- epstein_files/util/constant/output_files.py +8 -5
- epstein_files/util/constant/strings.py +2 -1
- epstein_files/util/constant/urls.py +13 -2
- epstein_files/util/constants.py +35 -11
- epstein_files/util/data.py +1 -0
- epstein_files/util/env.py +9 -6
- epstein_files/util/highlighted_group.py +263 -117
- epstein_files/util/output.py +18 -9
- epstein_files/util/rich.py +7 -2
- epstein_files/util/word_count.py +1 -1
- {epstein_files-1.2.1.dist-info → epstein_files-1.2.5.dist-info}/METADATA +1 -1
- epstein_files-1.2.5.dist-info/RECORD +34 -0
- epstein_files-1.2.1.dist-info/RECORD +0 -34
- {epstein_files-1.2.1.dist-info → epstein_files-1.2.5.dist-info}/LICENSE +0 -0
- {epstein_files-1.2.1.dist-info → epstein_files-1.2.5.dist-info}/WHEEL +0 -0
- {epstein_files-1.2.1.dist-info → epstein_files-1.2.5.dist-info}/entry_points.txt +0 -0
epstein_files/util/output.py
CHANGED
|
@@ -5,7 +5,7 @@ from typing import cast
|
|
|
5
5
|
from rich.padding import Padding
|
|
6
6
|
|
|
7
7
|
from epstein_files.documents.document import Document
|
|
8
|
-
from epstein_files.documents.email import Email
|
|
8
|
+
from epstein_files.documents.email import INTERESTING_TRUNCATION_LENGTHS, Email
|
|
9
9
|
from epstein_files.documents.messenger_log import MessengerLog
|
|
10
10
|
from epstein_files.documents.other_file import FIRST_FEW_LINES, OtherFile
|
|
11
11
|
from epstein_files.epstein_files import EpsteinFiles, count_by_month
|
|
@@ -40,15 +40,15 @@ DEFAULT_EMAILERS = [
|
|
|
40
40
|
STEVEN_HOFFENBERG,
|
|
41
41
|
MASHA_DROKOVA,
|
|
42
42
|
EHUD_BARAK,
|
|
43
|
-
MARTIN_NOWAK,
|
|
44
43
|
STEVE_BANNON,
|
|
45
44
|
TYLER_SHEARS,
|
|
46
45
|
JIDE_ZEITLIN,
|
|
47
46
|
CHRISTINA_GALBRAITH,
|
|
48
|
-
DAVID_STERN,
|
|
49
47
|
MOHAMED_WAHEED_HASSAN,
|
|
50
48
|
JENNIFER_JACQUET,
|
|
51
49
|
ZUBAIR_KHAN,
|
|
50
|
+
ROSS_GOW,
|
|
51
|
+
DAVID_BLAINE,
|
|
52
52
|
None,
|
|
53
53
|
JEFFREY_EPSTEIN,
|
|
54
54
|
]
|
|
@@ -56,19 +56,28 @@ DEFAULT_EMAILERS = [
|
|
|
56
56
|
INTERESTING_EMAIL_IDS = [
|
|
57
57
|
'032229', # Michael Wolff on strategy
|
|
58
58
|
'028784', # seminars: Money / Power
|
|
59
|
-
'029342', # Hakeem Jeffries
|
|
60
|
-
'023454', # Email invitation sent to tech CEOs + Epstein
|
|
61
59
|
'030630', # 'What happens with zubair's project?'
|
|
62
60
|
'033178', # 'How is it going with Zubair?'
|
|
63
61
|
'022396', # Ukraine friend
|
|
64
62
|
'026505', # I know how dirty trump is
|
|
65
63
|
'029679', # Trump's driver was the bag man
|
|
66
|
-
'
|
|
67
|
-
'023627', # Michael Wolff article w/Brock
|
|
64
|
+
'026258', '026260', # Bannon cripto coin issues
|
|
68
65
|
'032359', # Jabor e-currency
|
|
69
|
-
|
|
66
|
+
'031451', '031596', # "would you like photso of donald and girls in bikinis in my kitchen."
|
|
67
|
+
'031601', # Old gf i gave to donald
|
|
68
|
+
'030727', # David Stern "Death of chinese shareholder quite an issue. What can we do with Qataris here?"
|
|
69
|
+
'030725', # David Stern in Moscow
|
|
70
|
+
'029098', # Nowak, "her Skype contact is in moscow."
|
|
71
|
+
'030714', # Bannon, Russian Dugan shout out
|
|
72
|
+
'031659', # "i have met some very bad people „ none as bad as trump"
|
|
70
73
|
]
|
|
71
74
|
|
|
75
|
+
for id in INTERESTING_TRUNCATION_LENGTHS:
|
|
76
|
+
if id not in INTERESTING_EMAIL_IDS:
|
|
77
|
+
logger.debug(f"Adding INTERESTING_TRUNCATION_LENGTHS ID {id} to INTERESTING_EMAIL_IDS")
|
|
78
|
+
INTERESTING_EMAIL_IDS.append(id)
|
|
79
|
+
|
|
80
|
+
|
|
72
81
|
INTERESTING_TEXT_IDS = [
|
|
73
82
|
'027275', # "Crypto- Kerry- Qatar -sessions"
|
|
74
83
|
'027165', # melaniee walker crypto health
|
|
@@ -154,7 +163,7 @@ def print_emails_section(epstein_files: EpsteinFiles) -> list[Email]:
|
|
|
154
163
|
print_subtitle_panel(OTHER_INTERESTING_EMAILS_SUBTITLE)
|
|
155
164
|
console.line()
|
|
156
165
|
|
|
157
|
-
for other_email in extra_emails:
|
|
166
|
+
for other_email in Document.sort_by_timestamp(extra_emails):
|
|
158
167
|
console.print(other_email)
|
|
159
168
|
printed_emails.append(cast(Email, other_email))
|
|
160
169
|
|
epstein_files/util/rich.py
CHANGED
|
@@ -290,9 +290,14 @@ def write_html(output_path: Path | None) -> None:
|
|
|
290
290
|
logger.warning(f"Not writing HTML because args.build={args.build}.")
|
|
291
291
|
return
|
|
292
292
|
|
|
293
|
-
console.save_html(str(output_path), code_format=CONSOLE_HTML_FORMAT, theme=HTML_TERMINAL_THEME)
|
|
293
|
+
console.save_html(str(output_path), clear=False, code_format=CONSOLE_HTML_FORMAT, theme=HTML_TERMINAL_THEME)
|
|
294
294
|
log_file_write(output_path)
|
|
295
295
|
|
|
296
|
+
if args.write_txt:
|
|
297
|
+
txt_path = f"{output_path}.txt"
|
|
298
|
+
console.save_text(txt_path)
|
|
299
|
+
log_file_write(txt_path)
|
|
300
|
+
|
|
296
301
|
|
|
297
302
|
def _print_abbreviations_table() -> None:
|
|
298
303
|
table = build_table(title="Abbreviations Used Frequently In These Conversations", show_header=False)
|
|
@@ -331,7 +336,7 @@ def _print_social_media_links() -> None:
|
|
|
331
336
|
link_text_obj('https://universeodon.com/@cryptadamist/115572634993386057', '@mastodon', style=SOCIAL_MEDIA_LINK_STYLE),
|
|
332
337
|
link_text_obj(SUBSTACK_URL, '@substack', style=SOCIAL_MEDIA_LINK_STYLE),
|
|
333
338
|
link_text_obj('https://x.com/Cryptadamist/status/1990866804630036988', '@twitter', style=SOCIAL_MEDIA_LINK_STYLE),
|
|
334
|
-
link_text_obj(
|
|
339
|
+
link_text_obj(GH_PROJECT_URL, '@github', style=SOCIAL_MEDIA_LINK_STYLE)
|
|
335
340
|
]
|
|
336
341
|
|
|
337
342
|
print_centered(join_texts(social_links, join=' / '))#, encloser='()'))#, encloser='‹›'))
|
epstein_files/util/word_count.py
CHANGED
|
@@ -239,7 +239,7 @@ def write_word_counts_html() -> None:
|
|
|
239
239
|
console.print(word_count)
|
|
240
240
|
print_subtitle_panel(f"{len(COMMON_WORDS_LIST):,} Excluded Words")
|
|
241
241
|
console.print(', '.join(COMMON_WORDS_LIST), highlight=False)
|
|
242
|
-
write_html(WORD_COUNT_HTML_PATH)
|
|
242
|
+
write_html(WORD_COUNT_HTML_PATH if args.build else None)
|
|
243
243
|
timer.print_at_checkpoint(f"Finished counting words")
|
|
244
244
|
|
|
245
245
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: epstein-files
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.5
|
|
4
4
|
Summary: Tools for working with the Jeffrey Epstein documents released in November 2025.
|
|
5
5
|
Home-page: https://michelcrypt4d4mus.github.io/epstein_text_messages/
|
|
6
6
|
License: GPL-3.0-or-later
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
epstein_files/__init__.py,sha256=_7YTeRPEpqnY7XBBGvjLpk-G287D1NrYjldTinsKeoI,5899
|
|
2
|
+
epstein_files/documents/communication.py,sha256=QiCZ35R2ttlqcdovm5LBdGqgoj4xCcpl9ANqwlA9XGU,1752
|
|
3
|
+
epstein_files/documents/document.py,sha256=cJxL0UF8mtUvkUx1YGa62J24336DULVKLv1j6_d39Gg,19668
|
|
4
|
+
epstein_files/documents/email.py,sha256=ZylzikpeuiwhZsWVnfaYlO8llMjIfvAS2hQuuQELl6g,42343
|
|
5
|
+
epstein_files/documents/emails/email_header.py,sha256=3UD2pXMS9bRsFP4L5RSP2tSjI8OR6lq6gPKKao0DYLY,7739
|
|
6
|
+
epstein_files/documents/imessage/text_message.py,sha256=IexwwVeF14FZqD7IuK47bIHYam07ZcD3rxheVNULNkc,3394
|
|
7
|
+
epstein_files/documents/json_file.py,sha256=WcZW5NNqA67rHTdopbOGtup00muNaLlvrNgKb-K4zO8,1504
|
|
8
|
+
epstein_files/documents/messenger_log.py,sha256=1bv62WoQMKR3gYDrK9W3Xm7cqLbKrkRBV7NTFL2cexE,7349
|
|
9
|
+
epstein_files/documents/other_file.py,sha256=xZSILlnYlX2QIYCQCm6WNHvNqhF5do6AmxT7qxw-yog,9417
|
|
10
|
+
epstein_files/epstein_files.py,sha256=fHa50Xdxgc2Vw7YgcgS3vAjTqDp1L5yPWOWQ3sb4RlM,14021
|
|
11
|
+
epstein_files/person.py,sha256=lrBPCg1LFfd8koytEL0AOb8CcFKmJjLV9kAFqzGHHdU,14700
|
|
12
|
+
epstein_files/util/constant/common_words.py,sha256=C1JERPnOGHV2UMC71aEue1i9QTQog-RfT3IzdcYQOYQ,3702
|
|
13
|
+
epstein_files/util/constant/html.py,sha256=MFooFV8KfFBCm9hL1u6A3hi_u37i7lL6UKAYoKQj3PI,1505
|
|
14
|
+
epstein_files/util/constant/names.py,sha256=exsR_dtwVEANYFJSU1wk50hiqzAtfc8zQbaKKwgX42A,11408
|
|
15
|
+
epstein_files/util/constant/output_files.py,sha256=vxof85L-1GqSwss8XvLS3HZGguyWSzJkoJm1PrYYJ7g,2123
|
|
16
|
+
epstein_files/util/constant/strings.py,sha256=jh_ou1VoA-6T1ej9l7CFfETEOCuSCectqqK7ppBQz2I,2030
|
|
17
|
+
epstein_files/util/constant/urls.py,sha256=rFVU7824M1gAsmWLnAr-BBVOstlVwIsgyOlUWd1cdDk,6181
|
|
18
|
+
epstein_files/util/constants.py,sha256=ANm_qMYK-dpgg02W9i9PUYiOI2fqr_5aoa50AHOOKIo,123568
|
|
19
|
+
epstein_files/util/data.py,sha256=oZSrjzQSnXHtOlqxisodpH65cTGe57TfA3sZyQQzT7Q,3051
|
|
20
|
+
epstein_files/util/doc_cfg.py,sha256=gIBAoeheQYqqrCtVRU2ytYu799LyCiPxPyHDgWUad3c,9471
|
|
21
|
+
epstein_files/util/env.py,sha256=506dRXdetaKAHZ8vIacxA5x2Cv-IGBNYS8A0NQfMdUM,6961
|
|
22
|
+
epstein_files/util/file_helper.py,sha256=MpG1hI7DGs05fV9KSVb_ltc98DC8tv1E_TTo5X_E7Js,3010
|
|
23
|
+
epstein_files/util/highlighted_group.py,sha256=6EwCRVysWRzQOYu12ZKvVapKHTveSmnF-5bCZTsJtHk,62411
|
|
24
|
+
epstein_files/util/logging.py,sha256=pSLHGrUnPQGFMGYNIOTbZbCyy5dDOCbNrbNz22wIcZI,2099
|
|
25
|
+
epstein_files/util/output.py,sha256=ZNkx6iSJhaaeE3WkG3SDjgATL6pGkJpqzOCov7hZQW8,13221
|
|
26
|
+
epstein_files/util/rich.py,sha256=pp_rIfy8rrxDONvpcizQ6r-x3oeJXEqgCgaA3FNDIHI,13739
|
|
27
|
+
epstein_files/util/search_result.py,sha256=1fxe0KPBQXBk4dLfu6m0QXIzYfZCzvaSkWqvghJGzxY,567
|
|
28
|
+
epstein_files/util/timer.py,sha256=GZHefXiPA-prK-1szC1cebl44Y-i4Wd3K8zedFpcggg,1373
|
|
29
|
+
epstein_files/util/word_count.py,sha256=Ab0KSBv5oaee40h9MpGIlMNWRH4nAWDcMAq4A1TdpvA,9226
|
|
30
|
+
epstein_files-1.2.5.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
31
|
+
epstein_files-1.2.5.dist-info/METADATA,sha256=9cKpM9bg6-9MbKQ-EcX_S4oPBfS1a01FADl_2LbRvec,6222
|
|
32
|
+
epstein_files-1.2.5.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
33
|
+
epstein_files-1.2.5.dist-info/entry_points.txt,sha256=5qYgwAXpxegeAicD_rzda_trDRnUC51F5UVDpcZ7j6Q,240
|
|
34
|
+
epstein_files-1.2.5.dist-info/RECORD,,
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
epstein_files/__init__.py,sha256=zhFnPc-TFQLJIO0qnXJzDM1Bf_u8nv308GDKAvn405g,4831
|
|
2
|
-
epstein_files/documents/communication.py,sha256=QiCZ35R2ttlqcdovm5LBdGqgoj4xCcpl9ANqwlA9XGU,1752
|
|
3
|
-
epstein_files/documents/document.py,sha256=YwWHaiccKpYiS4UJAiGzDviyYV2hzdeee_vdX4ybhOo,19519
|
|
4
|
-
epstein_files/documents/email.py,sha256=xc2cv6KkMfKhNLMfqW6rmDDXn1ozRChao1i98-0byI8,42297
|
|
5
|
-
epstein_files/documents/emails/email_header.py,sha256=3UD2pXMS9bRsFP4L5RSP2tSjI8OR6lq6gPKKao0DYLY,7739
|
|
6
|
-
epstein_files/documents/imessage/text_message.py,sha256=IexwwVeF14FZqD7IuK47bIHYam07ZcD3rxheVNULNkc,3394
|
|
7
|
-
epstein_files/documents/json_file.py,sha256=WcZW5NNqA67rHTdopbOGtup00muNaLlvrNgKb-K4zO8,1504
|
|
8
|
-
epstein_files/documents/messenger_log.py,sha256=1bv62WoQMKR3gYDrK9W3Xm7cqLbKrkRBV7NTFL2cexE,7349
|
|
9
|
-
epstein_files/documents/other_file.py,sha256=xZSILlnYlX2QIYCQCm6WNHvNqhF5do6AmxT7qxw-yog,9417
|
|
10
|
-
epstein_files/epstein_files.py,sha256=D2yMCm1IM5Skojzvvlod6yTGI_nUtNQmwmX6dzv2Egs,14057
|
|
11
|
-
epstein_files/person.py,sha256=pESfBu2VvsLtrA86V8_D2BHKtb4m0F4xCf7tIrwyp6c,13579
|
|
12
|
-
epstein_files/util/constant/common_words.py,sha256=C1JERPnOGHV2UMC71aEue1i9QTQog-RfT3IzdcYQOYQ,3702
|
|
13
|
-
epstein_files/util/constant/html.py,sha256=MFooFV8KfFBCm9hL1u6A3hi_u37i7lL6UKAYoKQj3PI,1505
|
|
14
|
-
epstein_files/util/constant/names.py,sha256=pkS1BWBxpxveHRrL1Z4muaXcK2ICIwM7RFGCsCf7Qls,11267
|
|
15
|
-
epstein_files/util/constant/output_files.py,sha256=gUZJ4mNoeJy3qTYWr_jhSmQI-_uV_jdLR0YCiaQd_Qg,1982
|
|
16
|
-
epstein_files/util/constant/strings.py,sha256=z_vwWxWU-_85rDTbVyo8pbi-5keBYmYnbh758n2LebU,1989
|
|
17
|
-
epstein_files/util/constant/urls.py,sha256=UvhQP6sWqZaNnkqXFIn44oVmYLWFA-A0FGpo40Ds-MM,5651
|
|
18
|
-
epstein_files/util/constants.py,sha256=VdOOp1azsaFgeEEO9UMS8hx5NXNP4pozfyH2IA6kW9E,121794
|
|
19
|
-
epstein_files/util/data.py,sha256=0kCGgs3Cscbn1Q9G82bSB51CKnQpz1iUzMJoBBM34IE,2964
|
|
20
|
-
epstein_files/util/doc_cfg.py,sha256=gIBAoeheQYqqrCtVRU2ytYu799LyCiPxPyHDgWUad3c,9471
|
|
21
|
-
epstein_files/util/env.py,sha256=bSf2PKkOukN7LA8YdrWQS7XTRY0pLTNXo8OiQ1EKJDE,6722
|
|
22
|
-
epstein_files/util/file_helper.py,sha256=MpG1hI7DGs05fV9KSVb_ltc98DC8tv1E_TTo5X_E7Js,3010
|
|
23
|
-
epstein_files/util/highlighted_group.py,sha256=8uuQAHIBk7c5VYzg2xqfHsR-TGKfX7f1qdwB74UfTfI,56719
|
|
24
|
-
epstein_files/util/logging.py,sha256=pSLHGrUnPQGFMGYNIOTbZbCyy5dDOCbNrbNz22wIcZI,2099
|
|
25
|
-
epstein_files/util/output.py,sha256=pqTu6MApTiRKc_Q0mZzKD73UAXnAbbA5zWzGijAH4OU,12681
|
|
26
|
-
epstein_files/util/rich.py,sha256=z9wbvNQbOJqNWm7IDBNJFgRzMP2X5CTmOgwrOkuSEJk,13639
|
|
27
|
-
epstein_files/util/search_result.py,sha256=1fxe0KPBQXBk4dLfu6m0QXIzYfZCzvaSkWqvghJGzxY,567
|
|
28
|
-
epstein_files/util/timer.py,sha256=GZHefXiPA-prK-1szC1cebl44Y-i4Wd3K8zedFpcggg,1373
|
|
29
|
-
epstein_files/util/word_count.py,sha256=rs-bsSMnGG1BnYUmxYuBLZ8X0-3-jJdaB03v1jOIq4g,9202
|
|
30
|
-
epstein_files-1.2.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
31
|
-
epstein_files-1.2.1.dist-info/METADATA,sha256=_NTxSxgHoHb1uPeRlLqgxBl_9wJnyMsY2_3icXgZTDw,6222
|
|
32
|
-
epstein_files-1.2.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
33
|
-
epstein_files-1.2.1.dist-info/entry_points.txt,sha256=5qYgwAXpxegeAicD_rzda_trDRnUC51F5UVDpcZ7j6Q,240
|
|
34
|
-
epstein_files-1.2.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|