https://github.com/dissorial/resolve-manual-pdf-search
https://github.com/dissorial/resolve-manual-pdf-search
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dissorial/resolve-manual-pdf-search
- Owner: dissorial
- Created: 2024-12-07T04:31:51.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-12-07T05:20:42.000Z (7 months ago)
- Last Synced: 2025-02-05T11:16:25.073Z (5 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instructions
1. Install the requirements: `pip install -r requirements.txt`
2. Put your PDF in the same directory as this script. You must name the file `resolve-manual.pdf`, otherwise it will not work. If you want to use a different file name, then change it here in `search.py`:```python
if __name__ == "__main__":
root = tk.Tk()
app = PDFSearchGUI(root, "resolve-manual.pdf")
root.mainloop()
```3. Run the script: `python search.py`