tkrajina / gpxpy

gpx-py is a python GPX parser. GPX (GPS eXchange Format) is an XML based file format for GPS tracks.
Apache License 2.0
1.01k stars 223 forks source link

Python3 support #3

Closed abingham closed 11 years ago

abingham commented 11 years ago

It would be great if this supported Python3. I did a bit of poking around, and it looks like the main complexity will be in bytes/str handling.

tkrajina commented 11 years ago

Hi @abingham.

Python3 is not on the top of my priorities (I'm using gpxpy mostly for my GoogleAppEngine apps with 2.x python). But I did try to make it run on python3. Check out the 'python3' branch here -- https://github.com/tkrajina/gpxpy/tree/python3 . The tests all run OK, but other than that -- I hope somebody else can confirm me that everything is OK before I merge it into master.

tk

abingham commented 11 years ago

OK, thanks. I'll give it a try if I end up needing it. For now I'm making beautifulsoup work.