Giter Site home page Giter Site logo

Comments (4)

niklasf avatar niklasf commented on June 10, 2024 1

Thanks! Looks like that file is UTF-8 with BOM, so open(..., encoding="utf-8-sig") would be appropriate.

from python-chess.

niklasf avatar niklasf commented on June 10, 2024

Hi. I can't reproduce the issue when copying the PGN. Which python-chess version are you using? Are there maybe some invisible characters in the original source, or is there an issue with the file encoding? Maybe uploading a Zip with the original could help reproduce this.

from python-chess.

johndoknjas avatar johndoknjas commented on June 10, 2024

Hi @niklasf, I produced the pgn by saving a few games in chessbase, and then doing "output to textfile". So maybe that could be why there's an issue? I just tested downloading a pgn from lichess where the first game has a move in it, and there were no problems.

On another note, today I had issues running the following code on a few chessbase pgns. E.g.:

import chess.pgn
def main() -> None:
    pgn = open("test.pgn", "r", errors="replace")
    counter = 0
    while True:
        counter += 1
        headers = chess.pgn.read_headers(pgn)
        if headers is None:
            break
        print(f"{counter}: {str(headers)}")
    pgn.close()

if __name__ == "__main__":
    main()

This produced the output:

1: Headers()
2: Headers()
3: Headers(Event='?', Site='?', Date='2024.04.25', Round='?', White='White vs 1...c5', Black='?', Result='*', ECO='A00', PlyCount='0', SourceVersionDate='2024.04.25')

Where the "3" game was the second game in my database. The first game's headers were not retrieved, and for some reason two blank headers were given instead. I've attached this pgn here - it should also reproduce the issue I mentioned in my previous comment, if read_headers is changed to read_game in the above code.
test.zip

But again, when doing this with a lichess pgn, no issues. So it seems to be a problem with the way chessbase makes its pgns.

from python-chess.

johndoknjas avatar johndoknjas commented on June 10, 2024

@niklasf Ah ok, it works fine for me after doing that - thx!

from python-chess.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.