https://github.com/dfirebaugh/auction-search
https://github.com/dfirebaugh/auction-search
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dfirebaugh/auction-search
- Owner: dfirebaugh
- License: mit
- Created: 2021-12-24T00:01:51.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-11T02:26:26.000Z (over 4 years ago)
- Last Synced: 2024-12-27T19:30:03.946Z (over 1 year ago)
- Language: Python
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Auction Search
Search all those pesky auction sites for the items you are looking for.
This app is written in a way that you could add additional strategies for more sites without having to change much of the existing code.
## Config
You must update the `search.yml` file with your search parameters and slack hook (will potentially add additional communication strategies at a later time).
## Dependencies
```
pip install pyyaml
pip install requests
pip install beautifulsoup4
pip install reportlab
```
> note: on linux I had to run `sudo apt-get install python3-tk`
## Build
To build to an executable
```sh
python3.9.exe -m PyInstaller --onefile main.py
```