ahankinson / pybagit

Python library for manipulating bagit files.
http://ahankinson.github.io/pybagit
Other
20 stars 8 forks source link

Python 3 support #13

Open scls19fr opened 8 years ago

scls19fr commented 8 years ago

Hello,

I would like to know current status of Python 3 support.

Thanks

RKrahl commented 8 years ago

Out of the box, Python 3 is not supported. It already fails with the import as __init__.py does a relative import of exceptions, a feature that has been removed with Python 3.

Shouldn't be too hard to fix. Most important issue would be to review all strings and check unicode vs. encoded string issues.