The app has a lot of features. Follow these instructions to make the most of them.
Use the New Search function to search for specific names in the DOJ's Epstein-related documents.
Note: Searches can take several hours depending on the number of names and pages.
The SQL Query Tool allows you to run custom SQL queries on the search results database.
SELECT sr.pdf_link, sr.summary, u.username
FROM search_results sr
JOIN search_terms st ON sr.search_term_id = st.id
JOIN auth_user u on st.user_id = u.id
WHERE u.username = 'john';). If you're not familiar with SQL queries you can ask John or Dan to write one for you. (The example given might actually be the one you want, however. Change the username to your username and it will return all every search result for every search term you entered.)
Warning: DELETE or UPDATE statements are banned from the SQL Query Tool, as are complex DOS-style queries designed to clog up the system. It's only for seeing data, not changing data.
As an admin user, you can manage search terms through the Django Admin interface.
Caution: Deleting search terms will permanently remove both the search term and its associated results.
Personalize the look and feel of the website through the Settings page.
Themes are purely cosmetic and do not affect how the search or query tools work.
This tool was written by John Davidson. Contact him for support or suggested changes.