epstein-files 1.0.0__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 +194 -0
- epstein_files/documents/communication.py +53 -0
- epstein_files/documents/document.py +357 -0
- epstein_files/documents/email.py +655 -0
- epstein_files/documents/emails/email_header.py +167 -0
- epstein_files/documents/imessage/text_message.py +93 -0
- epstein_files/documents/json_file.py +23 -0
- epstein_files/documents/messenger_log.py +73 -0
- epstein_files/documents/other_file.py +117 -0
- epstein_files/epstein_files.py +437 -0
- epstein_files/util/constant/common_words.py +94 -0
- epstein_files/util/constant/html.py +57 -0
- epstein_files/util/constant/names.py +261 -0
- epstein_files/util/constant/strings.py +47 -0
- epstein_files/util/constant/urls.py +103 -0
- epstein_files/util/constants.py +1552 -0
- epstein_files/util/data.py +131 -0
- epstein_files/util/env.py +80 -0
- epstein_files/util/file_cfg.py +172 -0
- epstein_files/util/file_helper.py +81 -0
- epstein_files/util/highlighted_group.py +620 -0
- epstein_files/util/rich.py +324 -0
- epstein_files/util/search_result.py +15 -0
- epstein_files/util/word_count.py +191 -0
- epstein_files-1.0.0.dist-info/LICENSE +674 -0
- epstein_files-1.0.0.dist-info/METADATA +60 -0
- epstein_files-1.0.0.dist-info/RECORD +28 -0
- epstein_files-1.0.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: epstein-files
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Tools for working with the Jeffrey Epstein documents released in November 2025.
|
|
5
|
+
Author: Michel de Cryptadamus
|
|
6
|
+
Requires-Python: >=3.11,<4.0
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
9
|
+
Requires-Dist: datefinder (>=0.7.3,<0.8.0)
|
|
10
|
+
Requires-Dist: inflection (>=0.5.1,<0.6.0)
|
|
11
|
+
Requires-Dist: python-dateutil (>=2.9.0.post0,<3.0.0)
|
|
12
|
+
Requires-Dist: python-dotenv (>=1.2.1,<2.0.0)
|
|
13
|
+
Requires-Dist: requests (>=2.32.5,<3.0.0)
|
|
14
|
+
Requires-Dist: rich (>=14.2.0,<15.0.0)
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# I Made Epstein's Text Messages Great Again
|
|
18
|
+
|
|
19
|
+
* [I Made Epstein's Text Messages Great Again (And You Should Read Them)](https://cryptadamus.substack.com/p/i-made-epsteins-text-messages-great) post on [Substack](https://cryptadamus.substack.com/p/i-made-epsteins-text-messages-great)
|
|
20
|
+
* The Epstein text messages (and some of the emails along with summary counts of sent emails to/from Epstein) generated by this code can be viewed [here](https://michelcrypt4d4mus.github.io/epstein_text_messages/).
|
|
21
|
+
* All of His Emails can be read at another page also generated by this code [here](https://michelcrypt4d4mus.github.io/epstein_emails_house_oversight/).
|
|
22
|
+
* Word counts for the emails and text messages are [here](https://michelcrypt4d4mus.github.io/epstein_text_messages/epstein_emails_word_count.html).
|
|
23
|
+
* Configuration variables assigning specific `HOUSE_OVERSIGHT_XXXXXX.txt` file IDs (the `111111` part) as being emails to or from particular people based on various research and contributions can be found in the [constants.py](./epstein_files/util/constants.py) file in this repo.
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Usage
|
|
27
|
+
1. Requires you have a local copy of OCR text from the House Oversight document dump in a directory `/path/to/epstein/ocr_txt_files`. You can download them from [the Congressional Google Drive folder](https://drive.google.com/drive/folders/1ldncvdqIf6miiskDp_EDuGSDAaI_fJx8).
|
|
28
|
+
1. Dependencies are in [pyproject.toml](./pyproject.toml). Use `poetry install` for easiest time installing. `pip install .` may or may not work.
|
|
29
|
+
|
|
30
|
+
You need to set the `DOCS_DIR` environment variable with the path to the folder of files you just downloaded when running. You can either create a `.env` file modeled on [`.env.example`](./.env.example) (which will set it permanently) or you can run with:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
DOCS_DIR=/path/to/epstein/ocr_txt_files ./generate.py
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Run `./generate.py --help` for command line option assistance. Look in the [scripts](./scripts/) folder for various scripts.
|
|
37
|
+
The first time you run anything it will take a few minutes to fix all the data, attribute the redacted emails, etc. Once you've run things once you can run the `./generate.py --pickled` to load the cached fixed up data and things will be quick.
|
|
38
|
+
|
|
39
|
+
#### As A Library
|
|
40
|
+
```python
|
|
41
|
+
from epstein_files.epstein_files import EpsteinFiles
|
|
42
|
+
epstein_files = EpsteinFiles.get_files()
|
|
43
|
+
|
|
44
|
+
# All files
|
|
45
|
+
for document in epstein_files.all_documents():
|
|
46
|
+
do_stuff()
|
|
47
|
+
|
|
48
|
+
# Emails
|
|
49
|
+
for email in epstein_files.emails:
|
|
50
|
+
do_stuff()
|
|
51
|
+
|
|
52
|
+
# iMessage Logs
|
|
53
|
+
for imessage_log in epstein_files.imessage_logs:
|
|
54
|
+
do_stuff()
|
|
55
|
+
|
|
56
|
+
# Other Files
|
|
57
|
+
for document in epstein_files.other_files:
|
|
58
|
+
do_stuff()
|
|
59
|
+
```
|
|
60
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
epstein_files/__init__.py,sha256=JlGEliI8H5TqdGuCTtGIwLiM7GutbyND-IURG5Z-gAA,7442
|
|
2
|
+
epstein_files/documents/communication.py,sha256=XybnJDqyK00RTeEkbLWgrVDkZS7pmC8EoftX1_G4OIM,2066
|
|
3
|
+
epstein_files/documents/document.py,sha256=6av_KLTm70KIABl9Fl7DL9jKkvqdN18OLmECj2PAkEs,15223
|
|
4
|
+
epstein_files/documents/email.py,sha256=rzgyVMBlKo9ytRdE6Eif_8zF4fecaMduIgPQkvRmmk0,34283
|
|
5
|
+
epstein_files/documents/emails/email_header.py,sha256=JqcSqa-amdombgszE_cjXBrvZKE0HxU2mNAoD44Ekh4,7479
|
|
6
|
+
epstein_files/documents/imessage/text_message.py,sha256=zU46FHeHKG6vbIZ-qLDdZC-1f3VmXW73fKo-BKOCgq8,3199
|
|
7
|
+
epstein_files/documents/json_file.py,sha256=sL99E_34X9BIwQ27vE0Afy446oiyCmPLYdsJ6-OGMHU,611
|
|
8
|
+
epstein_files/documents/messenger_log.py,sha256=HbtqthtkzXhkY7DxwxFOBy6xx6gPmmXIxZ4bsloLHEg,2995
|
|
9
|
+
epstein_files/documents/other_file.py,sha256=_Z8EVLLy1u8RuEr5iPTKJdYZjQHFHp0o-mBErBYsRXg,4699
|
|
10
|
+
epstein_files/epstein_files.py,sha256=Fb-SPwRlHZPB7iL48dL3Da4nPyzF9_Rk5nNpVnfku2U,20131
|
|
11
|
+
epstein_files/util/constant/common_words.py,sha256=aR0UjoWmxyR49XS-DtHECQ1CiA_bK8hNP6CQ1TS9yZA,3696
|
|
12
|
+
epstein_files/util/constant/html.py,sha256=9U098TGzlghGg4WfxLYHyub5JGR17Dv7VP5i2MSu8Kk,1415
|
|
13
|
+
epstein_files/util/constant/names.py,sha256=_iNHJsr4sdUXG1cozllRy8yV6SYXgsr6oTPHTCbrpj0,9967
|
|
14
|
+
epstein_files/util/constant/strings.py,sha256=B5RpaGCc1EqiDKF-3BabNy4dJU6n4kXytx96aanHIDA,1115
|
|
15
|
+
epstein_files/util/constant/urls.py,sha256=pks5frfWXmFwEkfB33Uy7IR1mn0DaAI_8kDjA_g03yg,5089
|
|
16
|
+
epstein_files/util/constants.py,sha256=jErrj2r_K8pbFNih7WxlcP0sPO7ZyzrLxH3MlSw5xR4,106137
|
|
17
|
+
epstein_files/util/data.py,sha256=7yz3osIlpjV9nbPEvRBmExokBsgm20kitSfqNpaYWj4,3746
|
|
18
|
+
epstein_files/util/env.py,sha256=T-sd1lPfw-L6WXvpIv-cqGTqBfZvacZvniW1OKOdkrU,4624
|
|
19
|
+
epstein_files/util/file_cfg.py,sha256=E7VVxVZ_cSN18HgI6q8e6UwTApMWuPC9qTqb3_tXCqs,7183
|
|
20
|
+
epstein_files/util/file_helper.py,sha256=EHVRFxcWmc0RD1VUeLFCcmM-82c5FISIUBIwg4TodsY,2727
|
|
21
|
+
epstein_files/util/highlighted_group.py,sha256=0MpzBYVaGfyUZQwFP7EVrLHDYU57qnnmNDC56gVxq2Q,33091
|
|
22
|
+
epstein_files/util/rich.py,sha256=Z28-etKpZdc6aPxdmAxNe9ZvMWK28iubYASt50VxtJ4,13194
|
|
23
|
+
epstein_files/util/search_result.py,sha256=5nkR-YzUiR52FmGIad_Uw0XaU2E_FfHZBHgc8dm3sAs,429
|
|
24
|
+
epstein_files/util/word_count.py,sha256=L1T6zjShaPZo1ilpM0dSAT3X-EgaZ4YEigHNLxjKit4,6719
|
|
25
|
+
epstein_files-1.0.0.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
26
|
+
epstein_files-1.0.0.dist-info/METADATA,sha256=dGc412CXHc2EHOd0C7HuEa2qFQFh42dNbDw5CiH0Ny4,3239
|
|
27
|
+
epstein_files-1.0.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
28
|
+
epstein_files-1.0.0.dist-info/RECORD,,
|