-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
API has changed: tactics doesn't work #34
Comments
I am also getting this error. |
Anyone know a fix to this issue? |
Also getting this error. (After running
TL;DR; We're calling a deprecated method in berserk. Should be using Puzzles.get_puzzle_activity not the deprecated get_puzzle_activity This is wrong (deprecated method in latest version of v0.12.8): def get_puzzle_activity(self, max=None):
"""Stream puzzle activity history starting with the most recent.
:param int max: maximum number of entries to stream
:return: puzzle activity history
:rtype: iter
"""
- path = 'api/user//puzzle-activity'
+ path = 'api/user/puzzle/activity'
params = {'max': max}
return self._r.get(path, params=params, fmt=NDJSON, stream=True,
converter=models.PuzzleActivity.convert) If you compare Side note: poetry update berserk
chessli --user DrDrunkenstein tactics ankify --export-only |
Hello everyone, sorry for the very late response! I am developing a new simplified version of chessli with a graphical user interface. |
Lichess API and Berserk have updated resulting in 404 response querying puzzles with the old version. Updating Berserk fixes the url path but results in more errors by Omegaconf. After Berserk update:
The text was updated successfully, but these errors were encountered: