When I started this project, I could not find any other application that would help me aggregate all of the prices available from local game stores. Also, it was a learning opportunity for me to learn about Full Stack development.
I have recently found Gishath Fetch which started roughly during the same time as I started this project. It supports a lot more features and stores than I do. Please do check it out, the repository is here.
Therefore, until further notice, this project will be on a hiatus.
Type the MTG card you want to search, select the stores that you want to buy from, and click search. It will give you a list of all of the available cards.
Type the MTG card you want to search, and it will search ALL of the stores. It will give you the price of the cheapest card from each store.
- You need to type the card's name exactly as it is but it is NOT case-sensitive. This means that for
Chandra's Ignition, it must include the apostrophe soChandras Ignitionwill NOT work.chandra's ignitionand its variants work. - For double-sided/room cards, you must include the
//and the spaces if you're searching for both rooms at the same time. For example,unholy annex // ritual chamberworks butunholy annex//ritual chamberdoes NOT work. Searching for justunholy annexandritual chamberwill work fine.
Tech Stack: BS4, FastAPI, React, Material UI, Docker (optional)
This app was made to be run on your localhost, so change all of the necessary endpoints if running elsewhere.
- Docker must be installed
- Clone/Download the repository
- In the
.envfile, replaceYOUR_IPwith the IP address of the host machine. - At the root directory, run
docker compose build --no-cache && docker compose up -d
- Clone/Download the repository
- Install the dependencies; Backend:
cd backend && pip install -r requirements_app.txt. Frontend:cd frontend && npm install - Change
localhostfound infrontend/src/App.jsxto the host machine's IP, if applicable. - Start the backend:
uvicorn app:app --reload - Start the frontend:
npm run dev
Tech Stack: BS4
- Python must be installed and added to PATH.
- Clone/Download the repository OR just
backend/lgs.py,backend/script.py, andbackend/requirements_script.txt. - Install the dependencies by running
pip install -r requirements_script.txt - Run the script
This is my first actual full-stack web application. I saw that there was no way for me to get the best deals easily, so I created this to help me and it works like a charm.
- Make the cards in the frontend clickable so that it redirects to the query page (not the specific card).
- Add the query link to the script output if it doesn't look too ugly.
- Add autocomplete when typing a card
- Add Card Validation 1 (Valid card name)
- Add Card Validation 2 (Valid set)
- Change HTTP response to provide better error codes to frontend
- Add a button to export a csv based on the cards chosen. It should contain (card name, store, price, link to query).
- Find a better way to add the host machine's IP for the web app.
- Improve the design???
- Capture history of cards searched and cache results???
