Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 1.03 KB

README.md

File metadata and controls

46 lines (35 loc) · 1.03 KB

poe2-item-search

Price check items ingame against PoE2 trading website Press Ctrl-D while your cursor is on an item to open up the trade website with filters pre-populated.

Installation

This project requires Python to be installed locally.

(Optional) Set up a virtual Python environment for this project

Navigate to the directory containing the project:

# for example on Windows
cd %USERPROFILE%\Downloads\poe2-item-search
# for example on Linux/etc
cd ~/Downloads/poe2-item-search

Create a Python virtual environment:

python -m venv .venv

Then tell your shell to use the virtual environment (must be repeated any time you run):

# Windows
.venv\Scripts\activate
# Linux/etc
source .venv/bin/activate

Install requirements

Finally, install packages:

pip install -r requirements.txt

Running

If choosing to use venv, activate it as above; .venv\Scripts\activate, then:

python project.py

Use Ctrl+Break to stop the app.