Update project name to avoid the impression that this project is somehow authorized, endorsed, or otherwise affiliated with LinkedIn Corporation, which it is not.

This commit is contained in:
Christopher Finke
2026-04-15 15:29:16 +00:00
parent f4b4d00a1c
commit 3e08ebe0f0
4 changed files with 17 additions and 17 deletions
+7 -7
View File
@@ -3,7 +3,7 @@
Search Epstein files for mentions of LinkedIn connections.
Usage:
python EpsteIn.py --connections <linkedin_csv> [--output <report.html>]
python EpsteOut.py --connections <linkedin_csv> [--output <report.html>]
Prerequisites:
pip install requests
@@ -170,16 +170,16 @@ def generate_html_report(results, output_path):
if os.path.exists(logo_path):
with open(logo_path, 'rb') as f:
logo_base64 = base64.b64encode(f.read()).decode('utf-8')
logo_html = f'<img src="data:image/png;base64,{logo_base64}" alt="EpsteIn" class="logo">'
logo_html = f'<img src="data:image/png;base64,{logo_base64}" alt="EpsteOut" class="logo">'
else:
logo_html = '<h1 class="logo" style="text-align: center;">EpsteIn</h1>'
logo_html = '<h1 class="logo" style="text-align: center;">EpsteOut</h1>'
html_content = f"""<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EpsteIn: Which LinkedIn Connections Appear in the Epstein Files?</title>
<title>EpsteOut: Which LinkedIn Connections Appear in the Epstein Files?</title>
<style>
* {{
box-sizing: border-box;
@@ -364,8 +364,8 @@ def main():
)
parser.add_argument(
'--output', '-o',
default='EpsteIn.html',
help='Output HTML file for the report (default: EpsteIn.html)'
default='EpsteOut.html',
help='Output HTML file for the report (default: EpsteOut.html)'
)
args = parser.parse_args()
@@ -386,7 +386,7 @@ To export your LinkedIn connections:
9. Download and extract the ZIP file
10. Use the Connections.csv file with this script:
python EpsteIn.py --connections /path/to/Connections.csv
python EpsteOut.py --connections /path/to/Connections.csv
""")
sys.exit(1)
+10 -10
View File
@@ -1,6 +1,6 @@
![EpsteIn](assets/logo.png)
![EpsteOut](assets/logo.png)
Search the publicly released Epstein court documents for mentions of your LinkedIn connections.
Search the publicly released Epstein court documents for mentions of your LinkedIn connections. This project is not authorized, endorsed, or otherwise affiliated with LinkedIn Corporation.
## Requirements
@@ -10,8 +10,8 @@ Search the publicly released Epstein court documents for mentions of your Linked
## Setup
```bash
git clone git@github.com:cfinke/EpsteIn.git
cd EpsteIn/
git clone git@github.com:cfinke/EpsteOut.git
cd EpsteOut/
python3 -m venv project_venv
source project_venv/bin/activate
pip install -r requirements.txt
@@ -33,33 +33,33 @@ pip install -r requirements.txt
## Usage
```bash
python EpsteIn.py --connections /path/to/Connections.csv
python EpsteOut.py --connections /path/to/Connections.csv
```
The API that EpsteIn connects to has recently required an API key to access it. Keys are available for free at https://epstein.dugganusa.com/register.html
The API that EpsteOut connects to has recently required an API key to access it. Keys are available for free at https://epstein.dugganusa.com/register.html
### Options
| Flag | Description |
|------|-------------|
| `--connections`, `-c` | Path to LinkedIn Connections.csv export (required) |
| `--output`, `-o` | Output HTML file path (default: `EpsteIn.html`) |
| `--output`, `-o` | Output HTML file path (default: `EpsteOut.html`) |
### Examples
Basic usage:
```bash
python EpsteIn.py --connections ~/Downloads/Connections.csv
python EpsteOut.py --connections ~/Downloads/Connections.csv
```
Custom output file:
```bash
python EpsteIn.py --connections ~/Downloads/Connections.csv --output my_report.html
python EpsteOut.py --connections ~/Downloads/Connections.csv --output my_report.html
```
## Reading the Output
The script generates an HTML report (`EpsteIn.html` by default) that you can open in any web browser.
The script generates an HTML report (`EpsteOut.html` by default) that you can open in any web browser.
![A screenshot of the HTML report.](assets/screenshot.png)
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 162 KiB

After

Width:  |  Height:  |  Size: 117 KiB