Perlence / PyGuitarPro

Read, write and manipulate GP3, GP4 and GP5 files.

Home Page:https://pyguitarpro.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gp and gpx

giona69 opened this issue · comments

no plans to read gp and gpx? ora any suggestions on libraries out there to read them? any language

thanks

Hello @giona69! I don't plan to support gpx and gp in PyGuitarPro.

Guitar Pro 7's gp file is a plain ZIP archive. You can unpack it and find the score.gpif file which is an XML file. You can parse score.gpif with ElementTree.

gpx file is a custom archive that also contains the score.gpif XML file. You can try to unpack the gpx file by using this module.

great suggestions thank you very much!