Tools for working with the Jeffrey Epstein documents released in November 2025.
Project description
I Made Epstein's Text Messages Great Again
- I Made Epstein's Text Messages Great Again (And You Should Read Them) post on Substack
- The Epstein text messages (and some of the emails along with summary information) generated by this code can be viewed here.
- All of His Emails along with descriptions of the 496 files that were neither emails nor text messages can be read at another page also generated by this code.
- Word counts for the communications are here.
- Metadata containing what I have figured out about who sent or received the communications in a given file (and a brief explanation for how I figured it out for each file) is deployed here
- Configuration variables assigning specific
HOUSE_OVERSIGHT_XXXXXX.txtfile IDs (the111111part) as being emails to or from particular people based on various research and contributions can be found in constants.py. Everything inconstants.pyappears in the JSON metadata linked above.
Usage
- 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. - Dependencies are in pyproject.toml. Use
poetry installfor easiest time installing.pip install .may or may not work.
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 (which will set it permanently) or you can run with:
# Generate color highlighted texts/emails/other files
DOCS_DIR=/path/to/epstein/ocr_txt_files epstein_generate
# Search
DOCS_DIR=/path/to/epstein/ocr_txt_files epstein_search Bannon
# Show a color highlighted file
DOCS_DIR=/path/to/epstein/ocr_txt_files epstein_show 030999
# This also works
DOCS_DIR=/path/to/epstein/ocr_txt_files epstein_show HOUSE_OVERSIGHT_030999
Run epstein_generate --help for command line option assistance.
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 epstein_generate --pickled to load the cached fixed up data and things will be quick.
As A Library
from epstein_files.epstein_files import EpsteinFiles
epstein_files = EpsteinFiles.get_files()
# All files
for document in epstein_files.all_documents():
do_stuff()
# Emails
for email in epstein_files.emails:
do_stuff()
# iMessage Logs
for imessage_log in epstein_files.imessage_logs:
do_stuff()
# Other Files
for document in epstein_files.other_files:
do_stuff()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file epstein_files-1.0.4.tar.gz.
File metadata
- Download URL: epstein_files-1.0.4.tar.gz
- Upload date:
- Size: 120.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.11 Darwin/22.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2766cae4eb9f19a1e929466a6bfa2d517aae59390348e29008d886e88cd8b043
|
|
| MD5 |
74de3ccb060cbfc61553889432bd4587
|
|
| BLAKE2b-256 |
d1765e40a5e8bd3e75adbe89d17c2fbac39f98e8f195b0804b70a43c00065c59
|
File details
Details for the file epstein_files-1.0.4-py3-none-any.whl.
File metadata
- Download URL: epstein_files-1.0.4-py3-none-any.whl
- Upload date:
- Size: 132.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.11 Darwin/22.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0785c97ef58adb2f58660719f54f0419fa017366ef63f6d6fab5603d43ec30ce
|
|
| MD5 |
92c207e59adc8aa7a96947b27630bcc6
|
|
| BLAKE2b-256 |
0aff0e710154ba445bfc52289417e040a28f996c90640cc9825956b1db376211
|