This script will compare the collections of two BoardGameGeek users, and return all of the owned games which appear in both collections. Optionally, pass in one of the following strings to return games matching that status:
- all
- for_trade
- prev_owned
- want
- wishlist
To use this script you'll first need to install the boardgamegeek Python lib on your local machine
Use pip install boardgamegeek
. If that does not work try easy_install boardgamegeek
Put this script whereever you like, then call it like so:
python bgg_games.py commadelimited elilong
To include only games in both player's wishlists
python bgg_games.py commadelimited elilong wishlist
To include only games in both player's previously owned lists
python bgg_games.py commadelimited elilong prev_owned
This script uses the boardgamegeek Python library: