We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Doing read() on a big file containing many PGN games (think hundreds of megabytes and more) takes a very long time and eats up lots of memory.
Doing pgn.loads() on a big string is even worse because there's the risk of completely running out of memory.
The text was updated successfully, but these errors were encountered:
Merge pull request #4 from pitchforks/issue-3
12a8188
fix for issue #3: implemented low-memory processing of huge PGN files using iterators
The example in the README for pgn.GameIterator is still not functional - running it with any pgn results in an error:
AttributeError: 'module' object has no attribute 'GameIterator'
Sorry, something went wrong.
You forgot to update lib on pypi
No branches or pull requests
Doing read() on a big file containing many PGN games (think hundreds of megabytes and more) takes a very long time and eats up lots of memory.
Doing pgn.loads() on a big string is even worse because there's the risk of completely running out of memory.
The text was updated successfully, but these errors were encountered: