Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dissorial/resolve-manual-pdf-search
https://github.com/dissorial/resolve-manual-pdf-search
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dissorial/resolve-manual-pdf-search
- Owner: dissorial
- Created: 2024-12-07T04:31:51.000Z (15 days ago)
- Default Branch: main
- Last Pushed: 2024-12-07T05:20:42.000Z (15 days ago)
- Last Synced: 2024-12-07T05:21:32.349Z (15 days ago)
- Language: Python
- Size: 0 Bytes
- Stars: 0
- 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`