boardgamegeek
boardgamegeek copied to clipboard
A Python interface to boardgamegeek.com. Pulls information from BGG and creates Python objects for the data.
I get the following error message: ``` Traceback (most recent call last): File "", line 1, in File "/home/irazall/.local/share/JetBrains/Toolbox/apps/PyCharm-P/ch-0/211.7142.13/plugins/python/helpers/pydev/_pydev_bundle/pydev_import_hook.py", line 21, in do_import module = self._system_import(name, *args, **kwargs) File "/home/irazall/promotion/it/python-projects/envs/dynamic_pricing/lib/python3.8/site-packages/boardgamegeek/__init__.py",...
According to PyPi, the last release for this package was in 2015 (ver 0.13.2) but there have been changes and patches since then. Is there any chance for an update...
``` import boardgamegeek bgg = BGGClient() ``` --------------------------------------------------------------------------- NameError Traceback (most recent call last) ~\AppData\Local\Temp\ipykernel_908\3723979965.py in 1 import boardgamegeek 2 ----> 3 bgg = BGGClient() NameError: name 'BGGClient' is not...
Adapted cod to new request_cache repo
Mostly, these commits are about supporting private information from the BGG API (issue #61). There are a few with other updates: a new XML utility function (`xml_attr`) in the spirit...
Hi, I was wondering if it is possible to access the private information of the collections. I understand that we need to be login but I am not sure how...
The old BGG API had a call to be able to collect the field "conditiontext" (aka Trade Condition). It still exists as I can see it when I export my...
In testing the call for a game to obtain marketplace data it seems that marketplace data is not returned (i.e. previous sales of the game that includes date, amount sold...
Previously, only the first publisher or language for a game version was processed. So, multi-language game versions like in Cottage Garden and multi-publisher game versions like in Clank did not...
The way the XML is currently parsed will make it impossible for the games' BGG ratings to be populated since it is looking in the STATS tag while they reside...